Skip to main content
POST
/
iser
/
insert
Registers a new iser using the specified parameters
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
email
string
required
Minimum string length: 1
firstName
string
required
Minimum string length: 1
lastName
string
required
Minimum string length: 1
browserCode
string
required
Minimum string length: 1
countryAbbreviation
string | null
phoneNumber
string | null
whatsAppCountryAbbreviation
string | null
whatsAppNumber
string | null
timezoneOffset
string | null
default:1
birthMonth
integer<int32> | null
birthYear
integer<int32> | null

Response

Success

success
boolean
data
unknown