Get Subscription Details
GET /order/client/tieup/fetch-subscription-details
curl --location --request GET '{{url}}/order/client/tieup/fetch-subscription-details?chassisNo=<chassis_number>' \
--header 'key-id: {{client_secret_code}}' \
--header 'Content-Type: application/json' \
--header 'Authorization: {{auth_token}}'Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
key-id
{{client_secret_code}}
Query parameter
Name
Type
Description
clientId*
string
Unique client ID
subscriptionId
number
chassisNo
string
Response
{
"success": true,
"message": "list fetched successfully!",
"data": {
"subscriptionId": 0001,
"startDate": "2025-06-11T08:49:20.000Z",
"expiryDate": "2025-12-28T08:49:20.000Z",
"allowedIncidents": 5,
"usedIncidents": 3
}
}{
"success": false,
"message": "Unauthorised",
"data": null
}{
"success": false,
"message": "No Subscription plan available",
"data": []
}Last updated