List Fixed Cost Purchase Orders with pagination, filtering, and sorting.
Filtering:
status: Filter by PO status (Draft, Submitted, Approved, Rejected, Cancelled)expenseCategory: Filter by expense category (utilities, rent, services, etc.)frequency: Filter by frequency (one_time, monthly, quarterly, yearly)Sorting:
- for descending, + or no prefix for ascendingcreated_at, document_id, statusSearch:
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 expense category
Filter by frequency
Search in document ID
Sort field with direction prefix
Successful Response
Paginated response for Fixed 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