Skip to main content
POST
/
v1.0
/
subscriptions
/
features
/
add
Create Feature
curl --request POST \
  --url https://api.telegent.com/v1.0/v1.0/subscriptions/features/add \
  --header 'Content-Type: application/json' \
  --data '
{
  "AccountId": "AID-1234567",
  "FeatureName": "International Roaming",
  "FeatureType": "Roaming",
  "FeatureDescription": "Enables data and voice while roaming internationally."
}
'
{
  "FeatureId": "FEID-00000001-0000-0000-0000-000000000001",
  "AccountId": "AID-1234567",
  "FeatureName": "International Roaming",
  "FeatureType": "Roaming",
  "FeatureDescription": "Enables data and voice while roaming internationally.",
  "Active": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.telegent.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

Feature object

AccountId
string | null

Your Telegent account identifier (AID-). Scopes the feature to this account.

Example:

"AID-1234567"

FeatureName
string | null

Human-readable name for this feature.

Example:

"International Roaming"

FeatureType
string | null

Category of the feature. Examples: Data, Voice, SMS, Roaming, VoIP.

Example:

"Roaming"

FeatureDescription
string | null

Optional description of what this feature provides.

Example:

"Enables data and voice while roaming internationally."

Response

Success — returns the new feature ID and record

The response is of type object.