Search receivables
This is a POST version of the GET /receivables
endpoint. Use it to send search and filter parameters in the request body instead of the URL query string in case the query is too long and exceeds the URL length limit of your HTTP client.
Headers
Bearer authentication of the form Bearer <token>
, where token is your auth token.
Request
Return only receivables created for counterparts with the specified name (exact match, case-sensitive). For counterparts of type
= individual
, the full name is formatted as first_name last_name
.
Return only receivables created for counterparts whose name contains the specified string (case-sensitive).
Return only receivables created for counterparts whose name contains the specified string (case-insensitive).
Return only receivables created after the specified date and time. The value must be in the ISO 8601 format YYYY-MM-DDThh:mm[:ss][Z|±hh:mm]
. The milliseconds part of the value is ignored.
Return only receivables with the exact specified discounted subtotal. The amount must be specified in the minor units of currency. For example, $12.5 is represented as 1250.
Return only receivables whose discounted subtotal (in minor units) is greater than the specified value.
Return only receivables whose discounted subtotal (in minor units) is greater than or equal to the specified value.
Return only receivables whose discounted subtotal (in minor units) is less than the specified value.
Return only receivables whose discounted subtotal (in minor units) is less than or equal to the specified value.
Return a receivable with the exact specified document number (case-sensitive). The document_id
is the user-facing document number such as INV-00042, not to be confused with Monite resource IDs (id
).
Return only receivables whose document number (document_id
) contains the specified string (case-sensitive).
Return only receivables whose document number (document_id
) contains the specified string (case-insensitive).
Return receivables whose due date is after the specified date (exclusive, YYYY-MM-DD
).
This filter includes invoices and credit notes (only those with a due date) and excludes quotes.
Return receivables whose due date is on or after the specified date (YYYY-MM-DD
).
This filter includes invoices and credit notes (only those with a due date) and excludes quotes.
Return receivables whose due date is before the specified date (exclusive, YYYY-MM-DD
).
This filter includes invoices and credit notes (only those with a due date) and excludes quotes.
Return receivables whose due date is before or on the specified date (YYYY-MM-DD
).
This filter includes invoices and credit notes (only those with a due date) and excludes quotes.
If true
, returns only invoices and credit notes that have the due_date
defined.
If false
, returns receivables (invoices, quotes, credit notes) without a due_date
.
If omitted (default), all receivables are included.
Return only non-draft receivables that were issued after the specified date and time. The value must be in the ISO 8601 format YYYY-MM-DDThh:mm[:ss][Z|±hh:mm]
. The milliseconds part of the value is ignored.
Return only non-draft receivables that were issued on or after the specified date and time. The milliseconds part of the value is ignored.
Return only non-draft receivables that were issued before the specified date and time. The milliseconds part of the value is ignored.
Return only non-draft receivables that were issued before or on the specified date and time. The milliseconds part of the value is ignored.
Sort order (ascending by default). Typically used together with the sort
parameter.
Searches for the specified substring in the counterpart_name
and document_id
fields in receivables. The search is case-insensitive and allows partial matches. For example, abc
will match 12-ABCD
.
The field to sort the results by. Typically used together with the order
parameter.
Return only receivables with the exact specified total amount. The amount must be specified in the minor units of currency. For example, $12.5 is represented as 1250.
Return only receivables whose total amount (in minor units) exceeds the specified value.
Return only receivables whose total amount (in minor units) is greater than or equal to the specified value.
Return only receivables whose total amount (in minor units) is less than the specified value.
Return only receivables whose total amount (in minor units) is less than or equal to the specified value.
Response
A token that can be sent in the pagination_token
query parameter to get the next page of results, or null
if there is no next page (i.e. you’ve reached the last page).
A token that can be sent in the pagination_token
query parameter to get the previous page of results, or null
if there is no previous page (i.e. you’ve reached the first page).