Skip to main content

Get IntelliAppZ Customer Info By Subscription Id

Overview

This endpoint allows an authenticated Implementation Partner to retrieve detailed customer information for a specific IntelliAppZ subscription using a unique subscriptionId. The subscription must be associated with a customer under the partner’s account.

Endpoint Details

URL:

/api/integration/partner/appzcustomer/bysubscription

Method :

GET

Request

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

Query Parameters

NameInDescription
subscriptionIdqueryThe unique subscription ID used to identify the IntelliAppZ customer.

Response:

HTTP Status Codes

  • Success Response
StatusDescription
200IntelliAppZ customer 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 IntelliAppZ customer access or is not authenticated as a partner.
404Not Found – No IntelliAppZ customer or 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/appzcustomer/bysubscription?subscriptionId=IBIS20250131000029
{
"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"
},
"customers": [
{
"id": 1,
"name": "IAZCustomer",
"address": "Residency Road, Bangalore",
"email": "testcustomer1b@gmail.com",
"telephone": "8365092946",
"business": "VIT 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"
}
]
}