curl --request POST \
--url https://api.example.com/auth/signup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"browserCode": "<string>",
"countryIso": "<string>",
"email": "<string>",
"firstName": "<string>",
"password": "<string>",
"phoneNumber": "<string>",
"timezoneOffset": "<string>",
"lastName": "<string>",
"birthMonth": 123,
"birthYear": 123
}
'{
"success": true,
"data": "<unknown>"
}Call to sign up the user.
curl --request POST \
--url https://api.example.com/auth/signup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"browserCode": "<string>",
"countryIso": "<string>",
"email": "<string>",
"firstName": "<string>",
"password": "<string>",
"phoneNumber": "<string>",
"timezoneOffset": "<string>",
"lastName": "<string>",
"birthMonth": 123,
"birthYear": 123
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.
1111111