Description
Returns a list of brands and it’s outlets.
Important: Access to brands must be whitelisted by a Mulah admin.
Note: Shared id returned by operation is required by other brand specific operations.
Parameters
Parameter | Type | Value | Required |
operation_name | String | accessibleBrands | true |
Example
Request
curl \
-X POST \
-H "Content-Type: application/json" \
-H "Token: $TOKEN" \
-d '{"operation_name": "accessibleBrands"}' \
https://mulahpoints.com/third_party
Response
{
"data": {
"thirdParty": {
"brands": [
{
"name": "TEST_NAME",
"sharedId": "TEST_SHARED_ID",
"outlets": [
{
"id: "TEST_OUTLET_ID",
"name": "TEST_OUTLET_NAME",
}
]
}
]
}
},
"errors": []
}