Properties
| Name | Type | Description |
|---|---|---|
| PaymentRequests | array | The filtered payment requests. |
| Cursor | string | Unique identifier of the last and hence oldest payment request returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older payment requests. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentRequestResult",
"title": "PaymentRequestResult",
"required": [
"PaymentRequests"
],
"type": "object",
"properties": {
"PaymentRequests": {
"maxItems": 1000,
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentRequest"
},
"description": "The filtered payment requests."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest payment request returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older payment requests.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "PaymentRequestResult"
}