curl --request POST \
--url https://api.example.com/v1.0/subscribers/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Password": "<string>",
"Name": "<string>",
"Email": "<string>",
"PhoneNumbers": [
"<string>"
],
"Role": "<string>",
"AccountId": "<string>"
}
'curl --request POST \
--url https://api.example.com/v1.0/subscribers/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Password": "<string>",
"Name": "<string>",
"Email": "<string>",
"PhoneNumbers": [
"<string>"
],
"Role": "<string>",
"AccountId": "<string>"
}
'JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.
Subscriber object
Success