Skip to main content
POST
/
v1
/
declarations
/
transit
Submit arrival declaration
curl --request POST \
  --url https://devapi.eazecustoms.com/staging/v1/declarations/transit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "<string>",
  "companyId": 123,
  "procedureType": "<string>",
  "commercialReference": "<string>",
  "mrn": "<string>",
  "destinationOffice": "<string>",
  "countryOfDestination": "<string>",
  "goodsLocationType": "<string>",
  "goodsLocationAddressType": "<string>",
  "goodsLocationAddress": {},
  "Principal": {},
  "Authorisations": [
    {}
  ]
}
'
{
  "declarationId": 105,
  "status": "processing"
}
Submit a transit arrival declaration to Union Transit.

Request Body

type
string
required
The type of declaration. Must be set to ARRIVAL.
companyId
integer
required
The unique ID of the company submitting the declaration.
procedureType
string
required
The transit procedure type code. Allowed values: D1, D2, D3, D4.
commercialReference
string
required
Commercial reference identifier.
mrn
string
required
Movement Reference Number for the arrival/unloading.
destinationOffice
string
required
Office of destination code (e.g. NL000567).
countryOfDestination
string
required
The country code of the destination (e.g. NL).
goodsLocationType
string
required
The type identifier for the location of the goods.
goodsLocationAddressType
string
required
The type identifier for the address layout of the goods location.
goodsLocationAddress
object
required
The physical address or authorization details where the goods are located.
Principal
object
required
The principal party details.
Authorisations
array
List of authorisations reference documents.

Examples

Request Payload
{
  "companyId": 1,
  "type": "ARRIVAL",
  "procedureType": "D1",
  "commercialReference": "ARR-2026-00001",
  "mrn": "25NL715L00002CNWJ3",
  "destinationOffice": "NL000567",
  "countryOfDestination": "NL",
  "goodsLocationType": "B",
  "goodsLocationAddressType": "T",
  "goodsLocationAddress": {
    "authorizationNo": "NLACENL000567-2025-D-FAJ159847",
    "customsOffice": "NL000567"
  },
  "Principal": {
    "eoriNo": "NL865986952",
    "name": "Nordic Living Imports B.V.",
    "countryCode": "NL"
  },
  "Authorisations": [
    {
      "documentCategory": "Authorisation",
      "typeCode": "C521",
      "description": "NLACENL000567-2025-D-FAJ159847",
      "isRequestedFromCustoms": false
    }
  ]
}
{
  "declarationId": 105,
  "status": "processing"
}