Base URL
https://{tenant}.logzi.com/api/order_out_confirm/
Every request returns a JSON response. On success result.code == 1, on failure result.code == 0. This API manages the confirmation workflow for outbound orders — it allows you to retrieve and save confirmation records and send email confirmations.
/api/order_out_confirm/get_confirm
Retrieve a single confirmation record by ID.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | int | Identifier of the confirmation record |
Example Request
GET /api/order_out_confirm/get_confirm?id=1
X-API-KEY: {your_api_key}
/api/order_out_confirm/list_confirm
Paginated list of confirmation records.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_offset | int | Pagination offset (default: 0) | |
list_condition | object | Object of filter conditions |
Example Request
GET /api/order_out_confirm/list_confirm?list_offset=0
X-API-KEY: {your_api_key}
/api/order_out_confirm/list_confirm_full_order
Confirmation list extended with the full order data.
Same parameters as the /list_confirm endpoint, but the response also includes the header data of the related order.
/api/order_out_confirm/save_confirm
Save or update a confirmation record.
POST Fields — data object
Provide the confirmation record's fields in the data object (order identifier, confirmation status, date, etc.).
Example Request
POST /api/order_out_confirm/save_confirm
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { ... } }
/api/order_out_confirm/email_confirm
Send an email confirmation for the order.
POST Fields — data object
Provide the order identifier and the email sending parameters in the data object.
Example Request
POST /api/order_out_confirm/email_confirm
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { "id": 1 } }
Create your account now,
pay later!