Brand GET

URI

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

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

Description

Returns the ID, name and description of a brand.

Example 1

Requesting all brands.

Request URI

/brand/

Response

{
	"response": [
		{
			"id": 74,
			"name": "Other",
			"description": ""
		},
		{
			"id": 75,
			"name": "Test-1",
			"description": "Test 1 description"
		},
		{
			"id": 76,
			"name": "Test-2",
			"description": "Test 2 description"
		},
		{
			"id": 77,
			"name": "Test-3",
			"description": "Test 3 description"
		},
		{
			"id": 78,
			"name": "Test-4",
			"description": "Test 4 description"
		}
	]
}

Example 2

Requesting brands using an ID set.

Request URI

/brand/74,76

Response

{
	"response": [
		{
			"id": 74,
			"name": "Other",
			"description": ""
		},
		{
			"id": 76,
			"name": "Test-2",
			"description": "Test 2 description"
		}
	]
}