Skip to main content
PATCH
/
api
/
dds-statements
/
{id}
Update DDS Statement
curl --request PATCH \
  --url https://app.polygonone.com/api/dds-statements/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "referenceNumber": "<string>",
  "verificationNumber": "<string>",
  "type": "import"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

API key generated in Settings > API Keys. Include as Authorization: Bearer <key>.

Path Parameters

id
string<uuid>
required

Body

application/json
referenceNumber
string | null

TRACES reference number

verificationNumber
string | null

TRACES verification number

type
enum<string>

import = goods entering the EU, export = goods leaving the EU, trade = intra-EU trade, domestic_production = produced within the EU

Available options:
import,
export,
trade,
domestic_production

Response

Updated successfully

success
boolean