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>"
}
'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>"
}
'JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.
Subscriber object
Success