Company GET

URI

https://{DATACENTER}.brightpearlconnect.com/public-api/{ACCOUNT}
/contact-service/company/{ID-SET}

Refer to our documentation on URI syntax for more information on how to construct URIs.

Description

Given an ID set identifying up to 200 companies, returns the following data fields for each company as a list:

Field Name Field Description
companyId The company ID.
companyName The company name.

Example

Request single or multiple companies using an ID Set. If successful, HTTP response status 200.

Request URI

/company/1,3

Response

{
	"response": [
		{
			"id": 1,
			"name": "CompanyName"
		},
		{
			"id": 3,
			"name": "AnotherCompanyName"
		}
	]
}