Race Entry Get Event Pin API

The Get Event Pin API from Race Entry — 1 operation(s) for get event pin.

OpenAPI Specification

race-entry-get-event-pin-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Race Entry Software Event Get Event Pin API
  description: The Race Entry Software API was designed for Director software and timing integrations. It provides programmatic access to events, registrations, participants, teams, results, check-in PINs, club memberships, and event creation flows. Authentication is performed via login to obtain a temporary key and secret that expire after 48 hours.
  version: '1.0'
  contact:
    name: Kin Lane
    email: kin@apievangelist.com
servers:
- url: https://www.raceentry.com/softwareapi
  description: Production
- url: https://demo.raceentry.com/softwareapi
  description: Test
security:
- TempCredentials: []
tags:
- name: Get Event Pin
paths:
  /get_event_pin:
    get:
      summary: Get event PIN
      description: Retrieve the check-in PIN for an event.
      operationId: getEventPin
      responses:
        '200':
          description: Event PIN value
      tags:
      - Get Event Pin
components:
  securitySchemes:
    TempCredentials:
      type: apiKey
      in: query
      name: tmp_key
      description: Temporary key returned from /login. Must be supplied alongside tmp_secret query parameter. Credentials expire after 48 hours.