> ## 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.

# Register member at payment location

> Lock POS by it's paymentLocation. Requested by POS.



## OpenAPI

````yaml openapi/payment-v1.json POST /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}:
    post:
      tags:
        - Service2Service
      summary: Register member at payment location
      description: Lock POS by it's paymentLocation. Requested by POS.
      parameters:
        - name: paymentLocation
          in: path
          description: The payment location identifier
          required: true
          schema:
            maxLength: 128
            type: string
      requestBody:
        description: Contains the member details
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.CheckInRequest
          text/json:
            schema:
              $ref: >-
                #/components/schemas/PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.CheckInRequest
          application/*+json:
            schema:
              $ref: >-
                #/components/schemas/PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.CheckInRequest
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.RegisterMemberResponse
        '404':
          description: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/LoopFoundation.Commons.Contracts.WebServiceError
      deprecated: true
components:
  schemas:
    PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.CheckInRequest:
      required:
        - memberId
      type: object
      properties:
        memberId:
          maxLength: 36
          minLength: 1
          type: string
          description: The member identifier
      additionalProperties: false
    PaymentCoordinator.Api.Controllers.Service2Service.CheckInController.RegisterMemberResponse:
      type: object
      properties:
        memberId:
          type: string
          description: Member Id, registered on POS
          nullable: true
        paymentAmountLimit:
          type: number
          description: Available/allowed amount for payment
          format: double
          nullable: true
      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

````