Get Partner Profile Info
Overview
Retrieves partner profile information. This endpoint returns detailed information about the authenticated partner, including profile data, contact details, and account status.
Endpoint Details
URL:
/api/integration/partner/info
Method :
GET
Request
Header
{'Content-Type': 'application/json; charset=utf-8'}
Response:
HTTP Status Codes
- Success Response
| Status | Description |
|---|---|
| 200 | Partner information is retrieved successfully. |
- Error Responses
| Status | Description |
|---|---|
| 400 | Bad Request – The partner ID or user ID is invalid. |
| 401 | Unauthorized – You must be authenticated to access this resource. |
| 403 | Forbidden – The user lacks partner 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
Example URL and Response
https://accounts.onintellibuddies.com/api/integration/partner/info
{
"partnerId": 1,
"firstName": "Hank",
"lastName": "Pym",
"emailAddress": "partner@local.com",
"phone": "+12129704133",
"jobTitle": "CEO",
"companyName": "Pym Technologies",
"country": "United States",
"city": "California",
"industry": "Pharma",
"businessRegion": "North America;#South America;#Western America;#Eastern America",
"partnerType": "Implementation Partner",
"status": "Active",
"number": "IBPR20241217000001",
"state": null,
"postalCode": null,
"address": null,
"created": "2024-12-17T02:13:18.868908",
"modified": "2024-12-17T02:14:29.522617",
"createdBy": "Administrator ",
"modifiedBy": "Sales manager"
}