Shipments Configuration (Operations)

Endpoints to create, update and read shipping configuration.

Get delivery note config

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
chevron-right
200

Delivery note configuration was found & you were allowed to access it. The result is in the body.

application/json

DeliveryNoteConfiguration

get
/api/configurations/deliverynote

Update delivery note config

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

DeliveryNoteConfigurationForUpsert

versionnumberRequired

Version field is used in the optimistic locking process. If the configuration doesn't exists, this field is ignored.

Example: 1
Responses
chevron-right
200

Delivery note configuration was successfully updated

application/json

DeliveryNoteConfiguration

put
/api/configurations/deliverynote

Get return note config

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
chevron-right
200

Return note config could be found in response body.

application/json

Return Note Configuration

get
/api/configurations/returnnote

Update return note config

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

ReturnNoteConfigurationForUpsert

displayPageLabelbooleanOptional

Determines if the page label should be shown

Default: false
versioninteger · int64Required

The version of the document to be used in optimistic locking mechanisms.

Example: 42
Responses
chevron-right
200

The return note configuration was successfully updated.

application/json

Return Note Configuration

put
/api/configurations/returnnote

Get parcel tag config

get

This part of the API is in Beta status. For details please check the api-release-life-cycle documentationarrow-up-right. Returns the tag configuration for parcels

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
chevron-right
200

tag config is in response body.

application/json

ParcelTagConfiguration

and
get
/api/configurations/tags/parcel

Update parcel tag config

put

This part of the API is in Beta status. For details please check the api-release-life-cycle documentationarrow-up-right. Updates the tag configuration for parcels.

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

ParcelTagConfigurationForUpsert

Responses
chevron-right
200

The tag configuration was successfully updated.

application/json

ParcelTagConfiguration

and
put
/api/configurations/tags/parcel

Last updated