Skip to main content
POST
/
api
/
security
/
scans
/
secondary
Send Secondary Screening (ETD/EDD) Result
curl --request POST \
  --url https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/security/scans/secondary \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "awbNumber": "157-12345678",
  "method": "ETD",
  "result": "CLEAR",
  "performedAt": "2024-01-01T13:00:00Z",
  "report": "<optional PDF or reference>",
  "notify": [
    "airline",
    "customs"
  ]
}
'
{
  "id": "secscan_01HPRS",
  "awbNumber": "157-12345678",
  "status": "sent"
}

Reference Documentation

For more information on secondary screening (ETD/EDD) results, please refer to:

Authorizations

Authorization
string
header
required

Body

application/json
awbNumber
string
required
Example:

"157-12345678"

method
string
required
Example:

"ETD"

result
string
required
Example:

"CLEAR"

performedAt
string<date-time>
required
Example:

"2024-01-01T13:00:00Z"

report
string
Example:

"<optional PDF or reference>"

notify
string[]
Example:
["airline", "customs"]

Response

201 - application/json

Secondary Scan Sent

id
string
Example:

"secscan_01HPRS"

awbNumber
string
Example:

"157-12345678"

status
string
Example:

"sent"