> ## Documentation Index
> Fetch the complete documentation index at: https://help.lobyco.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get reverse check-in code details by id

> Get a check-in code by id



## OpenAPI

````yaml openapi/payment-v1.json GET /v1/checkin/code/{checkInCodeId}
openapi: 3.0.4
info:
  title: PaymentCoordinator.Api
  version: v1
servers:
  - url: https://{host}/payment
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /v1/checkin/code/{checkInCodeId}:
    get:
      tags:
        - Service2Service
      summary: Get reverse check-in code details by id
      description: Get a check-in code by id
      parameters:
        - name: checkInCodeId
          in: path
          description: The check-in code identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PaymentCoordinator.Api.CQRS.CheckIn.Dto.CheckInCodeResponse
        '404':
          description: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/LoopFoundation.Commons.Contracts.WebServiceError
components:
  schemas:
    PaymentCoordinator.Api.CQRS.CheckIn.Dto.CheckInCodeResponse:
      type: object
      properties:
        checkInCodeId:
          type: string
          description: The check in code identifier
          nullable: true
        memberId:
          type: string
          description: The member identifier
          nullable: true
        userId:
          type: string
          description: The user identifier
          nullable: true
        code:
          type: string
          description: The generated code to be displayed on the mobile application
          nullable: true
        type:
          $ref: >-
            #/components/schemas/PaymentCoordinator.Domain.Entities.CheckInCodeType
        paymentLocationId:
          type: string
          description: The payment location identifier
          nullable: true
        isUsed:
          type: boolean
          description: >-
            Indicates whether the generated code has been used already for POS
            registration
        usedAt:
          type: string
          description: Indicates when the generated code has been used
          format: date-time
          nullable: true
        createdAt:
          type: string
          description: Indicates when the generated code has been created
          format: date-time
      additionalProperties: false
    LoopFoundation.Commons.Contracts.WebServiceError:
      required:
        - message
        - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
        message:
          minLength: 1
          type: string
        details:
          nullable: true
      additionalProperties: false
    PaymentCoordinator.Domain.Entities.CheckInCodeType:
      enum:
        - QrCode
        - BarCode
      type: string
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        JWT Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````