Get List Of Subscriptions
Overview
Retrieves list of Subscriptions. This endpoint returns a list of subscriptions associated with the currently authenticated partner.
Endpoint Details
URL:
/api/integration/partner/subscription/all
Method :
GET
Request
Header
{'Content-Type': 'application/json; charset=utf-8'}
Query Parameter
Name | In | Description |
---|---|---|
customerId | query | The unique customer ID used to filter subscriptions optionally. |
Response:
HTTP Status Codes
- Success Response
Status | Description |
---|---|
200 | The list of subscriptions are retrieved successfully. |
- Error Responses
Status | Description |
---|---|
400 | Bad Request – The partner ID or user ID is invalid. |
401 | Unauthorized – Authentication is required to access this resource. |
403 | Forbidden – The user lacks subscription access or is not authenticated as a partner. |
404 | Not Found – No partner is associated with the authenticated user. |
500 | Internal Server Error – An unexpected error occurred during request processing. |
Response Body
Default without customerid
https://accounts.onintellibuddies.com/api/integration/partner/subscription/all
[
{
"id": 29,
"subscriptionNumber": "IBIS20250131000029",
"description": "Test-subscription-for-auto-renewal - Production",
"licenseType": "PRODUCTION",
"approvalDays": 3,
"expiresOn": "2025-02-03T23:59:59",
"activatedOn": "2025-01-31T12:47:56.368987",
"skuCode": "400010",
"partnerId": 1,
"customerId": 1,
"neverExpires": false,
"autoRenewal": false,
"type": "New",
"edition": "INTELLIAPPZ",
"status": "Expired",
"created": "2025-01-31T12:45:45.14649",
"modified": "2025-01-31T12:46:02.153696",
"createdBy": "Implementation Partner ibqa",
"modifiedBy": "Finance ibqa"
},
{
"id": 28,
"subscriptionNumber": "IBIS20250131000028",
"description": "Test-subscription-for-auto-renewal",
"licenseType": "DEVELOPMENT",
"approvalDays": 1,
"expiresOn": "2025-05-02T09:49:57.745798",
"activatedOn": "2025-01-31T12:12:13.774461",
"skuCode": "400005",
"partnerId": 1,
"customerId": null,
"neverExpires": false,
"autoRenewal": true,
"type": "New",
"edition": "INTELLIAPPZ",
"status": "Active",
"created": "2025-01-31T12:09:36.761739",
"modified": "2025-05-01T09:49:57.770237",
"createdBy": "Implementation Partner ibqa",
"modifiedBy": "System Account"
},
{
"id": 22,
"subscriptionNumber": "IBIS20250131000022",
"description": "R App",
"licenseType": "DEVELOPMENT",
"approvalDays": 365,
"expiresOn": "2026-01-31T23:59:59",
"activatedOn": "2025-01-31T06:32:35.437506",
"skuCode": "400005",
"partnerId": 1,
"customerId": null,
"neverExpires": false,
"autoRenewal": false,
"type": "New",
"edition": "INTELLIAPPZ",
"status": "Active",
"created": "2025-01-31T06:31:24.859639",
"modified": "2025-01-31T06:31:58.321893",
"createdBy": "Implementation Partner ibqa",
"modifiedBy": "Finance ibqa"
}
]
With customerid=1
https://accounts.onintellibuddies.com/api/integration/partner/subscription/all?customerid=1
[
{
"id": 29,
"subscriptionNumber": "IBIS20250131000029",
"description": "Test-subscription-for-auto-renewal - Production",
"licenseType": "PRODUCTION",
"approvalDays": 3,
"expiresOn": "2025-02-03T23:59:59",
"activatedOn": "2025-01-31T12:47:56.368987",
"skuCode": "400010",
"partnerId": 1,
"customerId": 1,
"neverExpires": false,
"autoRenewal": false,
"type": "New",
"edition": "INTELLIAPPZ",
"status": "Expired",
"created": "2025-01-31T12:45:45.14649",
"modified": "2025-01-31T12:46:02.153696",
"createdBy": "Implementation Partner ibqa",
"modifiedBy": "Finance ibqa"
}
]