Get a list of participants

GET /participants

Retrieves a list of participants registered in the system. The results are paginated for efficient data management.

Query parameters

  • limit integer

    Specifies the maximum number of participant records to return per page. Minimum value is 1, maximum is 100, and the default is 10 if not specified.

  • page integer

    Specifies the page number of the participant list to access. Minimum value is 1, and the default is 1 if not specified.

Responses

  • 200

    Successfully retrieved the list of participants.

  • 401

    Authorization failed. Ensure the X-Client-Key sent is valid and active.

  • 403

    Invalid or inactive client. The API key may be incorrect, expired, or your account does not have permission to access this resource.

GET /participants
curl \
 --request GET 'https://app.indolat.com/api/v1/participants' \
 --header "X-Client-Key: $API_KEY"