Skip to main content
GET
/
api
/
v1
/
products
/
tags
cURL
curl --request GET \
  --url https://api-staging.getmeadow.com/api/v1/products/tags \
  --header 'X-Client-Key: <api-key>' \
  --header 'X-Consumer-Key: <api-key>'
{
  "name": "<string>",
  "description": "<string>",
  "productIds": [
    123
  ]
}
This endpoint needs to be retrieved using daffodil.getmeadow.com or daffodil-staging.getmeadow.com (staging sandbox) instead of the api subdomain.

Example URL: https://daffodil.getmeadow.com/api/v1/products/tags
This endpoint will return all tags. No pagination is necessary

Authorizations

X-Consumer-Key
string
header
required

The key assigned to your company and provided via Meadow

X-Client-Key
string
header
required

The key generated and provided by our mutual client

Response

Tags response

name
string

The name of the tag

description
string | null

The description of the tag

productIds
number[] | null

An array of IDs that will correspond to the id property of each product from the Retrieve Menu endpoint. This value can be null if it does not have any products associated with it.