Payment

post

Create a new Payment.

Path parameters
userIDintegerRequired
monetary-accountIDintegerRequired
Header parameters
Cache-ControlstringOptional

The standard HTTP Cache-Control header is required for all signed requests.

User-AgentstringRequired

The User-Agent header field should contain information about the user agent originating the request. There are no restrictions on the value of this header.

X-Bunq-LanguagestringOptional

The X-Bunq-Language header must contain a preferred language indication. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore. Currently only the languages en_US and nl_NL are supported. Anything else will default to en_US.

X-Bunq-RegionstringOptional

The X-Bunq-Region header must contain the region (country) of the client device. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore.

X-Bunq-Client-Request-IdstringOptional

This header must specify an ID with each request that is unique for the logged in user. There are no restrictions for the format of this ID. However, the server will respond with an error when the same ID is used again on the same DeviceServer.

X-Bunq-GeolocationstringOptional

This header must specify the geolocation of the device. The format of this value is longitude latitude altitude radius country. The country is expected to be formatted of an ISO 3166-1 alpha-2 country code. When no geolocation is available or known the header must still be included but can be zero valued.

X-Bunq-Client-AuthenticationstringRequired

The authentication token is used to authenticate the source of the API call. It is required by all API calls except for POST /v1/installation. It is important to note that the device and session calls are using the token from the response of the installation call, while all the other calls use the token from the response of the session-server call

Body
descriptionstringOptional

The description for the Payment. Maximum 140 characters for Payments to external IBANs, 9000 characters for Payments to only other bunq MonetaryAccounts.

merchant_referencestringOptional

Optional data included with the Payment specific to the merchant.

allow_bunqtobooleanWrite-onlyOptional

Whether or not sending a bunq.to payment is allowed.

idintegerRead-onlyOptional

The id of the created Payment.

createdstringRead-onlyOptional

The timestamp when the Payment was done.

updatedstringRead-onlyOptional

The timestamp when the Payment was last updated (will be updated when chat messages are received).

monetary_account_idintegerRead-onlyOptional

The id of the MonetaryAccount the Payment was made to or from (depending on whether this is an incoming or outgoing Payment).

typestringRead-onlyOptional

The type of Payment, can be BUNQ, EBA_SCT, EBA_SDD, IDEAL, SWIFT or FIS (card).

sub_typestringRead-onlyOptional

The sub-type of the Payment, can be PAYMENT, WITHDRAWAL, REVERSAL, REQUEST, BILLING, SCT, SDD or NLO.

bunqto_statusstringRead-onlyOptional

The status of the bunq.to payment.

bunqto_sub_statusstringRead-onlyOptional

The sub status of the bunq.to payment.

bunqto_share_urlstringRead-onlyOptional

The status of the bunq.to payment.

bunqto_expirystringRead-onlyOptional

When bunq.to payment is about to expire.

bunqto_time_respondedstringRead-onlyOptional

The timestamp of when the bunq.to payment was responded to.

batch_idintegerRead-onlyOptional

The id of the PaymentBatch if this Payment was part of one.

scheduled_idintegerRead-onlyOptional

The id of the JobScheduled if the Payment was scheduled.

