v1
latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KBContainers|Container inquiry
Create/Update container inquirys.
This method can be used to create and update container inquirys.
An effort is made to locate an existing container inquiry using the selected primary key. If found, it will be modified, whereas if no container inquiry is found, a new one is created. If the deleteMissing flag is set to true, all container inquirys absent from the request shall be purged. Please note that removed container inquirys may not be reinstated. You can enable the dryRun setting to simulate the action without altering any live data.
post/container_inquiry/upsert
Request body
Example request
{
"records": [
{
"data": {
"latLng": [
52.38127828631681,
7.594243214018696
],
"targetDateTime": "2015-02-20T12:59:21+01:00"
}
}
]
}Response
Success Response:
Example response
{
"createdContainerInquiries": [
{
"latLng": [
52.38127828631681,
7.594243214018696
],
"targetDateTime": "2015-02-20T12:59:21+01:00"
}
],
"updatedContainerInquiries": [
{
"latLng": [
52.38127828631681,
7.594243214018696
],
"targetDateTime": "2015-02-20T12:59:21+01:00"
}
],
"deletedContainerInquiries": [
{
"latLng": [
52.38127828631681,
7.594243214018696
],
"targetDateTime": "2015-02-20T12:59:21+01:00"
}
]
}