Get Brands

Get Brands

GET https://environment.monterosa.cloud/api/v2/organisations/:organisation_id/brands

Path Parameters

NameTypeDescription

organisation_id

string

Organisation ID

Headers

NameTypeDescription

Content-Type

string

application/vnd.api+json

Authentication

string

Bearer token. Example "Bearer DFtioe38xP4dkz5K6sYirYnDxiJkLfom"

{
  "data": [
    {
      "id": "934d2ad0-ebc4-4b42-9abd-284f127854d2",
      "type": "brands",
      "attributes": {
        "name": "Brand name",
        "image_url": null,
        "total_interactions": "0",
        "projects_count": 2,
        "apps_count": 1
      },
      "relationships": {
        "organisation": {
          "data": {
            "id": "d7cbb9a2-723b-47a9-8d1a-126c08b30f3f",
            "type": "organisations"
          }
        },
        "projects": {
          "links": {
            "related": "https://environment.lvis.io/api/v2/brands/934d2ad0-ebc4-4b42-9abd-284f127854d2/projects"
          }
        }
      },
      "links": {
        "self": "https://environment.lvis.io/api/v2/brands/934d2ad0-ebc4-4b42-9abd-284f127854d2"
      }
    },
    {
      "id": "9795dd07-38b7-454e-b128-7fd2c44fa619",
      "type": "brands",
      "attributes": {
        "name": "Brand name 2",
        "image_url": null,
        "total_interactions": "0",
        "projects_count": 1,
        "apps_count": 1
      },
      "relationships": {
        "organisation": {
          "data": {
            "id": "d7cbb9a2-723b-47a9-8d1a-126c08b30f3f",
            "type": "organisations"
          }
        },
        "projects": {
          "links": {
            "related": "https://environment.lvis.io/api/v2/brands/9795dd07-38b7-454e-b128-7fd2c44fa619/projects"
          }
        }
      },
      "links": {
        "self": "https://environment.lvis.io/api/v2/brands/9795dd07-38b7-454e-b128-7fd2c44fa619"
      }
    }
  ]
}

Example

curl --request GET \
  --url https://environment.monterosa.cloud/api/v2/organisations/43707e1c-5cc4-4e18-b5dd-c6c5b8801dc5/brands \
  --header 'Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb' \
  --header 'Content-Type: application/vnd.api+json'