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

List tag contents

Request

Retrieves a paginated list of localized content for a tag.

Security
Bearer
Path
tagUuidstring(uuid)required

Unique identifier of the tag.

Query
uuids[eq]Array of strings(uuid)

Filter by one or more content UUIDs. Accepts multiple values.

localeUuids[eq]Array of strings(uuid)

Filter by one or more locale 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/tags/{tagUuid}/contents?uuids%5Beq%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&localeUuids%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 tag content.

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

Unique identifier for this tag content.

items[].​tagUuidstring(uuid)required

Identifier of the tag this content belongs to.

items[].​localeUuidstring(uuid)required

Identifier of the locale this content is localized for.

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

Timestamp when this tag content was created.

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

Timestamp when this tag content was last modified.

Example: "2025-11-23T14:15:22.123456Z"
items[].​labelstringrequired

Localized display label for the tag.

items[].​descriptionstring or null

Localized description of the tag.

paginationobject(PaginationResult)required
pagination.​pageinteger(int32)required
pagination.​sizeinteger(int32)required
pagination.​totalItemsinteger(int32)required
pagination.​totalPagesinteger(int32)required
Response
application/json
[ { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "New Arrival", "description": "Recently added products" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "Neuheit", "description": "Kürzlich hinzugefügte Produkte" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "Nouveauté", "description": "Produits récemment ajoutés" } ]

Create tag content

Request

Creates localized content for a tag.

Security
Bearer
Path
tagUuidstring(uuid)required

Unique identifier of the tag.

Bodyapplication/jsonrequired
localeUuidstring(uuid)required

Identifier of the locale for this content.

labelstring[ 1 .. 100 ] charactersrequired

Localized display label for the tag.

descriptionstring or null[ 1 .. 500 ] characters

Localized description of the tag.

curl -i -X POST \
  'https://docs.apiera.io/_mock/openapi/v1/tags/{tagUuid}/contents' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "localeUuid": "e9531088-cebd-4160-a71a-7d6c2df110a2",
    "label": "string",
    "description": "string"
  }'

Responses

Tag content created successfully.

Bodyapplication/json
uuidstring(uuid)required

Unique identifier for this tag content.

tagUuidstring(uuid)required

Identifier of the tag this content belongs to.

localeUuidstring(uuid)required

Identifier of the locale this content is localized for.

createdAtstring(date-time)required

Timestamp when this tag content was created.

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

Timestamp when this tag content was last modified.

Example: "2025-11-23T14:15:22.123456Z"
labelstringrequired

Localized display label for the tag.

descriptionstring or null

Localized description of the tag.

Response
application/json
{ "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "On Sale", "description": "Products currently on sale or promotion" }

Bulk create tag contents

Request

Creates multiple localized content entries for a tag in a single operation.

Security
Bearer
Path
tagUuidstring(uuid)required

Unique identifier of the tag.

Bodyapplication/jsonrequiredArray [
localeUuidstring(uuid)required

Identifier of the locale for this content.

labelstring[ 1 .. 100 ] charactersrequired

Localized display label for the tag.

descriptionstring or null[ 1 .. 500 ] characters

Localized description of the tag.

]
curl -i -X POST \
  'https://docs.apiera.io/_mock/openapi/v1/tags/{tagUuid}/contents/bulk' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '[
    {
      "localeUuid": "e9531088-cebd-4160-a71a-7d6c2df110a2",
      "label": "string",
      "description": "string"
    }
  ]'

Responses

Tag contents created successfully.

Bodyapplication/jsonArray [
uuidstring(uuid)required

Unique identifier for this tag content.

tagUuidstring(uuid)required

Identifier of the tag this content belongs to.

localeUuidstring(uuid)required

Identifier of the locale this content is localized for.

createdAtstring(date-time)required

Timestamp when this tag content was created.

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

Timestamp when this tag content was last modified.

Example: "2025-11-23T14:15:22.123456Z"
labelstringrequired

Localized display label for the tag.

descriptionstring or null

Localized description of the tag.

]
Response
application/json
[ { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "Best Seller", "description": "Top selling products" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "Bestseller", "description": "Meistverkaufte Produkte" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "Meilleures ventes", "description": "Produits les plus vendus" } ]

Bulk update tag contents

Request

