Skip to main content

Get Subscriptions Summary By Id

Overview

Retrieves Subscription Summary by subscription ID. This endpoint allows an authenticated partner to fetch subscription summary from an IntelliAppZ subscription using a unique subscription ID. The subscription must belong to a customer associated with the partner.

Endpoint Details

URL:

/api/integration/partner/subscription/summary

Method :

GET

Request

{'Content-Type': 'application/json; charset=utf-8'}

Query Parameter*:

NameInDescription
subscriptionIdqueryThe unique subscription ID used to retrieve the subscription summary.

Response:

HTTP Status Codes

  • Success Response
StatusDescription
200Subscription summary information is retrieved successfully.
  • Error Responses
StatusDescription
400Bad Request – The subscription ID, partner ID or user ID is invalid.
401Unauthorized – Authentication is required to access this resource.
403Forbidden – The user lacks subscription access or is not authenticated as a partner.
404Not Found – No subscription or partner found for the given subscription ID.
500Internal Server Error – An unexpected error occurred during request processing.

Response Body

With subscriptionId=IBIS20250131000029

  https://accounts.onintellibuddies.com/api/integration/partner/subscription/summary?subscriptionId=IBIS20250131000029
{
"id": 29,
"subscriptionId": "IBIS20250131000029",
"description": "Test-subscription-for-auto-renewal - Production",
"status": "Expired",
"createdOn": "2025-01-31T12:45:45.14649",
"lastModifiedOn": "2025-01-31T12:46:02.153696",
"edition": "INTELLIAPPZ",
"appZCustomerId": 1,
"approvalDays": 3,
"expiresOn": "2025-02-03T23:59:59",
"activatedOn": "2025-01-31T12:47:56.368987",
"skuCode": "400010",
"neverExpires": false,
"autoRenewal": false,
"partner": {
"partnerId": 1,
"firstName": "Implementation Partner",
"lastName": "ibqa",
"emailAddress": "ibqapartner@gmail.com",
"phone": "+918465092946",
"jobTitle": "IntelliAppZ Implementation",
"companyName": "VIT",
"country": "India",
"city": "Bengaluru",
"industry": "Software & IT Services",
"businessRegion": "Western America;#India",
"partnerType": "Implementation Partner",
"status": "Active",
"number": "IBPR20250124000001",
"state": null,
"postalCode": null,
"address": null,
"created": "2025-01-24T13:02:53.665853",
"modified": "2025-01-24T13:13:22.204731",
"createdBy": "Customer ibqa",
"modifiedBy": "Sales Manager ibqa"
},
"appzCustomer": {
"id": 1,
"name": "IAZCustomer",
"address": "Residency Road, Bangalore",
"email": "testcustomer1b@gmail.com",
"telephone": "8365092946",
"business": "V IB",
"url": "",
"comments": "",
"state": null,
"country": null,
"city": null,
"postalCode": null,
"created": "2025-01-31T12:26:44.487833",
"modified": "2025-01-31T12:26:44.487833",
"createdBy": "Implementation Partner ibqa",
"modifiedBy": "Implementation Partner ibqa"
},
"purchases": [
{
"purchaseId": 32,
"number": "IAPO20250131000032",
"status": "Approved",
"description": "Test-subscription-for-auto-renewal - Production",
"type": "New",
"products": [
{
"skuCode": "100024",
"name": "Production_RenewalCheck",
"description": "",
"quantity": 1,
"unitType": "Product",
"executionCount": 20,
"isMeteringEnabled": true,
"intelliAppZId": 6,
"addToRenewal": false,
"services": []
}
]
}
]
}