Get IntelliAppZ Customer Info
Overview
This endpoint enables an authenticated Implementation Partner to retrieve details of a specific IntelliAppZ customer using a unique customerId.
Endpoint Details
URL:
/api/integration/partner/appzcustomer/byid
Method :
GET
Request
Header
{'Content-Type': 'application/json; charset=utf-8'}
Query Parameters
Name | In | Description |
---|---|---|
customerId | query | The unique ID of the IntelliAppZ customer to retrieve. |
Response:
HTTP Status Codes
- Success Response
Status | Description |
---|---|
200 | IntelliAppZ customer information is 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 IntelliAppZ customers access or is not authenticated as a partner. |
404 | Not Found – No partner record is associated with the authenticated user. |
500 | Internal Server Error – An unexpected error occurred during request processing. |
Response Body
With customerid=1
https://accounts.onintellibuddies.com/api/integration/partner/appzcustomer/byid?customerId=1
{
"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"
}
]
}