v1
latestOpenAPI 3.0.32026-07-131210.1 KBEndpoints
Retrieve NOP Waiver Authorisation Status
Use this endpoint to request the NOP waiver authorisation status of between 1 and 3000 EORI numbers.
post/customs/uk-notice-of-presentation-waiver/authorisations
Headers
Accept'application/vnd.hmrc.1.0+json' required
Specifies the response format and the version of the API to be used.
Content-Type'application/json' required
The media type of the request body.
Request body
Example request
{
"eoris": [
"GB123123123333"
]
}Response
Success - Authorised. A list of EORI numbers provided with their authorised status as boolean 'true' or 'false'.
Example response
{
"date": "2024-02-01T14:15:22Z",
"eoris": [
{
"eori": "GB123123123123",
"authorised": true
}
]
}