Properties
| Name | Type | Description |
|---|---|---|
| updated_since | string | |
| created_since | string | |
| number | string | Invoice number to search for |
| supplier_id | string | Supplier ID to filter invoices by |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InvoicesFilter",
"title": "InvoicesFilter",
"type": "object",
"x-apideck-schema-id": "InvoicesFilter",
"example": {
"updated_since": "2020-09-30T07:43:32.000Z",
"created_since": "2020-09-30T07:43:32.000Z",
"number": "OIT00546",
"supplier_id": "123"
},
"properties": {
"updated_since": {
"type": "string",
"title": "Updated since (timestamp)",
"format": "date-time",
"example": "2020-09-30T07:43:32.000Z"
},
"created_since": {
"type": "string",
"title": "Created since (timestamp)",
"format": "date-time",
"example": "2020-09-30T07:43:32.000Z"
},
"number": {
"type": "string",
"title": "Invoice number",
"description": "Invoice number to search for",
"example": "OIT00546"
},
"supplier_id": {
"type": "string",
"title": "Supplier ID",
"description": "Supplier ID to filter invoices by",
"example": "123"
}
},
"additionalProperties": false
}