Download OpenAPI specification:Download
Manage the mixins schemas for miscellaneous types.
Key Features
Key Benefits
Creates a schema entity and generates json-schema representation which is then uploaded to cloudinary repository.
schema.schema_manage
- required for creating a schemaThe request was successful. The Schema has been created.
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Conflict.
{- "name": {
- "en": "Product Custom Attributes"
}, - "types": [
- "PRODUCT"
], - "attributes": [
- {
- "key": "weight",
- "name": {
- "en": "Weight of a product"
}, - "description": {
- "en": "The exact weight of a product in grams."
}, - "type": "TEXT",
- "metadata": {
- "readOnly": true,
- "required": true
}
}, - {
- "key": "size",
- "name": {
- "en": "Size of a product"
}, - "description": {
- "en": "The exact size of a product. Possible values are S, M, L."
}, - "type": "ENUM",
- "metadata": {
- "readOnly": true,
- "required": true
}, - "values": [
- {
- "value": "S"
}, - {
- "value": "M"
}, - {
- "value": "L"
}
]
}, - {
- "key": "advertisement",
- "name": {
- "en": "Advertisement of a product"
}, - "description": {
- "en": "A localized advertisement of a product."
}, - "type": "TEXT",
- "metadata": {
- "localized": true,
- "required": true
}
}
]
}
{- "id": "e241dc9e-a3f6-4573-bb01-a8ae21d2d4ae"
}
Retrieves all schemas. You can filter the results with query parameters.
Unsupported language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- {
- "id": "64d35aa7fa54121ca47db657",
- "name": {
- "en": "Product Custom Attributes"
}, - "attributes": [
- {
- "key": "weight",
- "name": {
- "en": "Weight of a product"
}, - "description": {
- "en": "The exact weight of a product in grams."
}, - "type": "NUMBER",
- "metadata": {
- "readOnly": true,
- "localized": false,
- "required": true
}
}
], - "types": [
- "PRODUCT"
], - "metadata": {
- "version": 1,
- "createdAt": "2023-08-09T09:21:42.693Z",
- "modifiedAt": "2023-08-09T09:21:42.693Z",
}
}
]
Retrieves a single schema.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
{- "id": "64d35aa7fa54121ca47db657",
- "name": {
- "en": "Product Custom Attributes"
}, - "attributes": [
- {
- "key": "weight",
- "name": {
- "en": "Weight of a product"
}, - "description": {
- "en": "The exact weight of a product in grams."
}, - "type": "NUMBER",
- "metadata": {
- "readOnly": true,
- "localized": false,
- "required": true
}
}
], - "types": [
- "PRODUCT"
], - "metadata": {
- "version": 1,
- "createdAt": "2023-08-09T09:21:42.693Z",
- "modifiedAt": "2023-08-09T09:21:42.693Z",
}
}
Deletes a single schema. It deletes just a database entry. The cloudinary reference file remains untouched.
Required scopes
schema.schema_manage
No content
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
{- "fault": {
- "faultstring": "Invalid Access Token",
- "detail": {
- "errorcode": "keymanagement.service.invalid_access_token"
}
}
}
Updates a single schema. Each update releases a new version of json schema file.
Required scopes
schema.schema_manage
No content
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
Conflict.
{- "name": {
- "en": "Product Custom Attributes"
}, - "types": [
- "PRODUCT"
], - "attributes": [
- {
- "key": "weight",
- "name": {
- "en": "Weight of a product"
}, - "description": {
- "en": "The exact weight of a product in grams."
}, - "type": "TEXT",
- "metadata": {
- "readOnly": true,
- "required": true
}
}, - {
- "key": "size",
- "name": {
- "en": "Size of a product"
}, - "description": {
- "en": "The exact size of a product. Possible values are S, M, L."
}, - "type": "ENUM",
- "metadata": {
- "readOnly": true,
- "required": true
}, - "values": [
- {
- "value": "S"
}, - {
- "value": "M"
}, - {
- "value": "L"
}
]
}, - {
- "key": "advertisement",
- "name": {
- "en": "Advertisement of a product"
}, - "description": {
- "en": "A localized advertisement of a product."
}, - "type": "TEXT",
- "metadata": {
- "localized": true,
- "required": true
}
}
], - "metadata": {
- "version": 1
}
}
{- "code": 400,
- "status": "Bad Request",
- "message": "Language header validation failed.",
- "details": [
- {
- "message": "Following languages are not supported: 'ru'"
}
]
}
Validates and parses provided json schema file. When the file is valid, it returns a json which can be used either to create a new schema via POST operation or to update an existing one via PUT operation when all the missing fields are provided. It doesn't create any file and it doesn't crease a database entity.
The request was successful. The file was validated and parsed correctly.
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
{- "id": "64d35aa7fa54121ca47db657",
- "name": {
- "en": "Product Custom Attributes"
}, - "attributes": [
- {
- "key": "weight",
- "type": "NUMBER",
- "metadata": {
- "readOnly": true,
- "localized": false,
- "required": true
}
}
], - "metadata": {
- "version": 1
}
}
Updates assigned types to the schema. It's allowed to change the assigned types to the newest schema as well as to the previous versions of the schema. This operation does not generate a new version of the schema.
Required scopes
schema.schema_manage
Type which the schema should be assigned to. Can be one of the predefined values or any custom schema type id.
No content
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
[- "PRODUCT",
- "ORDER"
]
{- "code": 400,
- "status": "Bad Request",
- "message": "Language header validation failed.",
- "details": [
- {
- "message": "Following languages are not supported: 'ru'"
}
]
}
Retrieves types which have at least one schema assigned.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- "ORDER",
- "PRODUCT",
- "QUOTE"
]
Creates a reference entity and uploads provided file to the cloudinary repository.
schema.schema_manage
- required for creating a referenceThe request was successful. The Reference has been created.
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Conflict.
{ "file": { "externalValue": "https://res.cloudinary.com/saas-ag/raw/upload/schemata2/saastest2/653a30c0951b2b0665884f89_v1.json" }, "body": { "name": { "en": "Product Custom Attributes" }, "types": [ "PRODUCT" ] } }
{- "id": "e241dc9e-a3f6-4573-bb01-a8ae21d2d4ae"
}
Retrieves all references. You can filter the results with query parameters.
Unsupported language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- {
- "id": "64d35aa7fa54121ca47db657",
- "name": {
- "en": "Product Custom Attributes"
}, - "types": [
- "PRODUCT"
], - "metadata": {
- "version": 1,
- "createdAt": "2023-08-09T09:21:42.693Z",
- "modifiedAt": "2023-08-09T09:21:42.693Z",
}
}
]
Retrieves a single reference.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
{- "id": "64d35aa7fa54121ca47db657",
- "name": {
- "en": "Product Custom Attributes"
}, - "types": [
- "PRODUCT"
], - "metadata": {
- "version": 1,
- "createdAt": "2023-08-09T09:21:42.693Z",
- "modifiedAt": "2023-08-09T09:21:42.693Z",
}
}
Deletes a single reference. It deletes just a database entry. The cloudinary reference file remains untouched.
Required scopes
schema.schema_manage
No content
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
{- "fault": {
- "faultstring": "Invalid Access Token",
- "detail": {
- "errorcode": "keymanagement.service.invalid_access_token"
}
}
}
Updates a single reference.
Required scopes
schema.schema_manage
No content
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
Conflict.
{ "file": { "externalValue": "https://res.cloudinary.com/saas-ag/raw/upload/schemata2/saastest2/653a30c0951b2b0665884f89_v1.json" }, "body": { "name": { "en": "Product Custom Attributes" }, "types": [ "PRODUCT" ], "metadata": { "version": 1 } } }
{- "code": 400,
- "status": "Bad Request",
- "message": "Language header validation failed.",
- "details": [
- {
- "message": "Following languages are not supported: 'ru'"
}
]
}
Creates a custom type entity that can be later used for creating custom instances.
schema.schema_manage
- required for creating a custom schema typeThe request was successful. Custom schema type has been created.
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Conflict.
{- "id": "CUSTOM_PRODUCT",
- "name": {
- "en": "Custom Product Type"
}
}
{- "id": "CUSTOM_PRODUCT"
}
Retrieves all custom schema types.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- {
- "id": "CUSTOM_PRODUCT",
- "name": {
- "en": "Custom Product Type"
}, - "metadata": {
- "createdAt": "2023-08-09T09:21:42.693Z",
- "modifiedAt": "2023-08-09T09:21:42.693Z",
- "version": 1
}
}, - {
- "code": "DOCUMENT",
- "name": {
- "en": "Documents"
}, - "metadata": {
- "createdAt": "2023-08-10T10:15:30.123Z",
- "modifiedAt": "2023-08-19T10:15:30.123Z",
- "version": 2
}
}
]
Retrieves a single custom schema type by id.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
{- "id": "CUSTOM_PRODUCT",
- "name": {
- "en": "Custom Product Type"
}, - "metadata": {
- "createdAt": "2023-08-09T09:21:42.693Z",
- "modifiedAt": "2023-08-09T09:21:42.693Z",
- "version": 1
}
}
Deletes a single custom type. This operation will fail if there are schemas or custom instances assigned to this custom type.
Required scopes
schema.schema_manage
- required for removing custom schema typeCustom schema type was succefully removed
Bad request. This may happen when there are schemas or custom instances associated with this custom type.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
{- "code": 400,
- "status": "Bad Request",
- "message": "Cannot delete custom schema type='CUSTOM_DOCUMENT' because there are custom entities associated with this type."
}
Performs the UPSERT
operation. If a custom schema type with specified ID exists in the system, then it is updated. If it doesn't exist, a new type is created.
Required scopes
schema.schema_manage
- required for upserting custom schema typeCustom schema type was successfully created.
Custom schema type was successfully updated.
Unsupported content language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Version validation failed.
{- "name": {
- "en": "Updated Custom Type"
}, - "metadata": {
- "version": 1
}
}
{- "id": "CUSTOM_PRODUCT"
}
Creates a custom instance entity associated with given custom schema type.
schema.custominstance_manage
- required for creating a custom instanceCustom instance was successfully created.
Mixins validation failed.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Conflict.
{- "id": "123",
- "name": {
- "en": "Report"
}, - "mixins": {
- "productCustomAttributes": {
- "inStock": true,
- "popularity": 1
}
}, - "metadata": {
- "mixins": {
- "productCustomAttributes": "https://res.cloudinary.com/saas-ag/raw/upload/schemata/CAAS/productCustomAttributesMixIn-v38.json"
}
}
}
{- "id": "123"
}
Retrieves all custom instances associated with a specific custom schema type.
schema.custominstance_read
- required for retrieving custom instancesUnsupported language provided.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- {
- "id": "123",
- "name": {
- "en": "Report"
}, - "type": "CUSTOM_DOCUMENT",
- "mixins": {
- "mixins": {
- "productCustomAttributes": {
- "inStock": true,
- "populatirty": 1
}
}
}, - "metadata": {
- "mixins": {
- "productCustomAttributes": "https://res.cloudinary.com/saas-ag/raw/upload/schemata/CAAS/productCustomAttributesMixIn-v38.json"
}, - "createdAt": "2025-04-17T13:00:00.000Z",
- "modifiedAt": "2025-05-14T13:00:00.000Z",
- "version": 3
}
}, - {
- "id": "456",
- "name": {
- "en": "Manual"
}, - "type": "CUSTOM_DOCUMENT",
- "metadata": {
- "createdAt": "2025-04-17T13:00:00.000Z",
- "modifiedAt": "2025-04-17T13:00:00.000Z",
- "version": 1
}
}
]
Retrieves a single custom instance by id.
schema.custominstance_read
- required for retrieving a custom instanceGiven request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
{- "id": "123",
- "name": {
- "en": "Report"
}, - "type": "CUSTOM_DOCUMENT",
- "mixins": {
- "productCustomAttributes": {
- "inStock": true,
- "populatirty": 1
}
}, - "metadata": {
- "mixins": {
- "productCustomAttributes": "https://res.cloudinary.com/saas-ag/raw/upload/schemata/CAAS/productCustomAttributesMixIn-v38.json"
}, - "createdAt": "2025-04-17T13:00:00.000Z",
- "modifiedAt": "2025-05-14T13:00:00.000Z",
- "version": 3
}
}
Deletes a custom instance.
Required scopes
schema.custominstance_manage
No content
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
{- "fault": {
- "faultstring": "Invalid Access Token",
- "detail": {
- "errorcode": "keymanagement.service.invalid_access_token"
}
}
}
Performs the UPSERT
operation. If a custom instance with specified ID exists in the system, then it is updated. If it doesn't exist, a new custom instance is created.
Required scopes
schema.custominstance_manage
- required for upserting a custom instanceCustom instance was successfully created.
Custom instance was successfully updated
Mixins validation failed.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Conflict.
{- "name": {
- "en": "Report"
}, - "mixins": {
- "productCustomAttributes": {
- "inStock": false,
- "popularity": 2
}
}, - "metadata": {
- "mixins": {
- "productCustomAttributes": "https://res.cloudinary.com/saas-ag/raw/upload/schemata/CAAS/productCustomAttributesMixIn-v38.json"
}, - "version": 1
}
}
{- "id": "123"
}
The patch request consists of set of operation, that should be defined according to RFC-6902 standard.
Required scopes
schema.custominstance_manage
- required for patching a custom instanceCustom instance was successfully patched
Mixins validation failed.
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
Given resource cannot be found.
[- {
- "op": "replace",
- "path": "/name",
- "value": {
- "en": "New name"
}
}
]
{- "code": 400,
- "status": "Bad Request",
- "message": "There is a validation error. Please check the details..",
- "details": [
- {
- "message": "null: instance type (boolean) does not match any allowed primitive type (allowed: [\"integer\",\"number\"]): [mixins:productCustomAttributes:popularity]"
}
]
}
Returns all custom instances for provided type that match specified criteria.
schema.custominstance_read
- required for retrieving custom instancesCustom instances succesfully retrieved
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
{- "q": "mixins.productCustomAttributes.inStock:true"
}
[- {
- "id": "123",
- "name": {
- "en": "Report"
}, - "type": "CUSTOM_DOCUMENT",
- "mixins": {
- "mixins": {
- "productCustomAttributes": {
- "inStock": true,
- "populatirty": 1
}
}
}, - "metadata": {
- "mixins": {
- "productCustomAttributes": "https://res.cloudinary.com/saas-ag/raw/upload/schemata/CAAS/productCustomAttributesMixIn-v38.json"
}, - "createdAt": "2025-04-17T13:00:00.000Z",
- "modifiedAt": "2025-05-14T13:00:00.000Z",
- "version": 3
}
}
]
Creates multiple custom instances.
schema.custominstance_manage
- required for creating custom instancesBulk operation was successful
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- {
- "id": "123",
- "name": {
- "en": "Report"
}, - "mixins": {
- "productCustomAttributes": {
- "inStock": true,
- "popularity": 1
}
}, - "metadata": {
- "mixins": {
- "productCustomAttributes": "https://res.cloudinary.com/saas-ag/raw/upload/schemata/CAAS/productCustomAttributesMixIn-v38.json"
}
}
}, - {
- "id": "456",
- "name": {
- "en": "Manual"
}
}
]
[- {
- "index": 0,
- "code": 201,
- "status": "Created"
}, - {
- "index": 1,
- "code": 409,
- "status": "Conflict",
- "message": "Custom instance with id='456' already exists for type='CUSTOM'"
}
]
Upserts multiple custom instances.
schema.custominstance_manage
- required for upserting custom instancesBulk operation was successful
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- {
- "id": "123",
- "name": {
- "en": "Report"
}, - "mixins": {
- "productCustomAttributes": {
- "inStock": true,
- "popularity": 1
}
}, - "metadata": {
- "mixins": {
- "productCustomAttributes": "https://res.cloudinary.com/saas-ag/raw/upload/schemata/CAAS/productCustomAttributesMixIn-v38.json"
}
}
}, - {
- "id": "456",
- "name": {
- "en": "Manual"
}
}
]
[- {
- "index": 0,
- "code": 201,
- "status": "Created"
}, - {
- "index": 1,
- "code": 204,
- "status": "No Content"
}
]
Removes multiple custom instances.
["firstId", "secondId", "thirdId"]
schema.custominstance_manage
- required for deleting custom instancesBulk operation was successful
Given request is unauthorized - the authorization token is invalid or has expired. It usually means that the tenant from the token does not match tenant from path.
Permission denied due to insufficient rights. This may happen when the request does not contain sufficient scopes for the given query values.
[- {
- "index": 0,
- "code": 204,
- "status": "No Content"
}, - {
- "index": 1,
- "code": 204,
- "status": "No Content"
}
]