Skip to main content

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

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

Response:

HTTP Status Codes

  • Success Response
StatusDescription
200Partner information is retrieved successfully.
  • Error Responses
StatusDescription
400Bad Request – The partner ID or user ID is invalid.
401Unauthorized – You must be authenticated to access this resource.
403Forbidden – The user lacks partner access or is not authenticated as a partner.
404Not Found – No partner record is associated with the authenticated user.
500Internal 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"
}