Operative Container (Operations)

Endpoints to manipulate operative containers.

List operative container types

get

Returns all operativeContainerTypes that match the given query parameters.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
startAfterIdstringOptional

entity to start after

sizeinteger · min: 1 · max: 500Optional

number of entities to show

Default: 25
operativeTypestringOptional

OperativeType you want to filter by

scannableIdentifierstringOptional

ScannableIdentifier you want to filter by

localestringOptional

Provide the localized names and descriptions for the operativContainerType. If not provided the default locale is used., for example de_DE.

Responses
chevron-right
200

Found operativeProcess by given ID

application/json

OperativeContainerTypesResponse

totalintegerOptional

Total number of found entities for this query

Example: 42
get
/api/operativecontainertypes

Create operative container type

post

Creates a new operativeContainerType.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

OperativeContainerTypeForCreation

customAttributesobjectOptional

Attributes that can be added to the operativeContainerType. These attributes cannot be used within fulfillment processes, but it could be useful to have the informations carried here.

iconUrlstringOptional
priorityinteger · int32 · min: 1 · max: 10000Optional

This value gives the priority of the respective operativeContainerType. The lower the value the higher is the priority, e.g. priority 1 is higher than priority 10. The priority can be used to order packingContainerTypes in the UI.

Example: 100
weightLimitInGnumber · min: 1Optional

Maximal weight in gramm(gr) the container can be loaded with.

Example: 2500
Responses
post
/api/operativecontainertypes

Get operative container type

get

Returns the operativeContainerType with the given ID.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
operativeContainerTypeIdstringRequired

id of the operativeContainer you want to retrieve

Query parameters
localestringOptional

Provide the localized names and descriptions for the operativeContainerTypes. If not provided the default locale is used., for example de_DE.

Responses
chevron-right
200

Found operativeContainerType by given ID

application/json

OperativeContainerType

get
/api/operativecontainertypes/{operativeContainerTypeId}

Update operative container type

patch

Updates the operativeContainerType with the given ID.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
operativeContainerTypeIdstringRequired

id of the operativeContainer you want to update

Body

OperativeContainerTypeForUpdate

customAttributesobjectOptional

Attributes that can be added to the operativeContainerTypes. These attributes cannot be used within fulfillment processes, but it could be useful to have the informations carried here.

iconUrlstringOptional
priorityinteger · int32 · min: 1 · max: 10000Optional

This value gives the priority of the respective operativeContainerType. The lower the value the higher is the priority, e.g. priority 1 is higher than priority 10. The priority can be used to order packingContainerTypes in the UI.

Example: 100
versioninteger · min: 1Required
weightLimitInGnumber · min: 1Optional

Maximal weight in gramm(gr) the container can be loaded with.

Example: 2500
Responses
chevron-right
200

Found operativeContainerType by given ID

application/json

OperativeContainerType

patch
/api/operativecontainertypes/{operativeContainerTypeId}

Update operative container type icon

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
operativeContainerTypeIdstringRequired
Body

NamedFile

contentstringRequired

File content base64 encoded

Example: JVBERi0xLjEKJcKlwrHDqwoKMSAwIG9iagogIDw8IC9UeXBlIC9DYXRhbG9nCiAgICAgL1BhZ2VzIDIgMCBSCiAgPj4KZW5kb2JqCgoyIDAgb2JqCiAgPDwgL1R5cGUgL1BhZ2VzCiAgICAgL0tpZHMgWzMgMCBSXQogICAgIC9Db3VudCAxCiAgICAgL01lZGlhQm94IFswIDAgMzAwIDE0NF0KICA+PgplbmRvYmoKCjMgMCBvYmoKICA8PCAgL1R5cGUgL1BhZ2UKICAgICAgL1BhcmVudCAyIDAgUgogICAgICAvUmVzb3VyY2VzCiAgICAgICA8PCAvRm9udAogICAgICAgICAgIDw8IC9GMQogICAgICAgICAgICAgICA8PCAvVHlwZSAvRm9udAogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTEKICAgICAgICAgICAgICAgICAgL0Jhc2VGb250IC9UaW1lcy1Sb21hbgogICAgICAgICAgICAgICA+PgogICAgICAgICAgID4+CiAgICAgICA+PgogICAgICAvQ29udGVudHMgNCAwIFIKICA+PgplbmRvYmoKCjQgMCBvYmoKICA8PCAvTGVuZ3RoIDU1ID4+CnN0cmVhbQogIEJUCiAgICAvRjEgMTggVGYKICAgIDAgMCBUZAogICAgKEhlbGxvIFdvcmxkKSBUagogIEVUCmVuZHN0cmVhbQplbmRvYmoKCnhyZWYKMCA1CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAwMDAxOCAwMDAwMCBuIAowMDAwMDAwMDc3IDAwMDAwIG4gCjAwMDAwMDAxNzggMDAwMDAgbiAKMDAwMDAwMDQ1NyAwMDAwMCBuIAp0cmFpbGVyCiAgPDwgIC9Sb290IDEgMCBSCiAgICAgIC9TaXplIDUKICA+PgpzdGFydHhyZWYKNTY1CiUlRU9GCg==
namestringRequired

File name with extension

Example: example.pdf
Responses
chevron-right
200

Successfully updated operative container type icon.

application/json

OperativeContainerType

put
/api/operativecontainertypes/{operativeContainerTypeId}/icon

Last updated