curl --request POST \
--url https://api.example.com/iser/insert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"browserCode": "<string>",
"countryAbbreviation": null,
"phoneNumber": null,
"whatsAppCountryAbbreviation": null,
"whatsAppNumber": null,
"timezoneOffset": 1,
"birthMonth": null,
"birthYear": null
}
'{
"success": true,
"data": "<unknown>"
}Registers a new iser and returns an object which represents the newly created iser
curl --request POST \
--url https://api.example.com/iser/insert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"browserCode": "<string>",
"countryAbbreviation": null,
"phoneNumber": null,
"whatsAppCountryAbbreviation": null,
"whatsAppNumber": null,
"timezoneOffset": 1,
"birthMonth": null,
"birthYear": null
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.
1111