Skip to main content
POST
/
v1.0
/
subscribers
/
create
json
{
  "Name": "Jerome User 4",
  "Email": "[email protected]",
  "PhoneNumbers": ["+1234567890"],
  "Role": "Subscriber",
  "Password": "1234567890",
  "AccountId": "AID-eab92510-1040-45a5-bb9c-0bad9272f89d"
}
{
  "SubscriberId": "TSUID-90c644ff-7f70-4587-a27e-d1d45bde7528",
  "Name": "Jerome User 4",
  "Email": "[email protected]",
  "PhoneNumbers": [
    "+1234567890"
  ],
  "Role": "Subscriber",
  "Account": {
    "AccountId": "AID-eab92510-1040-45a5-bb9c-0bad9272f89d",
    "CompanyName": "Telegent Account"
  }
}

Authorizations

Authorization
string
header
required

Enter the token obtained from the Authentication endpoint

Body

application/json
Name
string
required

Subscriber's full name

Example:

"Jerome User 4"

Email
string<email>
required

Subscriber's email address

PhoneNumbers
string[]
required

Array of phone numbers associated with subscriber

Example:
["+1234567890"]
Role
enum<string>
required

Role of the subscriber

Available options:
Subscriber,
Manager,
Account Admin
Example:

"Subscriber"

Password
string
required

Password for the subscriber account

Example:

"1234567890"

AccountId
string
required

Account ID to associate subscriber with

Example:

"AID-eab92510-1040-45a5-bb9c-0bad9272f89d"

Response

200 - application/json

Subscriber Created

The response is of type object.