The Apiera REST API provides programmatic access to the Apiera platform, enabling seamless integration with your existing systems and workflows.
Organization Members
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
Product Terms
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
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/organizations/current/members
- http://localhost:5281/v1/organizations/current/members
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.apiera.io/_mock/openapi/v1/organizations/current/members?page=1&size=20' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "items": [ { … } ], "pagination": { "page": 0, "size": 0, "totalItems": 0, "totalPages": 0 } }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/organizations/current/members
- http://localhost:5281/v1/organizations/current/members
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.apiera.io/_mock/openapi/v1/organizations/current/members \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"accountUuid": "0ef9c2ec-a65c-4311-aee8-decdbb35014b",
"roleUuid": "e343d0c5-cc56-4f04-bed4-3ed344d37f3b"
}'Response
application/json
{ "organizationUuid": "bc554ded-7e40-44a7-b397-48480793ad03", "accountUuid": "0ef9c2ec-a65c-4311-aee8-decdbb35014b", "roleUuid": "e343d0c5-cc56-4f04-bed4-3ed344d37f3b", "createdAt": "2025-11-23T14:15:22.123456Z", "updatedAt": "2025-11-23T14:15:22.123456Z", "removedAt": "2025-11-23T14:15:22.123456Z", "status": "active", "isOwner": true }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}
- http://localhost:5281/v1/organizations/current/members/{accountUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "organizationUuid": "bc554ded-7e40-44a7-b397-48480793ad03", "accountUuid": "0ef9c2ec-a65c-4311-aee8-decdbb35014b", "roleUuid": "e343d0c5-cc56-4f04-bed4-3ed344d37f3b", "createdAt": "2025-11-23T14:15:22.123456Z", "updatedAt": "2025-11-23T14:15:22.123456Z", "removedAt": "2025-11-23T14:15:22.123456Z", "status": "active", "isOwner": true }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}
- http://localhost:5281/v1/organizations/current/members/{accountUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}/role
- http://localhost:5281/v1/organizations/current/members/{accountUuid}/role
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}/role' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"organizationRoleUuid": "43be884b-80d7-4f40-9706-da2b6d65cee6"
}'Response
application/json
{ "organizationUuid": "bc554ded-7e40-44a7-b397-48480793ad03", "accountUuid": "0ef9c2ec-a65c-4311-aee8-decdbb35014b", "roleUuid": "e343d0c5-cc56-4f04-bed4-3ed344d37f3b", "createdAt": "2025-11-23T14:15:22.123456Z", "updatedAt": "2025-11-23T14:15:22.123456Z", "removedAt": "2025-11-23T14:15:22.123456Z", "status": "active", "isOwner": true }
- Mock serverhttps://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}/actions/lifecycle
- http://localhost:5281/v1/organizations/current/members/{accountUuid}/actions/lifecycle
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.apiera.io/_mock/openapi/v1/organizations/current/members/{accountUuid}/actions/lifecycle' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"transition": "activate"
}'Response
application/json
{ "organizationUuid": "bc554ded-7e40-44a7-b397-48480793ad03", "accountUuid": "0ef9c2ec-a65c-4311-aee8-decdbb35014b", "roleUuid": "e343d0c5-cc56-4f04-bed4-3ed344d37f3b", "createdAt": "2025-11-23T14:15:22.123456Z", "updatedAt": "2025-11-23T14:15:22.123456Z", "removedAt": "2025-11-23T14:15:22.123456Z", "status": "active", "isOwner": true }