List Direct Cost Purchase Orders with pagination, filtering, and sorting.
Filtering:
status: Filter by PO status (Draft, Submitted, Approved, Rejected, Cancelled)supplierId: Filter by supplier IDSorting:
- for descending, + or no prefix for ascendingcreated_at, document_id, status, order_dateSearch:
Response Format:
{
"data": [...],
"pagination": {
"page": 1,
"limit": 10,
"total": 45,
"totalPages": 5,
"hasNext": true,
"hasPrev": false
}
}
The access token received from the authorization server in the OAuth 2.0 flow.
Page number
x >= 1Items per page
1 <= x <= 100Filter by status
Filter by supplier ID
Search in document ID
Sort field with direction prefix
Successful Response
Paginated response for Direct Cost PO list
Pagination metadata following API standards.
Attributes: page: Current page number (1-indexed) limit: Items per page total: Total number of items matching query totalPages: Total number of pages hasNext: Whether there is a next page hasPrev: Whether there is a previous page