> ## Documentation Index
> Fetch the complete documentation index at: https://docs.eazecustoms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk submit imports to customs

> Trigger bulk submission of ready import declarations to NL Customs DMS.

Trigger bulk submission of `ready` import declarations to the NL Customs DMS.

### Request Body

<ParamField body="ids" type="array" required>
  Array of declaration IDs to submit to customs.
</ParamField>

<ResponseExample>
  ```json 202 Accepted theme={null}
  {
    "message": "Processed 3 declarations for sending.",
    "results": [
      {
        "id": 1,
        "status": "accepted",
        "result": {
          "declarationId": 1,
          "submitted": true,
          "message": "Declaration submitted to customs"
        }
      },
      {
        "id": 2,
        "status": "error",
        "error": "Declaration not ready to submit"
      }
    ]
  }
  ```
</ResponseExample>
