The Apiera REST API provides programmatic access to the Apiera platform, enabling seamless integration with your existing systems and workflows.
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 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/attributes/{attributeUuid}/terms
- http://localhost:5281/v1/attributes/{attributeUuid}/terms
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms?name%5Beq%5D=string&name%5Bcontains%5D=string&name%5Bstarts%5D=string&name%5Bends%5D=string&name%5Border%5D=string&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
List of allowed brand values
[ { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "attributeUuid": "123e4567-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "name": "Apple" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "attributeUuid": "123e4567-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "name": "Samsung" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "attributeUuid": "123e4567-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "name": "Sony" }, { "uuid": "aaa11111-e89b-12d3-a456-426614174001", "attributeUuid": "123e4567-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "name": "LG" } ]
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms
- http://localhost:5281/v1/attributes/{attributeUuid}/terms
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string"
}'Response
application/json
New allowed brand value
{ "uuid": "aaa11111-e89b-12d3-a456-426614174001", "attributeUuid": "123e4567-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "name": "Apple" }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms/{termUuid}
- http://localhost:5281/v1/attributes/{attributeUuid}/terms/{termUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms/{termUuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "uuid": "aaa11111-e89b-12d3-a456-426614174001", "attributeUuid": "123e4567-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-20T08:15:00.000000Z", "name": "Apple" }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms/{termUuid}
- http://localhost:5281/v1/attributes/{attributeUuid}/terms/{termUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms/{termUuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string"
}'Response
application/json
Term with modified name
{ "uuid": "aaa11111-e89b-12d3-a456-426614174001", "attributeUuid": "123e4567-e89b-12d3-a456-426614174001", "createdAt": "2025-11-20T08:15:00.000000Z", "updatedAt": "2025-11-23T15:45:00.000000Z", "name": "Space Gray" }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms/{termUuid}
- http://localhost:5281/v1/attributes/{attributeUuid}/terms/{termUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.apiera.io/_mock/openapi/v1/attributes/{attributeUuid}/terms/{termUuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'