Update a shipment event

📄 Technical specifications

The Consignee is not allowed to update this resource.

Update a shipment event

put

Update a shipment event

Authorizations
Path parameters
idstringRequired
Body
shipmentstring · uuidRequired
etaany | nullableRequired
ataany | nullableRequired
commentstring | nullableRequired
typestring · enumRequiredPossible values:
Responses
200Success
application/json
put
PUT /shipment-event/{id} HTTP/1.1
Host: api.one-record.fr
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 107

{
  "shipment": "123e4567-e89b-12d3-a456-426614174000",
  "eta": null,
  "ata": null,
  "comment": "text",
  "type": "ARRIVAL"
}
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "shipment": "123e4567-e89b-12d3-a456-426614174000",
  "type": "ARRIVAL",
  "eta": null,
  "ata": null,
  "comment": "text",
  "createdAt": null,
  "updatedAt": null
}

Last updated