Skip to main content
POST
/
v1.0
/
subscriptions
Creates a new Subscription
curl --request POST \
  --url https://api.example.com/v1.0/subscriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "SubscriberId": "<string>",
  "TNID": "<string>",
  "ICCID": "<string>",
  "PackageId": "<string>",
  "Type": "<string>",
  "Active": true
}
'

Authorizations

Authorization
string
header
required

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

Body

Subscription object

SubscriberId
string | null
TNID
string | null
ICCID
string | null
PackageId
string | null
Type
string | null
Active
boolean

Response

200

Success