POST -orgs__orgId_subscriptions_limit_active
Gives active subscriptions info and fraud limits of telco services for a client
POST
/orgs/{orgId}/subscriptions/limit/active
1
2
3
4
5
|
{
"document_type": "NIF",
"document_id": "88662844Y",
"segment": "Consumer"
}
|
Name |
Type |
Required |
Description |
document_type |
string |
false |
client document type. |
document_id |
string |
false |
client document number. |
segment |
string |
false |
none |
Property |
Values |
document_type |
one of [NIF, CIF, NIE, PASSPORT, TR] |
segment |
one of [Consumer, SelfEmployee, SME, B2B] |
Request example
1
2
3
4
5
6
7
8
9
10
|
curl -X POST https://feasibility.sta.masstack.com/v2/orgs/masmovil/subscriptions/limit/active \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
--data-raw "{
'document_type': 'NIF',
'document_id': '88662844Y',
'segment': 'Consumer'
}"
|