Description

Returns a list of brands and it’s outlets.

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": []
}