Import participant data in bulk
Imports a list of participants in large quantities. If a participant's email is already registered, their data will be updated. Otherwise, a new participant will be created.
Responses
-
Participant data successfully imported or updated.
-
Invalid JSON format or the total number of participants after import will exceed the allowed limit.
-
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 one or more imported participant data. Please check the format and completeness of the data.
-
An internal server error occurred. Please try again shortly or contact support.
POST
/participants/import
curl \
--request POST 'https://sandbox.indolat.com/api/v1/participants/import' \
--header "X-Client-Key: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"participants":[{"email":"participant@example.com","name":"John Doe","password":"StrongPassword123!"}]}'
Request examples
{
"participants": [
{
"email": "participant@example.com",
"name": "John Doe",
"password": "StrongPassword123!"
}
]
}