Outgoing Order Processing API

Manage the processing queue for outgoing orders — fulfilling pending items

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.

GET /api/order_out_pending/list_pending

Paginated list of pending outgoing orders.

Query parameters

ParameterTypeRequiredDescription
list_offsetintPagination offset (default: 0)
list_conditionobjectFilter conditions object

Example request

GET /api/order_out_pending/list_pending?list_offset=0
X-API-KEY: {your_api_key}
POST /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 } }
POST /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 } }
POST /api/order_out_pending/delete_item

Delete a pending item from the queue.

POST fields — data object

FieldTypeRequiredDescription
idintID 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 } }

Get in touch with us

Interested in our software? Feel free to write to us!

Need help?

If you can't find the answer and need assistance

Create your account now,
pay later!

Try it free for 3 days, no risk, no obligation!