Skip to main content
POST
/
v1.0
/
subscribers
/
update
Update Subscriber details
curl --request POST \
  --url https://api.example.com/v1.0/subscribers/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "SubscriberId": "<string>",
  "Name": "<string>",
  "Email": "<string>",
  "PhoneNumbers": [
    "<string>"
  ],
  "Role": "<string>",
  "Account": {
    "AccountId": "<string>",
    "CompanyName": "<string>"
  },
  "Subscriptions": [
    {
      "SubscriptionId": "<string>",
      "PhoneNumber": "<string>",
      "PackageId": "<string>",
      "Iccid": "<string>"
    }
  ],
  "Password": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Body

Subscriber object

SubscriberId
string | null
Name
string | null
Email
string | null
PhoneNumbers
string[] | null
Role
string | null
Account
object
Subscriptions
object[] | null
Password
string | null

Response

200

Success