GET
/
catalogs
/
{id}
curl --request GET \
  --url https://your_a2_service/catalogs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "",
  "metadata": {
    "brand": "<string>",
    "category": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "id": "<string>",
    "image_link": "<string>",
    "link": "<string>",
    "seller_name": "<string>",
    "title": "<string>",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "schema": "creative.catalog",
  "source": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

The ID of the catalog to retrieve

Response

200
application/json

Successful Response

Base schema for catalog entries.

Provides core structure for catalog items including schema identification and metadata validation.