Updates multiple localized content entries in a single operation.

Security
Bearer
Path
tagUuidstring(uuid)required

Unique identifier of the tag.

Bodyapplication/jsonrequiredArray [
uuidstring(uuid)required

Identifier of the tag content to update.

labelstring or null[ 1 .. 100 ] characters

Updated localized display label.

descriptionstring or null[ 1 .. 500 ] characters

Updated localized description.

]
curl -i -X PATCH \
  'https://docs.apiera.io/_mock/openapi/v1/tags/{tagUuid}/contents/bulk' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '[
    {
      "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
      "label": "string",
      "description": "string"
    }
  ]'

Responses

Tag contents updated successfully.

Bodyapplication/jsonArray [
uuidstring(uuid)required

Unique identifier for this tag content.

tagUuidstring(uuid)required

Identifier of the tag this content belongs to.

localeUuidstring(uuid)required

Identifier of the locale this content is localized for.

createdAtstring(date-time)required

Timestamp when this tag content was created.

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

Timestamp when this tag content was last modified.

Example: "2025-11-23T14:15:22.123456Z"
labelstringrequired

Localized display label for the tag.

descriptionstring or null

Localized description of the tag.

]
Response
application/json
[ { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-23T15:45:00.000000Z", "label": "Top Seller" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-23T15:45:00.000000Z", "label": "Top-Verkäufer" } ]

Get tag content

Request

Retrieves a single localized content entry for a tag.

Security
Bearer
Path
tagUuidstring(uuid)required

Unique identifier of the tag.

tagContentUuidstring(uuid)required

Unique identifier of the tag content.

curl -i -X GET \
  'https://docs.apiera.io/_mock/openapi/v1/tags/{tagUuid}/contents/{tagContentUuid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Successfully retrieved tag content.

Bodyapplication/json
uuidstring(uuid)required

Unique identifier for this tag content.

tagUuidstring(uuid)required

Identifier of the tag this content belongs to.

localeUuidstring(uuid)required

Identifier of the locale this content is localized for.

createdAtstring(date-time)required

Timestamp when this tag content was created.

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

Timestamp when this tag content was last modified.

Example: "2025-11-23T14:15:22.123456Z"
labelstringrequired

Localized display label for the tag.

descriptionstring or null

Localized description of the tag.

Response
application/json
{ "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "label": "New Arrival", "description": "Recently added products" }

Update tag content

Request

Updates localized content for a tag. Only provided fields are updated.

Security
Bearer
Path
tagUuidstring(uuid)required

Unique identifier of the tag.

tagContentUuidstring(uuid)required

Unique identifier of the tag content.

Bodyapplication/jsonrequired
labelstring or null[ 1 .. 100 ] characters

Updated localized display label.

descriptionstring or null[ 1 .. 500 ] characters

Updated localized description.

curl -i -X PATCH \
  'https://docs.apiera.io/_mock/openapi/v1/tags/{tagUuid}/contents/{tagContentUuid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "label": "string",
    "description": "string"
  }'

Responses

Tag content updated successfully.

Bodyapplication/json
uuidstring(uuid)required

Unique identifier for this tag content.

tagUuidstring(uuid)required

Identifier of the tag this content belongs to.

localeUuidstring(uuid)required

Identifier of the locale this content is localized for.

createdAtstring(date-time)required

Timestamp when this tag content was created.

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

Timestamp when this tag content was last modified.

Example: "2025-11-23T14:15:22.123456Z"
labelstringrequired

Localized display label for the tag.

descriptionstring or null

Localized description of the tag.

Response
application/json
{ "uuid": "aaa11111-e89b-12d3-a456-426614174001", "tagUuid": "123e4567-e89b-12d3-a456-426614174001", "localeUuid": "bbb22222-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-23T15:45:00.000000Z", "label": "Top Seller", "description": "Our most popular products this season" }

Delete tag content

Request

Permanently deletes localized content for a tag.

Security
Bearer
Path
tagUuidstring(uuid)required

Unique identifier of the tag.

tagContentUuidstring(uuid)required

Unique identifier of the tag content.

curl -i -X DELETE \
  'https://docs.apiera.io/_mock/openapi/v1/tags/{tagUuid}/contents/{tagContentUuid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Tag content deleted successfully.

Response
No content

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

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