Purchase Orders

class py_veeqo.endpoints.purchase_orders.PurchaseOrders(api_key: str | None = None)

Bases: PyVeeqo

This class implements all the purchase orders api calls.

get_all_purchase_orders(page_size: int = 12, page: int = 1, show_complete: bool = False) Result

Get a list of all purchase orders, and their corresponding information. https://developers.veeqo.com/docs#/reference/purchase-orders/purchase-order-collection/list-all-purchase-orders

Parameters:
  • page_size (int, optional) – The number of purchase orders to return. Defaults to 12.

  • page (int, optional) – The page number to return. Defaults to 1.

  • show_complete (bool, optional) – Whether to show completed purchase orders. Defaults to False.