GET
/
affiliate
/
brands
/
{id}
cURL
curl --request GET \
  --url https://api-beta.lomadee.com.br/affiliate/brands/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "<string>",
    "logo": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "site": "<string>",
    "channels": [
      {
        "id": "<string>",
        "name": "<string>",
        "availableChannel": {
          "id": "<string>",
          "name": "<string>"
        },
        "shortUrls": [
          "<string>"
        ],
        "message": "<string>"
      }
    ]
  },
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123
  }
}

Get a Brand

HTTP Request

Authorizations

x-api-key
string
header
required

Path Parameters

id
integer
required

ID of brand to return

Response

200
application/json

Brand response

The response is of type object.