v1

latestOpenAPI 3.0.1Licensed under Uberall2026-08-0629353914.0 MB
Custom Items

Create a Custom Item

Create a custom item. It can be added to a content list later

post/custom-items

Request body

titlestring required

mandatory, the custom name, e.g. 'Strong Coffee'

descriptionstring
identifierstring
listNamestring
idinteger

The uberall unique id for the custom item

priceinteger

optional, the price of the custom, e.g. 1500 ( i.e. 15,00 EUR )

currencyobject

optional, indicating the currency for price and priceMax in ISO-4217, e.g. EUR

categorystring

optional, a category name, e.g. 'Coffee'

unitstring

optional, indicating the unit of measure, e.g. 'per kg'

urlstring

optional, a url related to the custom item

priceMaxinteger

optional, indicating there is a price range, e.g. 2500 ( i.e. 25,00 EUR )

Example request

{
  "category": "Coffee",
  "unit": "per kg"
}

Response

Successfully created custom item

status'SUCCESS' | 'PENDING' | 'QUOTA_LIMIT_EXCEED' | 'NOT_AUTHORIZED' | 'FORBIDDEN' | 'BAD_ACCESS_TOKEN' | 'BAD_PRIVATE_KEY' | 'BAD_PUBLIC_KEY' | 'MISSING_PARAMETER' | 'INVALID_PARAMETER' | 'WRONG_PARAMETER_TYPE' | 'CONFLICT' | 'RESOURCE_LOCKED' | 'SERVER_ERROR' | 'ERROR' | 'NOT_FOUND' | 'BAD_REQUEST' | 'USER_ERROR' | 'PARTIAL_ERROR' | 'SERVICE_TEMPORARILY_UNAVAILABLE' required
messagestring

(optional) Holds further information about the response

warningsstring[]

(optional) Holds further warnings

Example response

{
  "response": {
    "customItem": {
      "category": "Coffee",
      "unit": "per kg"
    }
  }
}