Custom Schema Type
Retrieves all custom schema types.
Your Emporix tenant's name.
Note: Always write the tenant name in lowercase.
^[a-z][a-z0-9]+$
Page number to be retrieved. The number of the first page is 1.
1
Number of items to be retrieved per page.
60
List of properties used to sort the results, separated by colons. The order of properties indicates their priority in sorting.
Possible values:
{fieldName}
{fieldName}:asc
{fieldName}:desc
Note: If you want to sort the results by localized properties, the possible values are:
{fieldName}.{language}
{fieldName}.{language}:asc
{fieldName}.{language}:desc
If the sorting direction is not specified, the fields are sorted in ascending order.
A standard query parameter is used to search for specific values.
- Searching for items by string-based properties:
- By a field value:
q=siteCode:main
, wheresiteCode
is the field name, andmain
is its desired value. - By a localized field value:
q=items.product.name.en:apple_lobo
, wherename
is the field name of product,en
is the language code, andapple_lobo
is the field value expressed in the specified language. Note: This query works only for localized fields, which are stored in a map format, wherekey
is the language code andvalue
is the translation to particular language.
- By a field value:
- Searching for items by a number-based property:
- With a specific value:
q=items.quantity.quantity:20
- With a value greater than:
q=items.quantity.quantity:>20
- With a value lower than:
q=items.quantity.quantity:<20
- With a value greater than or equal to:
q=items.quantity.quantity:>=20
- With a value lower than or equal to:
q=items.quantity.quantity:<=20
- With a value within a range of values:
q=items.quantity.quantity:(>=10 AND <=20)
whereitems.quantity.quantity
is the name of the number-based field, and20
is its querying value.
- With a specific value:
- Searching for items by a date-based property: All number-based property queries are also valid for dates. In that case, the date should be placed within double quotes:
q=metadataCreatedAt:(>="2021-05-18T07:27:27.455Z" AND <"2021-05-20T07:27:27.455Z")
- Searching for items by a boolean-based property:
q=description.multiLanguage:true
, wheredescription.multiLanguage
is the boolean field name, andtrue
is its desired value. - Searching for items with a nonexistent or empty property:
q=description.en:null
, wheredescription.en
is the field that has its value set tonull
. - Searching for items with an existing property:
q=mixin:exists
, wheremixin
is the field that has a non-empty value. - Searching for items by multiple specific values:
q=id:(5c3325baa9812100098ff48f,5c3325d1a9812100098ff494)
, whereid
is the field name, and strings within the bracket are the desired values. - Searching for items by multiple fields:
q=id:5c3325baa9812100098ff48f siteCode:main
whereid
andsiteCode
are field names. All objects that contain the specified values are returned. Multiple fields (separated by space) can be specified. Multiple values for each field can also be specified in the format presented earlier. - Searching for items with string-based properties conforming to a regex:
q=siteCode:~ain
orq=code:(~U PL)
- in case of searching for strings with space, wheresiteCode
is the name of the field, andain
orU PL
is its querying regex. - Searching for items with a localized string-based property conforming to a regex:
items.product.name.en:~(Yoghurt im)
- wherename
is the product field name,en
is the desired language, andJoghurt im
is the search term.
siteCode:{main}
Fields to be included in the response.
Determines whether the response will include information about associated schemas.
false
Flag indicating whether the total number of retrieved items should be returned.
false
Example: true
List of language codes acceptable for the response. You can specify factors that indicate which language should be retrieved if the one with a higher factor was not found in the localized fields. If a value is specified, then it must be present in the tenant configuration.
- If the header is set to a particular language or a list of languages, all localized fields are retrieved as strings.
- If the header is set to
*
, all localized fields are retrieved as maps of translations, where the keys are language codes and values are the fields in their respective languages. - If the header is empty, localized fields are retrieved in the default language defined in the Configuration Service.
GET /schema/{tenant}/custom-entities HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"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
}
}
]
Your Emporix tenant's name.
Note: Always write the tenant name in lowercase.
^[a-z][a-z0-9]+$
The Content-Language request HTTP header defines language(s) of the payload.
de
Unique code for the custom type. Can only contain uppercase letters and underscores.
Localized custom type name in a form of a map of translations.
POST /schema/{tenant}/custom-entities HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 59
{
"id": "CUSTOM_PRODUCT",
"name": {
"en": "Custom Product Type"
}
}
{
"id": "CUSTOM_PRODUCT"
}
Retrieves a single custom schema type by id.
Your Emporix tenant's name.
Note: Always write the tenant name in lowercase.
^[a-z][a-z0-9]+$
Unique id of the custom type.
Determines whether the response will include information about associated schemas.
false
List of language codes acceptable for the response. You can specify factors that indicate which language should be retrieved if the one with a higher factor was not found in the localized fields. If a value is specified, then it must be present in the tenant configuration.
- If the header is set to a particular language or a list of languages, all localized fields are retrieved as strings.
- If the header is set to
*
, all localized fields are retrieved as maps of translations, where the keys are language codes and values are the fields in their respective languages. - If the header is empty, localized fields are retrieved in the default language defined in the Configuration Service.
GET /schema/{tenant}/custom-entities/{id} HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"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
}
}
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 type
Your Emporix tenant's name.
Note: Always write the tenant name in lowercase.
^[a-z][a-z0-9]+$
Unique id of the custom type.
The Content-Language request HTTP header defines language(s) of the payload.
de
Localized custom type name in a form of a map of translations.
PUT /schema/{tenant}/custom-entities/{id} HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 62
{
"name": {
"en": "Updated Custom Type"
},
"metadata": {
"version": 1
}
}
{
"id": "CUSTOM_PRODUCT"
}
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 type
Your Emporix tenant's name.
Note: Always write the tenant name in lowercase.
^[a-z][a-z0-9]+$
Unique id of the custom type.
DELETE /schema/{tenant}/custom-entities/{id} HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
No content
Was this helpful?