Phone ID - Identity attributes: Subscriber Status
NOTE:
To add this feature to your account, contact a Telesign expert. This feature is available for full-service accounts only.
The Subscriber Status identity attribute allows you to provide an end-user phone number and receive their current carrier subscriber status (prepaid or postpaid; active, suspended, deactivated; account type; primary account holder; length of account tenure) to better understand their value or risk. Information returned by Subscriber Status may vary by carrier or geographical market, please contact our Customer Support Team for additional information.
Information returned by Subscriber Status
- account_type - Whether the account is for an individual or an organization.
- account_tenure_max - The maximum amount of time in months the subscriber may have had their account (carriers often provide a range rather than a specific number of months). This may not come back in every response.
- account_tenure_min - The minimum amount of time in months the subscriber may have had their account (carriers often provide a range rather than a specific number of months). This may not come back in every response.
- primary_account_holder - Whether the phone number is the primary phone number of the account or not.
- account_status - Whether the account is active or not.
- contract_type - Whether the account is post-paid or pre-paid
- status - Contains properties explaining the processing status of your request.
- account_activation_date - The date the account was activated. It may not come back in every response.
Example request and response for Subscriber Status
Request
POST https://rest-ww.telesign.com/v1/phoneid/15555551212 HTTP/1.1
Authorization: Basic 12345678-9ABC-DEF0-1234-56789ABCDEF0:vjE/ZDfPvDkuGNsuqCFFO4neYIs=
Date: Thu, 18 Jan 2024 14:11:09 GMT
Content-Type: application/json
{
“addons”: {
“subscriber_status”: {}
}
}
Response (partial)
"subscriber_status": {
"status": {
"code": 2800,
"description": "Request successfully completed"
},
"account_type": "business",
"contract_type": "postpaid",
"account_status": "active",
"primary_account_holder": false,
"account_tenure_min": null,
"account_tenure_max": null,
"account_activation_date": "2024-01-15T00:00:00Z"
}
Subscriber Status request parameters
Parameter | Type | Description |
---|---|---|
addons | object | This parameter allows you to receive information returned from your enabled identity attributes. Contact our Customer Support Team to add this feature. |
addons.subscriber_status | string | Include this parameter to initiate use of the Subscriber Status identity attribute. |
Subscriber Status response
Property | Type | Description |
---|---|---|
reference_id | string | A 32-digit hex value used to identify a web service request. The value is unique to each web service request and is randomly generated by Telesign. |
phone_type | string | One of the phone type codes. |
description | string | Text describing the phone type. |
subscriber_status | object | Contains sub-properties related to the Subscriber Status identity attribute. |
subscriber_status.account_activation_date | string | The date the account first became active. |
subscriber_status.account_type | string | Whether the account belongs to an individual, an organization, or a government. |
subscriber_status.account_tenure_max | integer | The maximum amount of time in months the subscriber may have had their account. Coverage - All phone types. Contact our Customer Support Team for carrier information. |
subscriber_status.account_tenure_min | integer | The minimum amount of time in months the subscriber may have had their account. |
subscriber_status.primary_account_holder | boolean | Whether the phone number is the primary phone number of the account or not. Coverage - Mobile phones. Contact our Customer Support Team for carrier information. |
subscriber_status.account_status | string | Whether an account is 'active', 'suspended', or 'deactivated'. Coverage - All phone types. Contact our Customer Support Team for carrier information. |
subscriber_status.contract_type | string | Whether an account is 'postpaid' (an account where service is provided by prior arrangement with a mobile network operator, and the subscriber pays at the end of each month) or 'prepaid' (an account where the subscriber pays for the service up front). Coverage - All phone types. Contact our Customer Support Team for carrier information. |
subscriber_status.status | object | |
subscriber_status.status.code | string | A numeric code indicating the processing status of your request. |
subscriber_status.status.description | string | Text explaining what the error or status code means. |
Updated about 2 months ago