Procedures
Automation procedures in the Katana BDK Book.
Make sure to add the Katana BDK Book to your agent before using these automation procedures.
to retrieve some (purchase orders)
Fetch the purchase orders with optional filtering.
Input Concepts
include deleted
Whether to include deleted items in the response.
boolean
No
(no default)
Output Concepts
Examples
Retrieve purchase orders
retrieve some purchase orders
Retrieve purchase orders with filtering
retrieve some purchase orders whose status is "RECEIVED"
Retrieve purchase orders for specific supplier
retrieve some purchase orders whose supplier_id is 789012
Retrieve purchase orders with a limit and offset
retrieve the purchase orders
the limit is 10
the offset is 3
Retrieve purchase orders with include_deleted
retrieve the purchase orders
the include deleted is 'true'
to retrieve some (sales orders)
Fetch the sales orders with optional filtering.
Input Concepts
include deleted
Whether to include deleted items in the response.
boolean
No
(no default)
Output Concepts
Examples
Retrieve sales orders
retrieve some sales orders
Retrieve sales orders with filtering
retrieve some sales orders whose status is "DELIVERED"
Retrieve sales orders for specific customer
retrieve some sales orders whose customer_id is 123456
Retrieve sales orders with a limit and offset
retrieve the sales orders
the limit is 10
the offset is 5
Retrieve sales orders with include_deleted
retrieve the sales orders
the include deleted is 'true'
Last updated
Was this helpful?