Create a new participant
Registers a new participant into the system by providing the necessary details.
Responses
-
Participant successfully created and added to the system.
-
Total number of participants exceeds the limit allowed by your service plan.
-
Authorization failed. Ensure the
X-Client-Key
sent is valid and active. -
Invalid or inactive client. The API key may be incorrect, expired, or your account does not have permission.
-
Validation error occurred on the submitted data. Please check the format and completeness of the data.
-
An internal server error occurred. Please try again shortly or contact support.
POST
/participants
curl \
--request POST 'https://app.indolat.com/api/v1/participants' \
--header "X-Client-Key: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"email":"participant@example.com","name":"John Doe","password":"StrongPassword123!"}'
Request examples
{
"email": "participant@example.com",
"name": "John Doe",
"password": "StrongPassword123!"
}