Base URL
https://{tenant}.logzi.com/api/order_out_pending/
Every request returns a JSON response. On success result.code == 1, on error result.code == 0. This API manages the fulfillment process for outgoing orders — the status of pending orders and items can be queried and updated, and individual items can be deleted.
/api/order_out_pending/list_pending
Paginated list of pending outgoing orders.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_offset | int | Pagination offset (default: 0) | |
list_condition | object | Filter conditions object |
Example request
GET /api/order_out_pending/list_pending?list_offset=0
X-API-KEY: {your_api_key}
/api/order_out_pending/success
Mark an outgoing order as fulfilled.
POST fields — data object
Provide the ID of the order to fulfill and the fulfillment details in the data object.
Example request
POST /api/order_out_pending/success
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { "id": 1 } }
/api/order_out_pending/success_item
Mark an individual order item as fulfilled.
POST fields — data object
Provide the ID of the item to fulfill and the quantity details in the data object.
Example request
POST /api/order_out_pending/success_item
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { "id": 10, "quantity": 5 } }
/api/order_out_pending/delete_item
Delete a pending item from the queue.
POST fields — data object
| Field | Type | Required | Description |
|---|---|---|---|
id | int | ID of the item to delete |
Example request
POST /api/order_out_pending/delete_item
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { "id": 10 } }
Create your account now,
pay later!