Skip to main content
POST
/
v1.0
/
subscriptions
/
features
/
assignments
/
add
Create Feature Assignment
curl --request POST \
  --url https://api.telegent.com/v1.0/v1.0/subscriptions/features/assignments/add \
  --header 'Content-Type: application/json' \
  --data '
{
  "FeatureId": "FEID-00000001-0000-0000-0000-000000000001",
  "SubscriptionId": "SUB-ef84c0b5-d750-4a5a-99b1-4705089cd20c"
}
'
{
  "FeatureAssignmentId": "FAID-00000001-0000-0000-0000-000000000001",
  "FeatureId": "FEID-00000001-0000-0000-0000-000000000001",
  "SubscriptionId": "SUB-ef84c0b5-d750-4a5a-99b1-4705089cd20c",
  "Active": true
}

Body

Feature_Assignment object

FeatureId
string
required

ID of the feature to assign (FEID-).

Example:

"FEID-00000001-0000-0000-0000-000000000001"

SubscriptionId
string
required

ID of the subscription to assign the feature to (SUB-).

Example:

"SUB-ef84c0b5-d750-4a5a-99b1-4705089cd20c"

Response

Success — returns the new feature assignment ID and record

The response is of type object.