Skip to main content
POST
/
v1.0
/
subscribers
/
create
Create new Subscriber
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>"
}
'

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.

Body

Subscriber object

Password
string | null
Name
string | null
Email
string | null
PhoneNumbers
string[] | null
Role
string | null
AccountId
string | null

Response

200

Success