> Part of [WHCC Developer Documentation](https://www.whcc.com/developer/llms.txt)

# Order Submit

## Requirements

You need to submit each order after importing before they will be processed.

> The needed `ConfirmationID` value is returned from the `/api/OrderImport` call.

## POST `/api/OrderImport/Submit/[ConfirmationID]`

Content-type: application/json

## curl

### Example Request

```shell
curl https://apps.whcc.com/api/OrderImport/Submit/a3ff9b4a-3112-4101-88ab-6ba025fd7600 \
-H "Authorization: Bearer 726670514499" \
-H "Content-Length: 0" \
-X POST
```

### Example Response

```json
{
	"Confirmation": "Entry ID=a3ff9b4a-3112-4101-88ab-6ba025fd7600: Confirmed order submitted.",
	"ConfirmationID": "a3ff9b4a-3112-4101-88ab-6ba025fd7600",
	"ConfirmedOrders": 1,
	"Received": "8/19/2018 5:00:17 PM Central Time"
}
```

- **`Confirmation`** (String): Human-readable status of submit call.
- **`ConfirmationID`** (String): The ID for the order submitted.
- **`ConfirmedOrders`** (Integer): The number of orders confirmed with this call.
- **`Received`** (String): The time the order was submitted.

> ## What's Next
>
> Configure [Webhooks](https://www.whcc.com/developer/docs/order-submit-api/webhooks/index.html.md) to get updates on the progress of your order