Get Delegated Brand Resources
API Description
Get information about one or more brand resources delegated to you, by other organizations, matching query parameters.
Request
URI Parameters
| Name | Input |
|---|---|
delegatedPartnerOrgId |
Query Parameters
Filters to apply on the operation. Refer to References for a list of common query parameters and operators.
| Name | Input |
|---|---|
categories | |
countryCodes | |
displayNames | |
orgId |
Org ID
orgId is the Apple-generated ID of the organization that delegated you
Requests a list of brands that have been delegated to you.
GET {url}/api/{version}/orgs/{delegatedPartnerOrgId}/delegated-brands
Requests a list of brands that have been delegated to you by the identified organization.
GET {url}/api/{version}/orgs/{delegatedPartnerOrgId}/delegated-brands?ql=orgId=={orgId}
GET {url}/api/v1/orgs/9467895078742654994/delegated-brands?ql=orgId==9467895078742654934
Request Headers
| Name | Input |
|---|---|
Authorization | |
Accept |
Authorization: Bearer <access_token>
Accept: application/json
Request Body
None
Response
200 OK or Error
Response Headers
| Name |
|---|
apple-request-id |
content-type |
HTTP/1.1 200 OK
apple-request-id: 108fc823-4082-4c29-be98-3abfc5277929
content-type: application/json
Response Body
| Parent | Name | Output |
|---|---|---|
$. | pagination | |
$. | total | |
$. | data[] | |
data[] | orgId | |
data[] | id | |
data[] | createdDate | |
data[] | updatedDate | |
data[] | state | |
data[] | etag | |
data[] | brandDetails |
ID
id uniquely identifies the delegated brand resource.
Org ID
orgId identifies the organization that delegated you.
Brand Details
Element containing a description of the delegated resource and the organization that delegated you.
| Parent | Name | Output |
|---|---|---|
brandDetails | orgDetails | |
brandDetails | partnersBrandId | |
brandDetails | displayNames | |
brandDetails | categories | |
brandDetails | countryCodes | |
brandDetails | urls | |
brandDetails | ownershipType | |
brandDetails | partnersBrandVersion |
CONDITIONAL fields are returned only if the value has been set on the brand resource.
Org Details
Add the expand=orgDetails query parameter to the URI to request additional organization information. orgId is included in the response by default.
| Parent | Name | Output |
|---|---|---|
orgDetails | orgId | |
orgDetails | legalName | |
orgDetails | state |
State
Describes state of the delegation relationship that exists between the organizations (location owner ⟺ partner). Possible values: ACTIVE, NOT_ACTIVE, or PENDING.
Example Response Bodies
Without expand=orgDetails Query Parameter
{
"data": [
{
"orgId": "9467895078742654934",
"id": "9467895078742654921",
"createdDate": "2026-10-01T07:30:00.00Z",
"updatedDate": "2026-10-01T07:30:00.00Z",
"state": "PUBLISHED",
"etag": "4d891a34-ddc8-11ec-a7a0-f7f6c418993d",
"brandDetails": {
"orgDetails": {
"orgId": "9467895078742654934"
},
"partnersBrandId": "456456",
"partnersBrandVersion": "PBV01",
"countryCodes": [ "US" ],
"displayNames": [
{
"name": "Brand Name",
"locale": "en-US",
"primary": true
}
],
"categories": [ "dining.restaurant.asian_cuisine.japanese_cuisine.japanese_steakhouse" ],
"urls": [
{
"url": "http://example.com",
"type": "HOMEPAGE"
}
],
"ownershipType": "BRAND_OWNER"
}
},
{/* additional resources */}
],
"pagination": {
"cursors": {
"after": "8U54a61d9b495324"
},
"next": "/api/v1/orgs/9467895078742654934/delegated-brands?limit=2&after=8U54a61d9b495324"
},
"total": 4
}
With expand=orgDetails Query Parameter
{
"data": [
{
"orgId": "9467895078742654934",
"id": "9467895078742654921",
"createdDate": "2026-10-01T07:30:00.00Z",
"updatedDate": "2026-10-01T07:30:00.00Z",
"state": "PUBLISHED",
"etag": "4d891a34-ddc8-11ec-a7a0-f7f6c418993d",
"brandDetails": {
"orgDetails": {
"orgId": "9467895078742654934",
"legalName": "Brand Enterprise",
"state": "PENDING"
},
"partnersBrandId": "456456",
"partnersBrandVersion": "PBV01",
"countryCodes": [ "US" ],
"displayNames": [
{
"name": "Brand Name",
"locale": "en-US",
"primary": true
}
],
"categories": [ "dining.restaurant.asian_cuisine.japanese_cuisine.japanese_steakhouse" ],
"urls": [
{
"url": "http://example.com",
"type": "HOMEPAGE"
}
],
"ownershipType": "BRAND_OWNER"
}
},
{ /* additional resources */ }
],
"pagination": {
"cursors": {
"after": "8U54a61d9b495324"
},
"next": "/api/v1/orgs/9467895078742654934/delegated-brands?limit=2&after=8U54a61d9b495324"
},
"total": 4
}
When no collection is returned.
{
"data": [],
"pagination": {},
"total": 0
}