Project GET

URI

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

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

Description

Detailed field description:
Field Name Data type Description
projectId Integer Unique project ID
name String Project name

Example 1

Fetch the project with ID 2.

Request URI

/project/2

Response

{
	"response": [
		{
			"projectId": 2,
			"name": "My Other Project"
		}
	]
}

Example 2

Requesting all projects.

Request URI

/project/

Response

{
	"response": [
		{
			"projectId": 1,
			"name": "My First Project"
		},
		{
			"projectId": 2,
			"name": "My Other Project"
		}
	]
}