Properties
| Name | Type | Description |
|---|---|---|
| amount_inquired | object | The requested Amount. |
| description | string | The description for the bunq.me. Maximum 9000 characters. |
| redirect_url | string | The URL which the user is sent to when a payment is completed. |
| uuid | string | The uuid of the bunq.me. |
| alias | object | The LabelMonetaryAccount with the public information of the User and the MonetaryAccount that created the bunq.me link. |
| status | string | The status of the bunq.me. Can be WAITING_FOR_PAYMENT, CANCELLED or EXPIRED. |
| merchant_available | array | List of available merchants. |
| invite_profile_name | string | Provided if the user has enabled their invite link. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BunqMeTabEntry",
"title": "BunqMeTabEntry",
"type": "object",
"properties": {
"amount_inquired": {
"type": "object",
"description": "The requested Amount.",
"readOnly": false,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"description": {
"type": "string",
"description": "The description for the bunq.me. Maximum 9000 characters.",
"readOnly": false,
"writeOnly": false
},
"redirect_url": {
"type": "string",
"description": "The URL which the user is sent to when a payment is completed.",
"readOnly": false,
"writeOnly": false
},
"uuid": {
"type": "string",
"description": "The uuid of the bunq.me.",
"readOnly": true,
"writeOnly": false
},
"alias": {
"type": "object",
"description": "The LabelMonetaryAccount with the public information of the User and the MonetaryAccount that created the bunq.me link.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/LabelMonetaryAccount"
},
"status": {
"type": "string",
"description": "The status of the bunq.me. Can be WAITING_FOR_PAYMENT, CANCELLED or EXPIRED.",
"readOnly": true,
"writeOnly": false
},
"merchant_available": {
"type": "array",
"description": "List of available merchants.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/BunqMeMerchantAvailable"
}
},
"invite_profile_name": {
"type": "string",
"description": "Provided if the user has enabled their invite link.",
"readOnly": true,
"writeOnly": false
}
}
}