The Apiera REST API provides programmatic access to the Apiera platform, enabling seamless integration with your existing systems and workflows.
Product Terms
Overview
Tag Contents
Tags
Skus
Sku Dimensions
Sku Weights
Family Asset Types
Family Attributes
Family Categories
Families
Family Relation Types
Product Assets
Product Asset Types
Product Attributes
Product Categories
Product Contents
Products
Product Metadata
Product Relations
Product Relation Types
Product Tags
Organization Members
Organizations
Organization Roles
Locales
Category Contents
Categories
Brand Contents
Brands
Attribute Contents
Attributes
Attribute Term Contents
Attribute Terms
Assets
Asset Files
Asset Metadata
Apiera REST API (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.apiera.io/_mock/openapi
http://localhost:5281
Query
Filter by attribute term UUIDs. Accepts multiple values.
Filter by exact creation timestamp.
Example: createdAt[eq]=2025-11-23T14:15:22.123456Z
Filter by minimum creation timestamp.
Example: createdAt[min]=2025-11-23T14:15:22.123456Z
Filter by maximum creation timestamp.
Example: createdAt[max]=2025-11-23T14:15:22.123456Z
Filter by exact update timestamp.
Example: updatedAt[eq]=2025-11-23T14:15:22.123456Z
Filter by minimum update timestamp.
Example: updatedAt[min]=2025-11-23T14:15:22.123456Z
Filter by maximum update timestamp.
Example: updatedAt[max]=2025-11-23T14:15:22.123456Z
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms
- http://localhost:5281/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms?uuids%5Beq%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&attributeTermUuids%5Beq%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&createdAt%5Beq%5D=2025-11-23T14%3A15%3A22.123456Z&createdAt%5Bmin%5D=2025-11-23T14%3A15%3A22.123456Z&createdAt%5Bmax%5D=2025-11-23T14%3A15%3A22.123456Z&createdAt%5Border%5D=string&updatedAt%5Beq%5D=2025-11-23T14%3A15%3A22.123456Z&updatedAt%5Bmin%5D=2025-11-23T14%3A15%3A22.123456Z&updatedAt%5Bmax%5D=2025-11-23T14%3A15%3A22.123456Z&updatedAt%5Border%5D=string&page=0&size=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" }, { "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" }, { "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" } ]
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms
- http://localhost:5281/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"attributeTermUuid": "fe89fbc5-0798-4a18-9f80-bcd42a704e81"
}'Response
application/json
{ "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}
- http://localhost:5281/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}
- http://localhost:5281/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/bulk
- http://localhost:5281/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/bulk
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/bulk' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '[
{
"attributeTermUuid": "fe89fbc5-0798-4a18-9f80-bcd42a704e81"
}
]'Response
application/json
[ { "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" }, { "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" }, { "uuid": "bbb88888-e89b-12d3-a456-426614174001", "productUuid": "789e0123-e89b-12d3-a456-426614174001", "productAttributeUuid": "ccc33333-e89b-12d3-a456-426614174001", "attributeTermUuid": "ddd99999-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z" } ]