Taxonomies
Taxonomies in API v3: list taxonomies, create a taxonomy, retrieve a taxonomy, update a taxonomy, delete a taxonomy, list taxonomy terms, create a taxonomy term, retrieve a taxonomy term, update a taxonomy term, delete a taxonomy term.
10 operations.
| Operation | Summary |
|---|---|
GET /products/{product_id}/taxonomies | List taxonomies |
POST /products/{product_id}/taxonomies | Create a taxonomy |
GET /products/{product_id}/taxonomies/{taxonomy_id} | Retrieve a taxonomy |
PATCH /products/{product_id}/taxonomies/{taxonomy_id} | Update a taxonomy |
DELETE /products/{product_id}/taxonomies/{taxonomy_id} | Delete a taxonomy |
GET /products/{product_id}/taxonomies/{taxonomy_id}/terms | List taxonomy terms |
POST /products/{product_id}/taxonomies/{taxonomy_id}/terms | Create a taxonomy term |
GET /products/{product_id}/taxonomies/{taxonomy_id}/terms/{taxonomy_term_id} | Retrieve a taxonomy term |
PATCH /products/{product_id}/taxonomies/{taxonomy_id}/terms/{taxonomy_term_id} | Update a taxonomy term |
DELETE /products/{product_id}/taxonomies/{taxonomy_id}/terms/{taxonomy_term_id} | Delete a taxonomy term |
Lessons
Previous Page
List taxonomies GET
Lists the taxonomies of a product. Results are paginated with `limit` and `cursor`. Taxonomies are available only for products in the `blog` format. For other formats, the API returns `409 Conflict` with the `format_unsupported` error code instead of an empty collection.