Skip to main content
PATCH
/
declarations
/
transit
/
{declarationId}
/
parties
Update transit parties
curl --request PATCH \
  --url https://devapi.eazecustoms.com/staging/declarations/transit/{declarationId}/parties \
  --header 'Authorization: Bearer <token>'
{
  "declarationId": 104,
  "status": "processing"
}
Update party details for a transit declaration. Depending on whether it is a departure or arrival declaration, you can use the corresponding endpoint and payload format:
  • Departure: PATCH /declarations/transit/{declarationId}/parties
  • Arrival: PATCH /transit-declarations/{id}/parties

Path Parameters

declarationId
number
required
The unique declaration ID.

Examples

{
  "Principal": {
    "name": "EZC B.V.",
    "eoriNo": "NL123456789",
    "countryCode": "NL"
  },
  "Consignor": {
    "name": "Exporter Ltd (updated)",
    "eoriNo": "NL987654321",
    "countryCode": "NL"
  },
  "Consignee": {
    "name": "Importer GmbH (updated)",
    "countryCode": "DE",
    "city": "Berlin",
    "street": "Berliner Str 2",
    "postcode": "10116"
  }
}
{
  "declarationId": 104,
  "status": "processing"
}