curl --request POST \
--url https://{defaultHost}/{app_id}/users/import \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"errors": [
{
"email": "<string>",
"error": "<string>"
}
]
}Bulk import multiple users from CSV/JSON data. Requires email column to be present.
curl --request POST \
--url https://{defaultHost}/{app_id}/users/import \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"errors": [
{
"email": "<string>",
"error": "<string>"
}
]
}Was this page helpful?