Properties
| Name | Type | Description |
|---|---|---|
| counterparty_alias | object | The counter party this transaction should be sent to. |
| amount | object | The money amount of this transaction |
| description | string | The description of this transaction, to be shown to the user and to the counter party. |
| url_redirect | string | The url to which the user should be redirected once the transaction is accepted or rejected. |
| time_expiry | string | The (optional) expiration time of the transaction. Defaults to 10 minutes. |
| status | string | The status of the transaction. Can only be used for cancelling the transaction. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentServiceProviderIssuerTransaction",
"title": "PaymentServiceProviderIssuerTransaction",
"type": "object",
"properties": {
"counterparty_alias": {
"type": "object",
"description": "The counter party this transaction should be sent to.",
"readOnly": false,
"writeOnly": false,
"$ref": "#/components/schemas/Pointer"
},
"amount": {
"type": "object",
"description": "The money amount of this transaction",
"readOnly": false,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"description": {
"type": "string",
"description": "The description of this transaction, to be shown to the user and to the counter party.",
"readOnly": false,
"writeOnly": false
},
"url_redirect": {
"type": "string",
"description": "The url to which the user should be redirected once the transaction is accepted or rejected.",
"readOnly": false,
"writeOnly": false
},
"time_expiry": {
"type": "string",
"description": "The (optional) expiration time of the transaction. Defaults to 10 minutes.",
"readOnly": false,
"writeOnly": false
},
"status": {
"type": "string",
"description": "The status of the transaction. Can only be used for cancelling the transaction.",
"readOnly": false,
"writeOnly": false
}
},
"required": [
"counterparty_alias",
"amount",
"description",
"url_redirect"
]
}