# Submit the wholesale order (lines can no longer be changed)

`POST /api/v1/orders/{order_id}/submit` — Token required · order:submit · write · 2 pts

Wholesale orders

Submit the wholesale order (lines can no longer be changed). payment_method defaults to invoice (pay on invoice)

## Path parameters

| Name | Type | Description |
| --- | --- | --- |
| `order_id` **required** | string | Wholesale order id, from the order list. Own channel only. (max length 64) |

## Request body (JSON)

| Field | Type | Description |
| --- | --- | --- |
| `payment_method` | string | How to pay: balance / invoice (pay on invoice) / wechat / alipay. Defaults to invoice, i.e. monthly settlement. |
| `use_reservation` | boolean | Whether to draw on your reserved (locked) stock for this allocation. Omit = do not use it. |

## Response

The envelope is decided by the HTTP status alone: 2xx with `{ data: … }` (lists also carry `page / page_size / has_more` or `total_count`); 4xx / 5xx with `{ error: { code, message, hint, request_id, doc_url } }`.

```json
{
  "data": { … }
}
```

A success response carries no human-readable text — no `code / result / msg`. `error.code` is the only field your code should branch on; `message` follows `Accept-Language`.

> Send an `Idempotency-Key` header (any unique string, e.g. a UUID) on writes: a network retry never creates a second order. Orders are drafts by default until a person confirms them in the ERP.

## Examples

### curl

```bash
curl -X POST "https://connect.everugg.net.au/api/v1/orders/{order_id}/submit" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: <uuid>" \
  -d '{ "payment_method": "<payment_method>", "use_reservation": false }'
```

### Python

```python
import requests

r = requests.post(
    "https://connect.everugg.net.au/api/v1/orders/{order_id}/submit",
    headers={"Authorization": "Bearer " + TOKEN, "Idempotency-Key": str(uuid.uuid4())},
    json={
      "payment_method": "<payment_method>",
      "use_reservation": False
    },
)
data = r.json()
r.raise_for_status()  # 4xx/5xx: data["error"]["code"] / ["hint"]
```

### Node

```js
const res = await fetch("https://connect.everugg.net.au/api/v1/orders/{order_id}/submit", {
  method: "POST",
  headers: { Authorization: `Bearer ${TOKEN}`, "Content-Type": "application/json", "Idempotency-Key": crypto.randomUUID() },
  body: JSON.stringify({
    "payment_method": "<payment_method>",
    "use_reservation": false
  }),
})
const data = await res.json()
if (!res.ok) throw new Error(`${data.error?.code}: ${data.error?.message}`)
```

### Java

```java
HttpRequest req = HttpRequest.newBuilder()
    .uri(URI.create("https://connect.everugg.net.au/api/v1/orders/{order_id}/submit"))
    .header("Authorization", "Bearer " + token)
    .header("Content-Type", "application/json")
    .header("Idempotency-Key", UUID.randomUUID().toString())
    .POST(HttpRequest.BodyPublishers.ofString("{ \"payment_method\": \"<payment_method>\", \"use_reservation\": false }"))
    .build();
HttpResponse<String> res = HttpClient.newHttpClient().send(req, HttpResponse.BodyHandlers.ofString());
```

---
Markdown source: https://connect.everugg.net.au/reference/post-api-v1-orders-order-id-submit.md?lang=en · Web page: https://connect.everugg.net.au/reference?op=post-api-v1-orders-order-id-submit&lang=en