Responses
200
Using Payment, you can send payments to bunq and non-bunq users from your bunq MonetaryAccounts. This can be done using bunq Aliases or IBAN Aliases. When transferring money to other bunq MonetaryAccounts you can also refer to Attachments. These will be received by the counter-party as part of the Payment. You can also retrieve a single Payment or all executed Payments of a specific monetary account.
application/json
post
POST /v1/user/{userID}/monetary-account/{monetary-accountID}/payment HTTP/1.1
Host: public-api.sandbox.bunq.com
User-Agent: text
X-Bunq-Client-Authentication: text
Content-Type: application/json
Accept: */*
Content-Length: 162

{
  "amount": {
    "value": "text",
    "currency": "text"
  },
  "counterparty_alias": {},
  "description": "text",
  "attachment": [
    {
      "id": 1
    }
  ],
  "merchant_reference": "text",
  "allow_bunqto": true
}
{
  "id": 1
}
get

Get a listing of all Payments performed on a given MonetaryAccount (incoming and outgoing).

Path parameters
userIDintegerRequired
monetary-accountIDintegerRequired
Header parameters
Cache-ControlstringOptional

The standard HTTP Cache-Control header is required for all signed requests.

User-AgentstringRequired

The User-Agent header field should contain information about the user agent originating the request. There are no restrictions on the value of this header.

X-Bunq-LanguagestringOptional

The X-Bunq-Language header must contain a preferred language indication. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore. Currently only the languages en_US and nl_NL are supported. Anything else will default to en_US.

X-Bunq-RegionstringOptional

The X-Bunq-Region header must contain the region (country) of the client device. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore.

X-Bunq-Client-Request-IdstringOptional

This header must specify an ID with each request that is unique for the logged in user. There are no restrictions for the format of this ID. However, the server will respond with an error when the same ID is used again on the same DeviceServer.

X-Bunq-GeolocationstringOptional

This header must specify the geolocation of the device. The format of this value is longitude latitude altitude radius country. The country is expected to be formatted of an ISO 3166-1 alpha-2 country code. When no geolocation is available or known the header must still be included but can be zero valued.

X-Bunq-Client-AuthenticationstringRequired

The authentication token is used to authenticate the source of the API call. It is required by all API calls except for POST /v1/installation. It is important to note that the device and session calls are using the token from the response of the installation call, while all the other calls use the token from the response of the session-server call

Responses
200
Using Payment, you can send payments to bunq and non-bunq users from your bunq MonetaryAccounts. This can be done using bunq Aliases or IBAN Aliases. When transferring money to other bunq MonetaryAccounts you can also refer to Attachments. These will be received by the counter-party as part of the Payment. You can also retrieve a single Payment or all executed Payments of a specific monetary account.
application/json
get
GET /v1/user/{userID}/monetary-account/{monetary-accountID}/payment HTTP/1.1
Host: public-api.sandbox.bunq.com
User-Agent: text
X-Bunq-Client-Authentication: text
Accept: */*
[
  {
    "id": 1,
    "created": "text",
    "updated": "text",
    "monetary_account_id": 1,
    "amount": {
      "value": "text",
      "currency": "text"
    },
    "alias": {
      "iban": "text",
      "display_name": "text",
      "avatar": {
        "uuid": "text",
        "anchor_uuid": "text",
        "image": [
          {
            "attachment_public_uuid": "text",
            "content_type": "text",
            "height": 1,
            "width": 1
          }
        ],
        "style": "text"
      },
      "label_user": {
        "uuid": "text",
        "display_name": "text",
        "country": "text",
        "avatar": {
          "uuid": "text",
          "anchor_uuid": "text",
          "image": [
            {
              "attachment_public_uuid": "text",
              "content_type": "text",
              "height": 1,
              "width": 1
            }
          ],
          "style": "text"
        },
        "public_nick_name": "text"
      },
      "country": "text",
      "bunq_me": {
        "type": "text",
        "value": "text",
        "name": "text"
      },
      "is_light": true,
      "swift_bic": "text",
      "swift_account_number": "text",
      "transferwise_account_number": "text",
      "transferwise_bank_code": "text",
      "merchant_category_code": "text"
    },
    "counterparty_alias": {
      "iban": "text",
      "display_name": "text",
      "avatar": {
        "uuid": "text",
        "anchor_uuid": "text",
        "image": [
          {
            "attachment_public_uuid": "text",
            "content_type": "text",
            "height": 1,
            "width": 1
          }
        ],
        "style": "text"
      },
      "label_user": {
        "uuid": "text",
        "display_name": "text",
        "country": "text",
        "avatar": {
          "uuid": "text",
          "anchor_uuid": "text",
          "image": [
            {
              "attachment_public_uuid": "text",
              "content_type": "text",
              "height": 1,
              "width": 1
            }
          ],
          "style": "text"
        },
        "public_nick_name": "text"
      },
      "country": "text",
      "bunq_me": {
        "type": "text",
        "value": "text",
        "name": "text"
      },
      "is_light": true,
      "swift_bic": "text",
      "swift_account_number": "text",
      "transferwise_account_number": "text",
      "transferwise_bank_code": "text",
      "merchant_category_code": "text"
    },
    "description": "text",
    "type": "text",
    "sub_type": "text",
    "payment_arrival_expected": {
      "status": "text",
      "time": "text"
    },
    "bunqto_status": "text",
    "bunqto_sub_status": "text",
    "bunqto_share_url": "text",
    "bunqto_expiry": "text",
    "bunqto_time_responded": "text",
    "attachment": [
      {
        "id": 1,
        "monetary_account_id": 1
      }
    ],
    "merchant_reference": "text",
    "batch_id": 1,
    "scheduled_id": 1,
    "address_shipping": {
      "street": "text",
      "house_number": "text",
      "po_box": "text",
      "postal_code": "text",
      "city": "text",
      "country": "text",
      "extra": "text",
      "mailbox_name": "text",
      "province": "text",
      "is_user_address_updated": true
    },
    "address_billing": {
      "street": "text",
      "house_number": "text",
      "po_box": "text",
      "postal_code": "text",
      "city": "text",
      "country": "text",
      "extra": "text",
      "mailbox_name": "text",
      "province": "text",
      "is_user_address_updated": true
    },
    "geolocation": {
      "latitude": 1,
      "longitude": 1,
      "altitude": 1,
      "radius": 1
    },
    "request_reference_split_the_bill": [
      {
        "type": "text",
        "id": 1
      }
    ],
    "balance_after_mutation": {
      "value": "text",
      "currency": "text"
    },
    "payment_auto_allocate_instance": {
      "id": 1,
      "created": "text",
      "updated": "text",
      "payment_auto_allocate_id": 1,
      "status": "text",
      "error_message": [
        [
          {
            "error_description": "text",
            "error_description_translated": "text"
          }
        ]
      ],
      "payment_batch": {
        "payments": {
          "Payment": [
            "[Circular Reference]"
          ]
        }
      },
      "payment_id": 1,
      "all_ginmon_transaction_order": [
        {
          "status": "text",
          "status_description": "text",
          "status_description_translated": "text",
          "amount_billing": {
            "value": "text",
            "currency": "text"
          },
          "amount_billing_original": {
            "value": "text",
            "currency": "text"
          },
          "isin": "text",
          "external_identifier": "text",
          "label_user": {
            "uuid": "text",
            "display_name": "text",
            "country": "text",
            "avatar": {
              "uuid": "text",
              "anchor_uuid": "text",
              "image": [
                {
                  "attachment_public_uuid": "text",
                  "content_type": "text",
                  "height": 1,
                  "width": 1
                }
              ],
              "style": "text"
            },
            "public_nick_name": "text"
          },
          "label_monetary_account": {
            "iban": "text",
            "display_name": "text",
            "avatar": {
              "uuid": "text",
              "anchor_uuid": "text",
              "image": [
                {
                  "attachment_public_uuid": "text",
                  "content_type": "text",
                  "height": 1,
                  "width": 1
                }
              ],
              "style": "text"
            },
            "label_user": {
              "uuid": "text",
              "display_name": "text",
              "country": "text",
              "avatar": {
                "uuid": "text",
                "anchor_uuid": "text",
                "image": [
                  {
                    "attachment_public_uuid": "text",
                    "content_type": "text",
                    "height": 1,
                    "width": 1
                  }
                ],
                "style": "text"
              },
              "public_nick_name": "text"
            },
            "country": "text",
            "bunq_me": {
              "type": "text",
              "value": "text",
              "name": "text"
            },
            "is_light": true,
            "swift_bic": "text",
            "swift_account_number": "text",
            "transferwise_account_number": "text",
            "transferwise_bank_code": "text",
            "merchant_category_code": "text"
          },
          "counter_label_monetary_account": {
            "iban": "text",
            "display_name": "text",
            "avatar": {
              "uuid": "text",
              "anchor_uuid": "text",
              "image": [
                {
                  "attachment_public_uuid": "text",
                  "content_type": "text",
                  "height": 1,
                  "width": 1
                }
              ],
              "style": "text"
            },
            "label_user": {
              "uuid": "text",
              "display_name": "text",
              "country": "text",
              "avatar": {
                "uuid": "text",
                "anchor_uuid": "text",
                "image": [
                  {
                    "attachment_public_uuid": "text",
                    "content_type": "text",
                    "height": 1,
                    "width": 1
                  }
                ],
                "style": "text"
              },
              "public_nick_name": "text"
            },
            "country": "text",
            "bunq_me": {
              "type": "text",
              "value": "text",
              "name": "text"
            },
            "is_light": true,
            "swift_bic": "text",
            "swift_account_number": "text",
            "transferwise_account_number": "text",
            "transferwise_bank_code": "text",
            "merchant_category_code": "text"
          },
          "event_id": 1
        }
      ]
    },
    "payment_suspended_outgoing": {
      "status": "text",
      "monetary_account_id": "text",
      "time_execution": "text"
    },
    "payment_fee": {
      "value": "text",
      "currency": "text",
      "invoice_id": 1
    }
  }
]
get

