Update Sale
Update an existing sale/auction.
PATCH
/datatable-sales/{id}
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id |
string | Sale ID |
Request Body Fields
| Field | Type | Description |
|---|---|---|
lots_locked |
boolean | Lock lot numbers to prevent changes |
status |
string | Sale status (draft, published, closed) |
Example Request - Lock Lots
PATCH /api/v1.0/datatable-sales/456
{
"lots_locked": true
}
Response
{
"data": [{
"id": "456",
"lots_locked": true,
"updated": "2025-10-30T10:00:00Z"
}]
}