> ## 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 check-ins

> Get check-ins by paymentLocation and checked-in time. Requested by Purchase Load service.



## OpenAPI

````yaml openapi/payment-v1.json GET /v1/checkin/{paymentLocation}
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/{paymentLocation}:
    get:
      tags:
        - Service2Service
      summary: Get check-ins
      description: >-
        Get check-ins by paymentLocation and checked-in time. Requested by
        Purchase Load service.
      parameters:
        - name: paymentLocation
          in: path
          description: The payment location identifier
          required: true
          schema:
            maxLength: 128
            type: string
        - name: checkedInAt
          in: query
          description: Filter by timestamp when check in was performed
          required: true
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.CheckIn
        '404':
          description: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/LoopFoundation.Commons.Contracts.WebServiceError
components:
  schemas:
    PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.CheckIn:
      type: object
      properties:
        id:
          type: string
          description: The check in identifier
          nullable: true
        memberId:
          type: string
          description: The member identifier
          nullable: true
        checkInDate:
          type: string
          description: The timestamp when the check in was performed
          format: date-time
        clearCheckInDate:
          type: string
          description: The timestamp when the check in was cleared
          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
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        JWT Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````