Przelewy24 · Schema
PaymentMethodsResponseMethod
PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of payment method |
| id | integer | Payment method ID |
| group | string | Possible values: FastTransfers, Blik, eTransfer, Credit Card, Installments, Wallet, Foreign, PrePayment, TraditionalTransfer, Another. SplitPayment |
| subgroup | string | Possible values: FastTransfers, Blik, eTransfer, Credit Card, Installments, Wallet, Foreign, PrePayment, TraditionalTransfer, Another. SplitPayment |
| status | boolean | Specifies whether a given method is active |
| imgUrl | string | Link to graphics |
| mobileImgUrl | string | Link to mobile graphics |
| mobile | boolean | Is the payment mobile method available? |
| availabilityHours | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PaymentMethodsResponseMethod",
"properties": {
"name": {
"type": "string",
"description": "Name of payment method"
},
"id": {
"type": "integer",
"description": "Payment method ID"
},
"group": {
"type": "string",
"description": "Possible values: FastTransfers, Blik, eTransfer, Credit Card, Installments, Wallet, Foreign, PrePayment, TraditionalTransfer, Another. SplitPayment"
},
"subgroup": {
"type": "string",
"description": "Possible values: FastTransfers, Blik, eTransfer, Credit Card, Installments, Wallet, Foreign, PrePayment, TraditionalTransfer, Another. SplitPayment"
},
"status": {
"type": "boolean",
"example": true,
"description": "Specifies whether a given method is active"
},
"imgUrl": {
"type": "string",
"description": "Link to graphics"
},
"mobileImgUrl": {
"type": "string",
"description": "Link to mobile graphics"
},
"mobile": {
"type": "boolean",
"example": true,
"description": "Is the payment mobile method available?"
},
"availabilityHours": {
"$ref": "#/components/schemas/availabilityHours"
}
}
}