Get a specific previous Payment.

Path parameters
userIDintegerRequired
monetary-accountIDintegerRequired
itemIdintegerRequired
Header parameters
Cache-ControlstringOptional

The standard HTTP Cache-Control header is required for all signed requests.

User-AgentstringRequired

The User-Agent header field should contain information about the user agent originating the request. There are no restrictions on the value of this header.

X-Bunq-LanguagestringOptional

The X-Bunq-Language header must contain a preferred language indication. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore. Currently only the languages en_US and nl_NL are supported. Anything else will default to en_US.

X-Bunq-RegionstringOptional

The X-Bunq-Region header must contain the region (country) of the client device. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore.

X-Bunq-Client-Request-IdstringOptional

This header must specify an ID with each request that is unique for the logged in user. There are no restrictions for the format of this ID. However, the server will respond with an error when the same ID is used again on the same DeviceServer.

X-Bunq-GeolocationstringOptional

This header must specify the geolocation of the device. The format of this value is longitude latitude altitude radius country. The country is expected to be formatted of an ISO 3166-1 alpha-2 country code. When no geolocation is available or known the header must still be included but can be zero valued.

X-Bunq-Client-AuthenticationstringRequired

The authentication token is used to authenticate the source of the API call. It is required by all API calls except for POST /v1/installation. It is important to note that the device and session calls are using the token from the response of the installation call, while all the other calls use the token from the response of the session-server call

