List brand vettings

List brand vettings in a workspace

List all brand vettings for a given workspace. The list can be filtered by brand vetting status. This result is paginated. To learn more about the pagination, please refer to the pagination section on API Access Common API Usage section.

get

/workspaces/{workspaceId}/tcr-brands/{brandId}/vettings

Authorizations
Path parameters
workspaceIdstring · uuidrequired

The ID for the workspace.

Example: d386a801-ee8d-4aba-a7e4-78671bd3b11e
brandIdstringrequired

A unique identifier for the brand.

Query parameters
limitinteger · min: 1 · max: 99 · default: 10

Limits the number of results to return per page. The default value is 10 and maximum is 99. If the nextPageToken is defined on response, you can use it to get remaining numbers. To know more, refer to the pagination section.

pageTokenstring · max: 8000

Pagination token that keeps of track of the current position in the list. Use it to query remaining results. If not provided, the first page is returned. To learn more about the pagination, please refer to the pagination section on API Access Common API Usage section.

reverseboolean

Order in which to retrieve the results. By default, the orders are in ascending order date. To get the results in descending order, set this parameter to true.

Responses
curl -L \
  --url '/workspaces/{workspaceId}/tcr-brands/{brandId}/vettings' \
  --header 'Authorization: Bearer jwt'
{
  "results": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "brandId": "123e4567-e89b-12d3-a456-426614174000",
      "createdAt": "2025-02-21T18:03:53.252Z",
      "updatedAt": "2025-02-21T18:03:53.252Z",
      "status": "PENDING",
      "vettingProviderId": "text",
      "token": "text",
      "score": "text",
      "class": "STANDARD",
      "reasons": [
        "text"
      ]
    }
  ],
  "nextPageToken": "text"
}
Type
Description

VettingResponse object describes a submitted brand vetting

Last updated

Was this helpful?