Properties
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| invoices | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/pdfshift/refs/heads/main/json-schema/invoices.json",
"title": "Invoices",
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"invoices": {
"type": "object",
"properties": {
"has_more": {
"type": "boolean"
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"created": {
"type": "integer",
"format": "int64"
},
"amount": {
"type": "number",
"format": "float"
},
"reference": {
"type": "string"
},
"download_url": {
"type": "string",
"format": "uri"
}
}
}
},
"limit": {
"type": "integer",
"format": "int32"
},
"page": {
"type": "integer",
"format": "int32"
},
"total": {
"type": "integer",
"format": "int32"
}
}
}
}
}