Responses
200
Using Payment, you can send payments to bunq and non-bunq users from your bunq MonetaryAccounts. This can be done using bunq Aliases or IBAN Aliases. When transferring money to other bunq MonetaryAccounts you can also refer to Attachments. These will be received by the counter-party as part of the Payment. You can also retrieve a single Payment or all executed Payments of a specific monetary account.
application/json
get
GET /v1/user/{userID}/monetary-account/{monetary-accountID}/payment/{itemId} HTTP/1.1
Host: public-api.sandbox.bunq.com
User-Agent: text
X-Bunq-Client-Authentication: text
Accept: */*
{
  "id": 1,
  "created": "text",
  "updated": "text",
  "monetary_account_id": 1,
  "amount": {
    "value": "text",
    "currency": "text"
  },
  "alias": {
    "iban": "text",
    "display_name": "text",
    "avatar": {
      "uuid": "text",
      "anchor_uuid": "text",
      "image": [
        {
          "attachment_public_uuid": "text",
          "content_type": "text",
          "height": 1,
          "width": 1
        }
      ],
      "style": "text"
    },
    "label_user": {
      "uuid": "text",
      "display_name": "text",
      "country": "text",
      "avatar": {
        "uuid": "text",
        "anchor_uuid": "text",
        "image": [
          {
            "attachment_public_uuid": "text",
            "content_type": "text",
            "height": 1,
            "width": 1
          }
        ],
        "style": "text"
      },
      "public_nick_name": "text"
    },
    "country": "text",
    "bunq_me": {
      "type": "text",
      "value": "text",
      "name": "text"
    },
    "is_light": true,
    "swift_bic": "text",
    "swift_account_number": "text",
    "transferwise_account_number": "text",
    "transferwise_bank_code": "text",
    "merchant_category_code": "text"
  },
  "counterparty_alias": {
    "iban": "text",
    "display_name": "text",
    "avatar": {
      "uuid": "text",
      "anchor_uuid": "text",
      "image": [
        {
          "attachment_public_uuid": "text",
          "content_type": "text",
          "height": 1,
          "width": 1
        }
      ],
      "style": "text"
    },
    "label_user": {
      "uuid": "text",
      "display_name": "text",
      "country": "text",
      "avatar": {
        "uuid": "text",
        "anchor_uuid": "text",
        "image": [
          {
            "attachment_public_uuid": "text",
            "content_type": "text",
            "height": 1,
            "width": 1
          }
        ],
        "style": "text"
      },
      "public_nick_name": "text"
    },
    "country": "text",
    "bunq_me": {
      "type": "text",
      "value": "text",
      "name": "text"
    },
    "is_light": true,
    "swift_bic": "text",
    "swift_account_number": "text",
    "transferwise_account_number": "text",
    "transferwise_bank_code": "text",
    "merchant_category_code": "text"
  },
  "description": "text",
  "type": "text",
  "sub_type": "text",
  "payment_arrival_expected": {
    "status": "text",
    "time": "text"
  },
  "bunqto_status": "text",
  "bunqto_sub_status": "text",
  "bunqto_share_url": "text",
  "bunqto_expiry": "text",
  "bunqto_time_responded": "text",
  "attachment": [
    {
      "id": 1,
      "monetary_account_id": 1
    }
  ],
  "merchant_reference": "text",
  "batch_id": 1,
  "scheduled_id": 1,
  "address_shipping": {
    "street": "text",
    "house_number": "text",
    "po_box": "text",
    "postal_code": "text",
    "city": "text",
    "country": "text",
    "extra": "text",
    "mailbox_name": "text",
    "province": "text",
    "is_user_address_updated": true
  },
  "address_billing": {
    "street": "text",
    "house_number": "text",
    "po_box": "text",
    "postal_code": "text",
    "city": "text",
    "country": "text",
    "extra": "text",
    "mailbox_name": "text",
    "province": "text",
    "is_user_address_updated": true
  },
  "geolocation": {
    "latitude": 1,
    "longitude": 1,
    "altitude": 1,
    "radius": 1
  },
  "request_reference_split_the_bill": [
    {
      "type": "text",
      "id": 1
    }
  ],
  "balance_after_mutation": {
    "value": "text",
    "currency": "text"
  },
  "payment_auto_allocate_instance": {
    "id": 1,
    "created": "text",
    "updated": "text",
    "payment_auto_allocate_id": 1,
    "status": "text",
    "error_message": [
      [
        {
          "error_description": "text",
          "error_description_translated": "text"
        }
      ]
    ],
    "payment_batch": {
      "payments": {
        "Payment": [
          {
            "amount": {
              "value": "text",
              "currency": "text"
            },
            "counterparty_alias": {
              "iban": "text",
              "display_name": "text",
              "avatar": {
                "uuid": "text",
                "anchor_uuid": "text",
                "image": [
                  {
                    "attachment_public_uuid": "text",
                    "content_type": "text",
                    "height": 1,
                    "width": 1
                  }
                ],
                "style": "text"
              },
              "label_user": {
                "uuid": "text",
                "display_name": "text",
                "country": "text",
                "avatar": {
                  "uuid": "text",
                  "anchor_uuid": "text",
                  "image": [
                    {
                      "attachment_public_uuid": "text",
                      "content_type": "text",
                      "height": 1,
                      "width": 1
                    }
                  ],
                  "style": "text"
                },
                "public_nick_name": "text"
              },
              "country": "text",
              "bunq_me": {
                "type": "text",
                "value": "text",
                "name": "text"
              },
              "is_light": true,
              "swift_bic": "text",
              "swift_account_number": "text",
              "transferwise_account_number": "text",
              "transferwise_bank_code": "text",
              "merchant_category_code": "text"
            },
            "description": "text",
            "attachment": [
              {
                "id": 1,
                "monetary_account_id": 1
              }
            ],
            "merchant_reference": "text",
            "id": 1,
            "created": "text",
            "updated": "text",
            "monetary_account_id": 1,
            "alias": {
              "iban": "text",
              "display_name": "text",
              "avatar": {
                "uuid": "text",
                "anchor_uuid": "text",
                "image": [
                  {
                    "attachment_public_uuid": "text",
                    "content_type": "text",
                    "height": 1,
                    "width": 1
                  }
                ],
                "style": "text"
              },
              "label_user": {
                "uuid": "text",
                "display_name": "text",
                "country": "text",
                "avatar": {
                  "uuid": "text",
                  "anchor_uuid": "text",
                  "image": [
                    {
                      "attachment_public_uuid": "text",
                      "content_type": "text",
                      "height": 1,
                      "width": 1
                    }
                  ],
                  "style": "text"
                },
                "public_nick_name": "text"
              },
              "country": "text",
              "bunq_me": {
                "type": "text",
                "value": "text",
                "name": "text"
              },
              "is_light": true,
              "swift_bic": "text",
              "swift_account_number": "text",
              "transferwise_account_number": "text",
              "transferwise_bank_code": "text",
              "merchant_category_code": "text"
            },
            "type": "text",
            "sub_type": "text",
            "payment_arrival_expected": {
              "status": "text",
              "time": "text"
            },
            "bunqto_status": "text",
            "bunqto_sub_status": "text",
            "bunqto_share_url": "text",
            "bunqto_expiry": "text",
            "bunqto_time_responded": "text",
            "batch_id": 1,
            "scheduled_id": 1,
            "address_shipping": {
              "street": "text",
              "house_number": "text",
              "po_box": "text",
              "postal_code": "text",
              "city": "text",
              "country": "text",
              "extra": "text",
              "mailbox_name": "text",
              "province": "text",
              "is_user_address_updated": true
            },
            "address_billing": {
              "street": "text",
              "house_number": "text",
              "po_box": "text",
              "postal_code": "text",
              "city": "text",
              "country": "text",
              "extra": "text",
              "mailbox_name": "text",
              "province": "text",
              "is_user_address_updated": true
            },
            "geolocation": {
              "latitude": 1,
              "longitude": 1,
              "altitude": 1,
              "radius": 1
            },
            "request_reference_split_the_bill": [
              {
                "type": "text",
                "id": 1
              }
            ],
            "balance_after_mutation": {
              "value": "text",
              "currency": "text"
            },
            "payment_auto_allocate_instance": "[Circular Reference]",
            "payment_suspended_outgoing": {
              "status": "text",
              "monetary_account_id": "text",
              "time_execution": "text"
            },
            "payment_fee": {
              "value": "text",
              "currency": "text",
              "invoice_id": 1
            }
          }
        ]
      }
    },
    "payment_id": 1,
    "all_ginmon_transaction_order": [
      {
        "status": "text",
        "status_description": "text",
        "status_description_translated": "text",
        "amount_billing": {
          "value": "text",
          "currency": "text"
        },
        "amount_billing_original": {
          "value": "text",
          "currency": "text"
        },
        "isin": "text",
        "external_identifier": "text",
        "label_user": {
          "uuid": "text",
          "display_name": "text",
          "country": "text",
          "avatar": {
            "uuid": "text",
            "anchor_uuid": "text",
            "image": [
              {
                "attachment_public_uuid": "text",
                "content_type": "text",
                "height": 1,
                "width": 1
              }
            ],
            "style": "text"
          },
          "public_nick_name": "text"
        },
        "label_monetary_account": {
          "iban": "text",
          "display_name": "text",
          "avatar": {
            "uuid": "text",
            "anchor_uuid": "text",
            "image": [
              {
                "attachment_public_uuid": "text",
                "content_type": "text",
                "height": 1,
                "width": 1
              }
            ],
            "style": "text"
          },
          "label_user": {
            "uuid": "text",
            "display_name": "text",
            "country": "text",
            "avatar": {
              "uuid": "text",
              "anchor_uuid": "text",
              "image": [
                {
                  "attachment_public_uuid": "text",
                  "content_type": "text",
                  "height": 1,
                  "width": 1
                }
              ],
              "style": "text"
            },
            "public_nick_name": "text"
          },
          "country": "text",
          "bunq_me": {
            "type": "text",
            "value": "text",
            "name": "text"
          },
          "is_light": true,
          "swift_bic": "text",
          "swift_account_number": "text",
          "transferwise_account_number": "text",
          "transferwise_bank_code": "text",
          "merchant_category_code": "text"
        },
        "counter_label_monetary_account": {
          "iban": "text",
          "display_name": "text",
          "avatar": {
            "uuid": "text",
            "anchor_uuid": "text",
            "image": [
              {
                "attachment_public_uuid": "text",
                "content_type": "text",
                "height": 1,
                "width": 1
              }
            ],
            "style": "text"
          },
          "label_user": {
            "uuid": "text",
            "display_name": "text",
            "country": "text",
            "avatar": {
              "uuid": "text",
              "anchor_uuid": "text",
              "image": [
                {
                  "attachment_public_uuid": "text",
                  "content_type": "text",
                  "height": 1,
                  "width": 1
                }
              ],
              "style": "text"
            },
            "public_nick_name": "text"
          },
          "country": "text",
          "bunq_me": {
            "type": "text",
            "value": "text",
            "name": "text"
          },
          "is_light": true,
          "swift_bic": "text",
          "swift_account_number": "text",
          "transferwise_account_number": "text",
          "transferwise_bank_code": "text",
          "merchant_category_code": "text"
        },
        "event_id": 1
      }
    ]
  },
  "payment_suspended_outgoing": {
    "status": "text",
    "monetary_account_id": "text",
    "time_execution": "text"
  },
  "payment_fee": {
    "value": "text",
    "currency": "text",
    "invoice_id": 1
  }
}
get

MasterCard transaction view.

Path parameters
userIDintegerRequired
monetary-accountIDintegerRequired
mastercard-actionIDintegerRequired
Header parameters
Cache-ControlstringOptional

The standard HTTP Cache-Control header is required for all signed requests.

User-AgentstringRequired

The User-Agent header field should contain information about the user agent originating the request. There are no restrictions on the value of this header.

X-Bunq-LanguagestringOptional

The X-Bunq-Language header must contain a preferred language indication. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore. Currently only the languages en_US and nl_NL are supported. Anything else will default to en_US.

X-Bunq-RegionstringOptional

The X-Bunq-Region header must contain the region (country) of the client device. The value of this header is formatted as a ISO 639-1 language code plus a ISO 3166-1 alpha-2 country code, separated by an underscore.

X-Bunq-Client-Request-IdstringOptional

This header must specify an ID with each request that is unique for the logged in user. There are no restrictions for the format of this ID. However, the server will respond with an error when the same ID is used again on the same DeviceServer.

X-Bunq-GeolocationstringOptional

This header must specify the geolocation of the device. The format of this value is longitude latitude altitude radius country. The country is expected to be formatted of an ISO 3166-1 alpha-2 country code. When no geolocation is available or known the header must still be included but can be zero valued.

X-Bunq-Client-AuthenticationstringRequired

The authentication token is used to authenticate the source of the API call. It is required by all API calls except for POST /v1/installation. It is important to note that the device and session calls are using the token from the response of the installation call, while all the other calls use the token from the response of the session-server call

Responses
200
MasterCard transaction view.
application/json
Responseobject[]
get
GET /v1/user/{userID}/monetary-account/{monetary-accountID}/mastercard-action/{mastercard-actionID}/payment HTTP/1.1
Host: public-api.sandbox.bunq.com
User-Agent: text
X-Bunq-Client-Authentication: text
Accept: */*
[
  {}
]

Last updated

Was this helpful?