Skip to content

Apiera REST API (1.0.0)

The Apiera REST API provides programmatic access to the Apiera platform, enabling seamless integration with your existing systems and workflows.

Download OpenAPI description
Languages
Servers
Mock server
https://docs.apiera.io/_mock/openapi
http://localhost:5281

Tag Contents

Operations

Tags

Operations

Skus

Operations

Sku Dimensions

Operations

Sku Weights

Operations

Family Asset Types

Operations

Family Attributes

Operations

Family Categories

Operations

Families

Operations

Family Relation Types

Operations

Product Assets

Operations

Product Asset Types

Operations

Product Attributes

Operations

Product Categories

Operations

Product Contents

Operations

Products

Operations

Product Metadata

Operations

Product Relations

Operations

Product Relation Types

Operations

Product Tags

Operations

Product Terms

Operations

List product terms

Request

Retrieves a paginated list of attribute terms linked to a product.

Security
Bearer
Path
productUuidstring(uuid)required

Unique identifier of the product.

productAttributeUuidstring(uuid)required

Unique identifier of the product attribute.

Query
uuids[eq]Array of strings(uuid)

Filter by association UUIDs. Accepts multiple values.

attributeTermUuids[eq]Array of strings(uuid)

Filter by attribute term UUIDs. Accepts multiple values.

createdAt[eq]string(date-time)

Filter by exact creation timestamp.

Example: createdAt[eq]=2025-11-23T14:15:22.123456Z
createdAt[min]string(date-time)

Filter by minimum creation timestamp.

Example: createdAt[min]=2025-11-23T14:15:22.123456Z
createdAt[max]string(date-time)

Filter by maximum creation timestamp.

Example: createdAt[max]=2025-11-23T14:15:22.123456Z
createdAt[order]string

Sort order for creation timestamp. Values: asc, desc.

updatedAt[eq]string(date-time)

Filter by exact update timestamp.

Example: updatedAt[eq]=2025-11-23T14:15:22.123456Z
updatedAt[min]string(date-time)

Filter by minimum update timestamp.

Example: updatedAt[min]=2025-11-23T14:15:22.123456Z
updatedAt[max]string(date-time)

Filter by maximum update timestamp.

Example: updatedAt[max]=2025-11-23T14:15:22.123456Z
updatedAt[order]string

Sort order for update timestamp. Values: asc, desc.

pageinteger(int32)

Page number for pagination. Default is 1.

sizeinteger(int32)

Page size for pagination. Default is 20.

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>'

Responses

Successfully retrieved product terms.

Bodyapplication/json
itemsArray of objects(ProductTermHydratedResponse)required
items[].​uuidstring(uuid)required

Unique identifier for this product-term association.

items[].​productUuidstring(uuid)required

Identifier of the product this term is linked to.

items[].​productAttributeUuidstring(uuid)required

Identifier of the product attribute.

items[].​attributeTermUuidstring(uuid)required

Identifier of the linked attribute term.

items[].​createdAtstring(date-time)required

Timestamp when this association was created.

Example: "2025-11-23T14:15:22.123456Z"
items[].​updatedAtstring(date-time)required

Timestamp when this association was last modified.

Example: "2025-11-23T14:15:22.123456Z"
paginationobject(PaginationResult)required
pagination.​pageinteger(int32)required
pagination.​sizeinteger(int32)required
pagination.​totalItemsinteger(int32)required
pagination.​totalPagesinteger(int32)required
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" } ]

Link term to product attribute

Request

Creates a new association between a product attribute and an attribute term.

Security
Bearer
Path
productUuidstring(uuid)required

Unique identifier of the product.

productAttributeUuidstring(uuid)required

Unique identifier of the product attribute.

Bodyapplication/jsonrequired
attributeTermUuidstring(uuid)required

Identifier of the attribute term to link.

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"
  }'

Responses

Term linked successfully.

Bodyapplication/json
uuidstring(uuid)required

Unique identifier for this product-term association.

productUuidstring(uuid)required

Identifier of the product this term is linked to.

productAttributeUuidstring(uuid)required

Identifier of the product attribute.

attributeTermUuidstring(uuid)required

Identifier of the linked attribute term.

createdAtstring(date-time)required

Timestamp when this association was created.

Example: "2025-11-23T14:15:22.123456Z"
updatedAtstring(date-time)required

Timestamp when this association was last modified.

Example: "2025-11-23T14:15:22.123456Z"
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" }

Get product term

Request

Retrieves a single attribute term association for a product attribute.

Security
Bearer
Path
productUuidstring(uuid)required

Unique identifier of the product.

productAttributeUuidstring(uuid)required

Unique identifier of the product attribute.

productTermUuidstring(uuid)required

Unique identifier of the product-term association.

curl -i -X GET \
  'https://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Successfully retrieved product term.

Bodyapplication/json
uuidstring(uuid)required

Unique identifier for this product-term association.

productUuidstring(uuid)required

Identifier of the product this term is linked to.

productAttributeUuidstring(uuid)required

Identifier of the product attribute.

attributeTermUuidstring(uuid)required

Identifier of the linked attribute term.

createdAtstring(date-time)required

Timestamp when this association was created.

Example: "2025-11-23T14:15:22.123456Z"
updatedAtstring(date-time)required

Timestamp when this association was last modified.

Example: "2025-11-23T14:15:22.123456Z"
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" }

Unlink term from product attribute

Request

Removes an attribute term association from a product attribute.

Security
Bearer
Path
productUuidstring(uuid)required

Unique identifier of the product.

productAttributeUuidstring(uuid)required

Unique identifier of the product attribute.

productTermUuidstring(uuid)required

Unique identifier of the product-term association.

curl -i -X DELETE \
  'https://docs.apiera.io/_mock/openapi/v1/products/{productUuid}/attributes/{productAttributeUuid}/terms/{productTermUuid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Term unlinked successfully.

Response
No content

Bulk link terms to product attribute

Request

Creates multiple attribute term associations for a product attribute in a single operation.

Security
Bearer
Path
productUuidstring(uuid)required

Unique identifier of the product.

productAttributeUuidstring(uuid)required

Unique identifier of the product attribute.

Bodyapplication/jsonrequiredArray [
attributeTermUuidstring(uuid)required

Identifier of the attribute term to link.

]
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"
    }
  ]'

Responses

Terms linked successfully.

Bodyapplication/jsonArray [
uuidstring(uuid)required

Unique identifier for this product-term association.

productUuidstring(uuid)required

Identifier of the product this term is linked to.

productAttributeUuidstring(uuid)required

Identifier of the product attribute.

attributeTermUuidstring(uuid)required

Identifier of the linked attribute term.

createdAtstring(date-time)required

Timestamp when this association was created.

Example: "2025-11-23T14:15:22.123456Z"
updatedAtstring(date-time)required

Timestamp when this association was last modified.

Example: "2025-11-23T14:15:22.123456Z"
]
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" } ]

Organization Members

Operations

Organizations

Operations

Organization Roles

Operations

Locales

Operations

Category Contents

Operations

Categories

Operations

Brand Contents

Operations

Brands

Operations

Attribute Contents

Operations

Attributes

Operations

Attribute Term Contents

Operations

Attribute Terms

Operations

Assets

Operations

Asset Files

Operations

Asset Metadata

Operations