bunq API Documentation
SDK'sPostman Collection
  • Getting Started
    • Welcome to the bunq API documentation
    • Tools
      • Software Development Kits (SDKs)
        • PHP
          • Usage
          • Tests
          • Exceptions
        • Java
          • Usage
          • Tests
          • Exceptions
        • Python
          • Usage
          • Tests
          • Exceptions
        • C#
          • Usage
          • Tests
          • Exceptions
      • Postman
      • Android Emulator
      • Developers Portal
  • Basics
    • bunq API Objects
      • User
      • Monetary Account
      • Payment
      • RequestInquiry
      • Card
      • Attachment and Note Attachment
    • API Context, Device Installation and Session
    • Authentication
      • API Keys
      • OAuth
    • Pagination
    • Errors
    • Rate Limits
    • Response body formatting
    • Moving to production
    • Headers
  • NOT SO BASICS
    • Signing
      • Python Code Example
        • Full main.py
        • Full bunq_lib.py
        • Full signing.py
      • PHP Code Example
    • Callbacks (Webhooks)
  • PSD2
    • Are you a Third Party Provider (TPP)? Start here!
      • Register as a TPP
      • Change your avatar
    • Account Information Service Provider (AISP)
    • Payment Initiation Service Provider (PISP)
    • Card-Based Payment Instrument Issuer (CBPII)
  • Support
    • FAQ
    • bunq status page
    • Terms and Conditions
  • TUTORIALS
    • Your first payment
      • Introduction
      • Creating a sandbox user and getting an API key
      • Creating the API Context
        • Creating the Installation
        • Device Registration
        • Start a Session
      • Setting up a sandbox user
        • Retrieving my user details
        • Getting sandbox money on the user account
        • Sandbox version of the bunq app
      • First Payments
    • Receiving payments on your website using bunq.me
    • How to manage your cards
      • Introduction
      • Ordering a card
      • Setting the card Limit and changing the PIN code
  • API Reference
    • Start here
    • Additional Transaction Information Category
    • Additional Transaction Information Category User Defined
    • Attachment
    • Attachment Public
    • Avatar
    • Billing Contract Subscription
    • bunqme
      • bunqme Tab
      • bunqme Fundraiser Profile
      • bunqme Tab Response
      • bunqme Fundraiser Result
    • Callback URL OAuth
    • Cards
      • Card
      • Card-Batch
      • Card Credit
      • Card Debit
      • Card Name
      • Card Replace
  • Confirmation Of Funds
  • Content and Exports
  • Currency Cloud
    • Currency cloud Benificiairy
    • Payment Quote
  • Currency Conversion
    • Convert
    • Quotes
  • Customer Statements
  • Devices
  • Draft Payment
  • Event
  • Exports
    • Export Annual Overview
    • Export RIB
    • Export Statement Card
  • Generated CVC2
  • Ideal Merchant Transaction
  • Insights
  • Installation
  • Invoice
  • Invoice Export
  • Legal Name
  • Limit
  • Mastercard Action
  • Monetary Account
    • Monetary Account Bank
    • Monetary Account Card
    • Monetary Account External
    • Monetary Account External Savings
    • Monetary Account Joint
    • Monetary Account Savings
    • Monetary Account Savings External
  • Name
  • Note Text & Attachment
    • Adyen Card Transaction
    • Switch Service Payment
    • bunqme fundraiser result
    • Draft Payment
    • Ideal Merchant Transaction
    • Mastercard Action
    • Open Banking Merchant
    • Payment Batch
    • Payment Delayed
    • Payment
    • Request Inquiry Batch
    • Request Response
    • Schedule Payment
    • Schedule Request
    • Sofort
    • Whitelist Result
  • Notification Filter
    • Notification Filter Email
    • Notification Filter Failure
    • Notification Filter Push
    • Notification Filter URL
  • OAuth
  • Payment
    • Payment
    • Payment Auto Allocate
    • Payment Batch
  • Payment Auto Allocation
  • Payment Service Provider
    • Payment Service Provider Credential
    • Payment Service Provider Draft Payment
    • Payment Service Provider Issuer Transaction
  • Request
    • Request Inquiry
    • Request Inquiry Batch
    • Request Response
  • Sandbox Users
  • Schedule
    • Schedule Instance
    • Schedule Payment
    • Schedule Payment Batch
  • Server Error
  • Server Public Key
  • Session
  • [deprecated] Share Invite Monetary Account Inquiry
  • Share Invite Monetary Account Response
  • Sofort Merchant Transaction
  • Statement
  • Switch Service Payment
  • Token QR Request Sofort
  • Transferwise
    • Transferwise Currency
    • Transferwise Quote
    • Transferwise Recipient
    • Transferwise Recipient Requirement
    • Transferwise Transfer
    • Transferwise Transfer Requirement
    • Transferwise User
  • Tree Progress
  • User
    • User Person
    • User Company
    • User Payment Service Provider
  • Whitelist SSD
    • Whitelist SSD One Off
    • Whitelist SSD Recurring
  • Content
Powered by GitBook
On this page

Was this helpful?

  1. TUTORIALS
  2. Your first payment
  3. Setting up a sandbox user

Getting sandbox money on the user account

The easiest way to become a millionaire is in our sandbox. This is because we have 1 user in our sandbox called Sugar Daddy. This user will approve all requests for money up to €500 at a time.

Call to SugarDaddy

As you can see in the response we'll need to pass in our user ID as well as monetary account ID. counterparty Alias is the alias (phone number, email address or IBAN) of the person you want money from. The amount and currency are €100.

Example request body

{
    "amount_inquired": {
        "value": "100",
    "currency": "EUR"
  },
    "counterparty_alias": {
      "type": "EMAIL",
      "value": "sugardaddy@bunq.com",
      "name": "Sugar Daddy"
  },
  "description": "You'\''re the best!",
  "allow_bunqme": false
}'

Example curl call to sugardaddy

curl --location 'https://public-api.sandbox.bunq.com/v1/user/1822179/monetary-account/2026814/request-inquiry' \
--header 'Content-Type: application/json' \
--header 'Cache-Control: no-cache' \
--header 'User-Agent: postman' \
--header 'X-Bunq-Language: en_US' \
--header 'X-Bunq-Region: nl_NL' \
--header 'X-Bunq-Client-Request-Id: c27ctel8WBQrleTTk4I8' \
--header 'X-Bunq-Geolocation: 0 0 0 0 000' \
--header 'X-Bunq-Client-Authentication: ce717b3001d979ff5e22bac13508b46e7ad740971d1d75c5371614e546ca8b83' \
--header 'X-Bunq-Client-Signature: IQmnUmd/DO8ELKBGKSuSdszxQmvBNA1s7ONHdmYU9glRs1kpaDnVmPyQgFL+mDffbdm5G4KsoI4Wvt07Cw1upYN8aPb0MEzpKL54F/1f2AZxWxUTGT+uBvdyCZuT609NJc279casOL1zm0XNo2i2Q8NiFKl0Y4eCmEOyErvxjAWuLObOW7VzXcWFN1LqXLC12sDGKTagbXtRrSS/mL5fsKYCxWQrb9mBsAWzmFWC0mGORrzrpUG24r+1qX/sRsH6wMKf5t8nUIsBeGtT0c724wM9M/Silp0OoZQ0w37nuiKGxPq+Awxx4//o2b09wIKyZUBEeFa1BQnrLdAIKvABLA==' \
--data-raw '{
	"amount_inquired": {
    "value": "100",
    "currency": "EUR"
  },
  "counterparty_alias": {
      "type": "EMAIL",
      "value": "sugardaddy@bunq.com",
      "name": "Sugar Daddy"
  },
  "description": "You'\''re the best!",
  "allow_bunqme": false
}'

Example response body

Sugardaddy just returns a response with a request ID. But since we don't see an error we know that Sugardaddy received the request

{
    "Response": [
        {
            "Id": {
                "id": 1475092
            }
        }
    ]
}

Verification

If we want to double check that Sugar Daddy indeed paid us we'll have to double check our Monetary account again. Instead of listing all monetary accounts we can now also do a smaller API call to just get details for the monetary account in our request. Which should have our updated balance in the response

request

curl --location 'https://public-api.sandbox.bunq.com/v1/user/1822179/monetary-account/2026814' 
\
--header 'Content-Type: application/json' \
--header 'Cache-Control: no-cache' \
--header 'User-Agent: postman' \
--header 'X-Bunq-Language: en_US' \
--header 'X-Bunq-Region: nl_NL' \
--header 'X-Bunq-Client-Request-Id: c27ctel8WBQrleTTk4I8' \
--header 'X-Bunq-Geolocation: 0 0 0 0 000' \
--header 'X-Bunq-Client-Authentication: ce718b3001d979ff5e22bac13508b46e7ad740971d1d75c5371614e546ca8b83' \
--header 'X-Bunq-Client-Signature: IQmnUmd/DO8EEKBGKSuSdszxQmvBNA1s7ONHdmYU9glRs1kpaDnVmPyQgFL+mDffbdm5G4KsoI4Wvt07Cw1upYN8aPb0MEzpKL54F/1f2AZxWxUTGT+uBvdyCZuT609NJc279casOL1zm0XNo2i2Q8NiFKl0Y4eCmEOyErvxjAWuLObOW7VzXcWFN1LqXLC12sDGKTagbXtRrSS/mL5fsKYCxWQrb9mBsAWzmFWC0mGORrzrpUG24r+1qX/sRsH6wMKf5t8nUIsBeGtT0c724wM9M/Silp0OoZQ0w37nuiKGxPq+Awxx4//o2b09wIKyZUBEeFa1BQnrLdAIKvABLA==' \
--data ''

Response

"Response": [
        {
            "MonetaryAccountBank": {
                "id": 2026814,
                "created": "2025-03-05 16:12:01.255073",
                "updated": "2025-03-05 16:12:01.255073",
                ... more key value pairs ... 
                }
                "balance": {
                        "currency": "EUR",
                        "value": "100.00"
                    },

        }
    ]

Requesting money from other users

If you want to request money from other users then this is how you do it: Just be aware, sugardaddy is the only one who automatically transfers money to you.

Response

{
    "Response": [
        {
            "Id": {
                "id": 1475092
            }
        }
    ]
}

PreviousRetrieving my user detailsNextSandbox version of the bunq app

Last updated 2 months ago

Was this helpful?

get

Get all payment requests for a user's monetary account. bunqme_share_url is always null if the counterparty is a bunq user.

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
RequestInquiry, aka 'RFP' (Request for Payment), is one of the innovative features that bunq offers. To request payment from another bunq account a new Request Inquiry is created. As with payments you can add attachments to a RFP. Requests for Payment are the foundation for a number of consumer features like 'Split the bill' and 'Request forwarding'. We invite you to invent your own based on the bunq api!
application/json
400
This is how the error response looks like for 4XX response codes
application/json
get
GET /v1/user/{userID}/monetary-account/{monetary-accountID}/request-inquiry HTTP/1.1
Host: public-api.sandbox.bunq.com
User-Agent: text
X-Bunq-Client-Authentication: text
Accept: */*
[
  {
    "id": 1,
    "created": "text",
    "updated": "text",
    "time_responded": "text",
    "time_expiry": "text",
    "monetary_account_id": 1,
    "amount_inquired": {
      "value": "text",
      "currency": "text"
    },
    "amount_responded": {
      "value": "text",
      "currency": "text"
    },
    "user_alias_created": {
      "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"
    },
    "user_alias_revoked": {
      "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"
    },
    "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",
    "merchant_reference": "text",
    "attachment": [
      {
        "id": 1
      }
    ],
    "status": "text",
    "batch_id": 1,
    "scheduled_id": 1,
    "minimum_age": 1,
    "require_address": "text",
    "bunqme_share_url": "text",
    "redirect_url": "text",
    "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
    },
    "reference_split_the_bill": {
      "BillingInvoice": {
        "status": "text",
        "id": 1,
        "created": "text",
        "updated": "text",
        "invoice_date": "text",
        "invoice_number": "text",
        "category": "text",
        "group": [
          {
            "type": "text",
            "type_description": "text",
            "type_description_translated": "text",
            "instance_description": "text",
            "product_vat_exclusive": {
              "value": "text",
              "currency": "text"
            },
            "product_vat_inclusive": {
              "value": "text",
              "currency": "text"
            },
            "item": [
              {
                "id": 1,
                "billing_date": "text",
                "type_description": "text",
                "type_description_translated": "text",
                "unit_vat_exclusive": {
                  "value": "text",
                  "currency": "text"
                },
                "unit_vat_inclusive": {
                  "value": "text",
                  "currency": "text"
                },
                "vat": 1,
                "quantity": 1,
                "total_vat_exclusive": {
                  "value": "text",
                  "currency": "text"
                },
                "total_vat_inclusive": {
                  "value": "text",
                  "currency": "text"
                }
              }
            ]
          }
        ],
        "total_vat_inclusive": {
          "value": "text",
          "currency": "text"
        },
        "total_vat_exclusive": {
          "value": "text",
          "currency": "text"
        },
        "total_vat": {
          "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"
        },
        "address": {
          "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
        },
        "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"
        },
        "counterparty_address": {
          "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
        },
        "chamber_of_commerce_number": "text",
        "vat_number": "text",
        "request_reference_split_the_bill": [
          {
            "type": "text",
            "id": 1
          }
        ]
      },
      "DraftPayment": {
        "status": "text",
        "entries": [
          {
            "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",
            "merchant_reference": "text",
            "attachment": [
              {
                "id": 1,
                "monetary_account_id": 1
              }
            ],
            "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"
          }
        ],
        "schedule": {
          "time_start": "text",
          "time_end": "text",
          "recurrence_unit": "text",
          "recurrence_size": 1,
          "status": "text",
          "object": {
            "Payment": "[Circular Reference]",
            "PaymentBatch": "[Circular Reference]"
          }
        }
      },
      "MasterCardAction": {
        "id": 1,
        "monetary_account_id": 1,
        "card_id": 1,
        "amount_local": {
          "value": "text",
          "currency": "text"
        },
        "amount_converted": {
          "value": "text",
          "currency": "text"
        },
        "amount_billing": {
          "value": "text",
          "currency": "text"
        },
        "amount_original_local": {
          "value": "text",
          "currency": "text"
        },
        "amount_original_billing": {
          "value": "text",
          "currency": "text"
        },
        "amount_fee": {
          "value": "text",
          "currency": "text"
        },
        "card_authorisation_id_response": "text",
        "decision": "text",
        "payment_status": "text",
        "decision_description": "text",
        "decision_description_translated": "text",
        "decision_together_url": "text",
        "description": "text",
        "authorisation_status": "text",
        "authorisation_type": "text",
        "pan_entry_mode_user": "text",
        "settlement_status": "text",
        "clearing_status": "text",
        "maturity_date": "text",
        "city": "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"
        },
        "label_card": {
          "uuid": "text",
          "type": "text",
          "second_line": "text",
          "expiry_date": "text",
          "status": "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"
          }
        },
        "merchant_id": "text",
        "token_status": "text",
        "reservation_expiry_time": "text",
        "clearing_expiry_time": "text",
        "applied_limit": "text",
        "secure_code_id": 1,
        "wallet_provider_id": "text",
        "request_reference_split_the_bill": [
          {
            "type": "text",
            "id": 1
          }
        ],
        "card_tokenization_event": {
          "id": 1,
          "created": "text",
          "updated": "text",
          "action": "text",
          "user_id": "text",
          "monetary_account_id": "text",
          "object": {
            "BunqMeTab": {
              "bunqme_tab_entry": {
                "amount_inquired": {
                  "value": "text",
                  "currency": "text"
                },
                "description": "text",
                "redirect_url": "text",
                "uuid": "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"
                },
                "status": "text",
                "merchant_available": [
                  {
                    "merchant_type": "text",
                    "available": true
                  }
                ],
                "invite_profile_name": "text"
              },
              "status": "text"
            },
            "BunqMeTabResultResponse": "[Circular Reference]",
            "BunqMeFundraiserResult": "[Circular Reference]",
            "Card": {
              "status": "text",
              "order_status": "text",
              "card_limit": {
                "value": "text",
                "currency": "text"
              },
              "card_limit_atm": {
                "value": "text",
                "currency": "text"
              },
              "country_permission": [
                {
                  "country": "text",
                  "id": 1
                }
              ],
              "pin_code_assignment": [
                {
                  "type": "text",
                  "routing_type": "text",
                  "monetary_account_id": 1,
                  "status": "text"
                }
              ],
              "primary_account_numbers": [
                {
                  "id": 1,
                  "description": "text",
                  "status": "text",
                  "monetary_account_id": 1,
                  "uuid": "text",
                  "four_digit": "text",
                  "type": "text"
                }
              ],
              "monetary_account_id_fallback": 1,
              "preferred_name_on_card": "text",
              "second_line": "text"
            },
            "CardDebit": {},
            "DraftPayment": "[Circular Reference]",
            "FeatureAnnouncement": {
              "avatar": {
                "uuid": "text",
                "anchor_uuid": "text",
                "image": [
                  {
                    "attachment_public_uuid": "text",
                    "content_type": "text",
                    "height": 1,
                    "width": 1
                  }
                ],
                "style": "text"
              },
              "title": "text",
              "sub_title": "text",
              "type": "text"
            },
            "IdealMerchantTransaction": {
              "amount_requested": {
                "value": "text",
                "currency": "text"
              },
              "issuer": "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"
              },
              "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"
              },
              "amount_guaranteed": {
                "value": "text",
                "currency": "text"
              },
              "expiration": "text",
              "issuer_name": "text",
              "issuer_authentication_url": "text",
              "purchase_identifier": "text",
              "status": "text",
              "status_timestamp": "text",
              "transaction_identifier": "text"
            },
            "Invoice": {
              "status": "text",
              "id": 1,
              "created": "text",
              "updated": "text",
              "invoice_date": "text",
              "invoice_number": "text",
              "category": "text",
              "group": [
                {
                  "type": "text",
                  "type_description": "text",
                  "type_description_translated": "text",
                  "instance_description": "text",
                  "product_vat_exclusive": {
                    "value": "text",
                    "currency": "text"
                  },
                  "product_vat_inclusive": {
                    "value": "text",
                    "currency": "text"
                  },
                  "item": [
                    {
                      "id": 1,
                      "billing_date": "text",
                      "type_description": "text",
                      "type_description_translated": "text",
                      "unit_vat_exclusive": {
                        "value": "text",
                        "currency": "text"
                      },
                      "unit_vat_inclusive": {
                        "value": "text",
                        "currency": "text"
                      },
                      "vat": 1,
                      "quantity": 1,
                      "total_vat_exclusive": {
                        "value": "text",
                        "currency": "text"
                      },
                      "total_vat_inclusive": {
                        "value": "text",
                        "currency": "text"
                      }
                    }
                  ]
                }
              ],
              "total_vat_inclusive": {
                "value": "text",
                "currency": "text"
              },
              "total_vat_exclusive": {
                "value": "text",
                "currency": "text"
              },
              "total_vat": {
                "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"
              },
              "address": {
                "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
              },
              "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"
              },
              "counterparty_address": {
                "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
              },
              "chamber_of_commerce_number": "text",
              "vat_number": "text",
              "request_reference_split_the_bill": [
                {
                  "type": "text",
                  "id": 1
                }
              ]
            },
            "ScheduledPayment": "[Circular Reference]",
            "ScheduledPaymentBatch": "[Circular Reference]",
            "ScheduledInstance": "[Circular Reference]",
            "MasterCardAction": "[Circular Reference]",
            "BankSwitchServiceNetherlandsIncomingPayment": "[Circular Reference]",
            "Payment": "[Circular Reference]",
            "PaymentBatch": "[Circular Reference]",
            "RequestInquiryBatch": "[Circular Reference]",
            "RequestInquiry": "[Circular Reference]",
            "RequestResponse": {
              "amount_responded": {
                "value": "text",
                "currency": "text"
              },
              "status": "text",
              "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
              },
              "id": 1,
              "created": "text",
              "updated": "text",
              "time_responded": "text",
              "time_expiry": "text",
              "time_refund_requested": "text",
              "time_refunded": "text",
              "user_refund_requested": {
                "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"
              },
              "monetary_account_id": 1,
              "amount_inquired": {
                "value": "text",
                "currency": "text"
              },
              "description": "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"
              },
              "attachment": [
                {
                  "description": "text",
                  "content_type": "text",
                  "urls": [
                    {
                      "type": "text",
                      "url": "text"
                    }
                  ]
                }
              ],
              "minimum_age": 1,
              "require_address": "text",
              "geolocation": {
                "latitude": 1,
                "longitude": 1,
                "altitude": 1,
                "radius": 1
              },
              "type": "text",
              "sub_type": "text",
              "redirect_url": "text",
              "credit_scheme_identifier": "text",
              "mandate_identifier": "text",
              "registration_action": "text",
              "eligible_whitelist_id": 1,
              "request_reference_split_the_bill": [
                {
                  "type": "text",
                  "id": 1
                }
              ],
              "event_id": 1,
              "monetary_account_preferred_id": 1
            },
            "ShareInviteBankInquiry": {
              "counter_user_alias": {
                "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"
              },
              "access_type": "text",
              "status": "text",
              "relationship": "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"
              },
              "user_alias_created": {
                "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"
              },
              "user_alias_revoked": {
                "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"
              },
              "monetary_account_id": 1,
              "id": 1
            },
            "ShareInviteBankResponse": {
              "status": "text",
              "id": 1,
              "created": "text",
              "updated": "text",
              "counter_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"
              },
              "user_alias_cancelled": {
                "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"
              },
              "monetary_account_id": 1,
              "draft_share_invite_bank_id": 1,
              "share_detail": {
                "payment": {
                  "make_payments": true,
                  "make_draft_payments": true,
                  "view_balance": true,
                  "view_old_events": true,
                  "view_new_events": true
                },
                "read_only": {
                  "view_balance": true,
                  "view_old_events": true,
                  "view_new_events": true
                },
                "draft_payment": {
                  "make_draft_payments": true,
                  "view_balance": true,
                  "view_old_events": true,
                  "view_new_events": true
                }
              },
              "access_type": "text",
              "relation_user": {
                "user_id": "text",
                "counter_user_id": "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"
                },
                "counter_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"
                },
                "relationship": "text",
                "status": "text",
                "user_status": "text",
                "counter_user_status": "text",
                "company_employee_setting_adyen_card_transaction": {
                  "status": "text",
                  "monetary_account_payout_id": 1
                },
                "all_company_employee_card": [
                  {
                    "company_name_on_card": "text",
                    "amount_limit_monthly": {
                      "value": "text",
                      "currency": "text"
                    },
                    "status": "text",
                    "card": {
                      "status": "text",
                      "order_status": "text",
                      "card_limit": {
                        "value": "text",
                        "currency": "text"
                      },
                      "card_limit_atm": {
                        "value": "text",
                        "currency": "text"
                      },
                      "country_permission": [
                        {
                          "country": "text",
                          "id": 1
                        }
                      ],
                      "pin_code_assignment": [
                        {
                          "type": "text",
                          "routing_type": "text",
                          "monetary_account_id": 1,
                          "status": "text"
                        }
                      ],
                      "primary_account_numbers": [
                        {
                          "id": 1,
                          "description": "text",
                          "status": "text",
                          "monetary_account_id": 1,
                          "uuid": "text",
                          "four_digit": "text",
                          "type": "text"
                        }
                      ],
                      "monetary_account_id_fallback": 1,
                      "preferred_name_on_card": "text",
                      "second_line": "text"
                    },
                    "amount_spent_monthly": {
                      "value": "text",
                      "currency": "text"
                    },
                    "number_of_company_employee_card_receipt_pending": 1
                  }
                ]
              },
              "share_type": "text",
              "start_date": "text",
              "end_date": "text",
              "description": "text"
            },
            "SofortMerchantTransaction": {
              "amount_requested": {
                "value": "text",
                "currency": "text"
              },
              "issuer": "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"
              },
              "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"
              },
              "amount_guaranteed": {
                "value": "text",
                "currency": "text"
              },
              "issuer_authentication_url": "text",
              "status": "text",
              "error_message": [
                [
                  {
                    "error_description": "text",
                    "error_description_translated": "text"
                  }
                ]
              ],
              "transaction_identifier": "text"
            },
            "TransferwisePayment": {
              "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"
              },
              "status": "text",
              "sub_status": "text",
              "status_transferwise": "text",
              "status_transferwise_issue": "text",
              "amount_source": {
                "value": "text",
                "currency": "text"
              },
              "amount_target": {
                "value": "text",
                "currency": "text"
              },
              "rate": "text",
              "reference": "text",
              "pay_in_reference": "text",
              "time_delivery_estimate": "text",
              "quote": {
                "amount_source": {
                  "value": "text",
                  "currency": "text"
                },
                "amount_target": {
                  "value": "text",
                  "currency": "text"
                },
                "id": 1,
                "created": "text",
                "updated": "text",
                "time_expiry": "text",
                "quote_id": "text",
                "amount_fee": {
                  "value": "text",
                  "currency": "text"
                },
                "rate": "text",
                "time_delivery_estimate": "text"
              }
            }
          },
          "status": "text",
          "object_data_at_event": {
            "BunqMeTab": {
              "bunqme_tab_entry": {
                "amount_inquired": {
                  "value": "text",
                  "currency": "text"
                },
                "description": "text",
                "redirect_url": "text",
                "uuid": "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"
                },
                "status": "text",
                "merchant_available": [
                  {
                    "merchant_type": "text",
                    "available": true
                  }
                ],
                "invite_profile_name": "text"
              },
              "status": "text"
            },
            "BunqMeTabResultResponse": "[Circular Reference]",
            "BunqMeFundraiserResult": "[Circular Reference]",
            "Card": {
              "status": "text",
              "order_status": "text",
              "card_limit": {
                "value": "text",
                "currency": "text"
              },
              "card_limit_atm": {
                "value": "text",
                "currency": "text"
              },
              "country_permission": [
                {
                  "country": "text",
                  "id": 1
                }
              ],
              "pin_code_assignment": [
                {
                  "type": "text",
                  "routing_type": "text",
                  "monetary_account_id": 1,
                  "status": "text"
                }
              ],
              "primary_account_numbers": [
                {
                  "id": 1,
                  "description": "text",
                  "status": "text",
                  "monetary_account_id": 1,
                  "uuid": "text",
                  "four_digit": "text",
                  "type": "text"
                }
              ],
              "monetary_account_id_fallback": 1,
              "preferred_name_on_card": "text",
              "second_line": "text"
            },
            "CardDebit": {},
            "DraftPayment": "[Circular Reference]",
            "FeatureAnnouncement": {
              "avatar": {
                "uuid": "text",
                "anchor_uuid": "text",
                "image": [
                  {
                    "attachment_public_uuid": "text",
                    "content_type": "text",
                    "height": 1,
                    "width": 1
                  }
                ],
                "style": "text"
              },
              "title": "text",
              "sub_title": "text",
              "type": "text"
            },
            "IdealMerchantTransaction": {
              "amount_requested": {
                "value": "text",
                "currency": "text"
              },
              "issuer": "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"
              },
              "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"
              },
              "amount_guaranteed": {
                "value": "text",
                "currency": "text"
              },
              "expiration": "text",
              "issuer_name": "text",
              "issuer_authentication_url": "text",
              "purchase_identifier": "text",
              "status": "text",
              "status_timestamp": "text",
              "transaction_identifier": "text"
            },
            "Invoice": {
              "status": "text",
              "id": 1,
              "created": "text",
              "updated": "text",
              "invoice_date": "text",
              "invoice_number": "text",
              "category": "text",
              "group": [
                {
                  "type": "text",
                  "type_description": "text",
                  "type_description_translated": "text",
                  "instance_description": "text",
                  "product_vat_exclusive": {
                    "value": "text",
                    "currency": "text"
                  },
                  "product_vat_inclusive": {
                    "value": "text",
                    "currency": "text"
                  },
                  "item": [
                    {
                      "id": 1,
                      "billing_date": "text",
                      "type_description": "text",
                      "type_description_translated": "text",
                      "unit_vat_exclusive": {
                        "value": "text",
                        "currency": "text"
                      },
                      "unit_vat_inclusive": {
                        "value": "text",
                        "currency": "text"
                      },
                      "vat": 1,
                      "quantity": 1,
                      "total_vat_exclusive": {
                        "value": "text",
                        "currency": "text"
                      },
                      "total_vat_inclusive": {
                        "value": "text",
                        "currency": "text"
                      }
                    }
                  ]
                }
              ],
              "total_vat_inclusive": {
                "value": "text",
                "currency": "text"
              },
              "total_vat_exclusive": {
                "value": "text",
                "currency": "text"
              },
              "total_vat": {
                "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"
              },
              "address": {
                "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
              },
              "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"
              },
              "counterparty_address": {
                "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
              },
              "chamber_of_commerce_number": "text",
              "vat_number": "text",
              "request_reference_split_the_bill": [
                {
                  "type": "text",
                  "id": 1
                }
              ]
            },
            "ScheduledPayment": "[Circular Reference]",
            "ScheduledPaymentBatch": "[Circular Reference]",
            "ScheduledInstance": "[Circular Reference]",
            "MasterCardAction": "[Circular Reference]",
            "BankSwitchServiceNetherlandsIncomingPayment": "[Circular Reference]",
            "Payment": "[Circular Reference]",
            "PaymentBatch": "[Circular Reference]",
            "RequestInquiryBatch": "[Circular Reference]",
            "RequestInquiry": "[Circular Reference]",
            "RequestResponse": {
              "amount_responded": {
                "value": "text",
                "currency": "text"
              },
              "status": "text",
              "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
              },
              "id": 1,
              "created": "text",
              "updated": "text",
              "time_responded": "text",
              "time_expiry": "text",
              "time_refund_requested": "text",
              "time_refunded": "text",
              "user_refund_requested": {
                "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"
              },
              "monetary_account_id": 1,
              "amount_inquired": {
                "value": "text",
                "currency": "text"
              },
              "description": "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"
              },
              "attachment": [
                {
                  "description": "text",
                  "content_type": "text",
                  "urls": [
                    {
                      "type": "text",
                      "url": "text"
                    }
                  ]
                }
              ],
              "minimum_age": 1,
              "require_address": "text",
              "geolocation": {
                "latitude": 1,
                "longitude": 1,
                "altitude": 1,
                "radius": 1
              },
              "type": "text",
              "sub_type": "text",
              "redirect_url": "text",
              "credit_scheme_identifier": "text",
              "mandate_identifier": "text",
              "registration_action": "text",
              "eligible_whitelist_id": 1,
              "request_reference_split_the_bill": [
                {
                  "type": "text",
                  "id": 1
                }
              ],
              "event_id": 1,
              "monetary_account_preferred_id": 1
            },
            "ShareInviteBankInquiry": {
              "counter_user_alias": {
                "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"
              },
              "access_type": "text",
              "status": "text",
              "relationship": "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"
              },
              "user_alias_created": {
                "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"
              },
              "user_alias_revoked": {
                "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"
              },
              "monetary_account_id": 1,
              "id": 1
            },
            "ShareInviteBankResponse": {
              "status": "text",
              "id": 1,
              "created": "text",
              "updated": "text",
              "counter_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"
              },
              "user_alias_cancelled": {
                "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"
              },
              "monetary_account_id": 1,
              "draft_share_invite_bank_id": 1,
              "share_detail": {
                "payment": {
                  "make_payments": true,
                  "make_draft_payments": true,
                  "view_balance": true,
                  "view_old_events": true,
                  "view_new_events": true
                },
                "read_only": {
                  "view_balance": true,
                  "view_old_events": true,
                  "view_new_events": true
                },
                "draft_payment": {
                  "make_draft_payments": true,
                  "view_balance": true,
                  "view_old_events": true,
                  "view_new_events": true
                }
              },
              "access_type": "text",
              "relation_user": {
                "user_id": "text",
                "counter_user_id": "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"
                },
                "counter_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"
                },
                "relationship": "text",
                "status": "text",
                "user_status": "text",
                "counter_user_status": "text",
                "company_employee_setting_adyen_card_transaction": {
                  "status": "text",
                  "monetary_account_payout_id": 1
                },
                "all_company_employee_card": [
                  {
                    "company_name_on_card": "text",
                    "amount_limit_monthly": {
                      "value": "text",
                      "currency": "text"
                    },
                    "status": "text",
                    "card": {
                      "status": "text",
                      "order_status": "text",
                      "card_limit": {
                        "value": "text",
                        "currency": "text"
                      },
                      "card_limit_atm": {
                        "value": "text",
                        "currency": "text"
                      },
                      "country_permission": [
                        {
                          "country": "text",
                          "id": 1
                        }
                      ],
                      "pin_code_assignment": [
                        {
                          "type": "text",
                          "routing_type": "text",
                          "monetary_account_id": 1,
                          "status": "text"
                        }
                      ],
                      "primary_account_numbers": [
                        {
                          "id": 1,
                          "description": "text",
                          "status": "text",
                          "monetary_account_id": 1,
                          "uuid": "text",
                          "four_digit": "text",
                          "type": "text"
                        }
                      ],
                      "monetary_account_id_fallback": 1,
                      "preferred_name_on_card": "text",
                      "second_line": "text"
                    },
                    "amount_spent_monthly": {
                      "value": "text",
                      "currency": "text"
                    },
                    "number_of_company_employee_card_receipt_pending": 1
                  }
                ]
              },
              "share_type": "text",
              "start_date": "text",
              "end_date": "text",
              "description": "text"
            },
            "SofortMerchantTransaction": {
              "amount_requested": {
                "value": "text",
                "currency": "text"
              },
              "issuer": "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"
              },
              "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"
              },
              "amount_guaranteed": {
                "value": "text",
                "currency": "text"
              },
              "issuer_authentication_url": "text",
              "status": "text",
              "error_message": [
                [
                  {
                    "error_description": "text",
                    "error_description_translated": "text"
                  }
                ]
              ],
              "transaction_identifier": "text"
            },
            "TransferwisePayment": {
              "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"
              },
              "status": "text",
              "sub_status": "text",
              "status_transferwise": "text",
              "status_transferwise_issue": "text",
              "amount_source": {
                "value": "text",
                "currency": "text"
              },
              "amount_target": {
                "value": "text",
                "currency": "text"
              },
              "rate": "text",
              "reference": "text",
              "pay_in_reference": "text",
              "time_delivery_estimate": "text",
              "quote": {
                "amount_source": {
                  "value": "text",
                  "currency": "text"
                },
                "amount_target": {
                  "value": "text",
                  "currency": "text"
                },
                "id": 1,
                "created": "text",
                "updated": "text",
                "time_expiry": "text",
                "quote_id": "text",
                "amount_fee": {
                  "value": "text",
                  "currency": "text"
                },
                "rate": "text",
                "time_delivery_estimate": "text"
              }
            }
          },
          "is_event_latest_for_object": true,
          "is_event_reassignable": true
        },
        "all_mastercard_action_refund": [
          {
            "type": "text",
            "sub_type": "text",
            "amount": {
              "value": "text",
              "currency": "text"
            },
            "reason": "text",
            "id": 1,
            "created": "text",
            "updated": "text",
            "label_user_creator": {
              "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"
            },
            "status": "text",
            "reference_mastercard_action_event": [
              {
                "event_id": 1
              }
            ],
            "mastercard_action_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"
            },
            "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",
            "label_card": {
              "uuid": "text",
              "type": "text",
              "second_line": "text",
              "expiry_date": "text",
              "status": "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"
              }
            },
            "time_refund": "text",
            "additional_information": {
              "category": "text",
              "reason": "text",
              "comment": "text",
              "attachment": [
                {
                  "id": 1
                }
              ],
              "terms_and_conditions": "text"
            },
            "status_description": "text",
            "status_description_translated": "text",
            "status_together_url": "text"
          }
        ],
        "pos_card_presence": "text",
        "pos_card_holder_presence": "text",
        "eligible_whitelist_id": 1,
        "cashback_payout_item": {
          "status": "text",
          "amount": {
            "value": "text",
            "currency": "text"
          },
          "rate_applied": "text",
          "transaction_category": {
            "category": "text",
            "type": "text",
            "status": "text",
            "order": 1,
            "description": "text",
            "description_translated": "text",
            "color": "text",
            "icon": "text"
          },
          "user_partner_promotion": {
            "status": "text",
            "number_of_transaction_remaining": 1,
            "partner_promotion": {
              "public_uuid": "text",
              "status": "text",
              "promotion_code": "text",
              "amount_cashback_per_transaction_maximum": {
                "value": "text",
                "currency": "text"
              },
              "number_of_transaction_maximum": 1,
              "amount_transaction_minimum": {
                "value": "text",
                "currency": "text"
              },
              "url_together": "text",
              "deeplink": "text",
              "partner_name": "text",
              "partner_avatar": {
                "uuid": "text",
                "anchor_uuid": "text",
                "image": [
                  {
                    "attachment_public_uuid": "text",
                    "content_type": "text",
                    "height": 1,
                    "width": 1
                  }
                ],
                "style": "text"
              },
              "promotion_title_short": [
                "text"
              ],
              "promotion_title_long": [
                "text"
              ],
              "promotion_description": [
                "text"
              ]
            }
          }
        },
        "point_mutation": {
          "number_of_point": 1
        },
        "blacklist": {
          "merchant_name": "text",
          "merchant_id": "text",
          "merchant_identifier": "text",
          "mastercard_merchant_id": "text",
          "external_merchant_id": "text",
          "id": 1,
          "created": "text",
          "updated": "text",
          "status": "text",
          "merchant_hash": "text",
          "merchant_avatar": {
            "uuid": "text",
            "anchor_uuid": "text",
            "image": [
              {
                "attachment_public_uuid": "text",
                "content_type": "text",
                "height": 1,
                "width": 1
              }
            ],
            "style": "text"
          }
        },
        "blocklist": {
          "merchant_name": "text",
          "merchant_id": "text",
          "merchant_identifier": "text",
          "mastercard_merchant_id": "text",
          "external_merchant_id": "text",
          "id": 1,
          "created": "text",
          "updated": "text",
          "status": "text",
          "merchant_hash": "text",
          "merchant_avatar": {
            "uuid": "text",
            "anchor_uuid": "text",
            "image": [
              {
                "attachment_public_uuid": "text",
                "content_type": "text",
                "height": 1,
                "width": 1
              }
            ],
            "style": "text"
          }
        },
        "additional_authentication_status": "text",
        "pin_status": "text",
        "mastercard_action_report": {
          "mastercard_action_id": 1,
          "type": "text",
          "status": "text",
          "merchant_id": "text",
          "merchant_name": "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"
          }
        },
        "merchant_category_code": "text",
        "company_employee_card_receipt": {
          "status": "text"
        }
      },
      "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": {
          "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": "[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
        }
      },
      "PaymentBatch": {
        "payments": {
          "Payment": [
            "[Circular Reference]"
          ]
        }
      },
      "RequestResponse": {
        "amount_responded": {
          "value": "text",
          "currency": "text"
        },
        "status": "text",
        "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
        },
        "id": 1,
        "created": "text",
        "updated": "text",
        "time_responded": "text",
        "time_expiry": "text",
        "time_refund_requested": "text",
        "time_refunded": "text",
        "user_refund_requested": {
          "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"
        },
        "monetary_account_id": 1,
        "amount_inquired": {
          "value": "text",
          "currency": "text"
        },
        "description": "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"
        },
        "attachment": [
          {
            "description": "text",
            "content_type": "text",
            "urls": [
              {
                "type": "text",
                "url": "text"
              }
            ]
          }
        ],
        "minimum_age": 1,
        "require_address": "text",
        "geolocation": {
          "latitude": 1,
          "longitude": 1,
          "altitude": 1,
          "radius": 1
        },
        "type": "text",
        "sub_type": "text",
        "redirect_url": "text",
        "credit_scheme_identifier": "text",
        "mandate_identifier": "text",
        "registration_action": "text",
        "eligible_whitelist_id": 1,
        "request_reference_split_the_bill": [
          {
            "type": "text",
            "id": 1
          }
        ],
        "event_id": 1,
        "monetary_account_preferred_id": 1
      },
      "ScheduleInstance": {
        "state": "text",
        "time_start": "text",
        "time_end": "text",
        "error_message": [
          [
            {
              "error_description": "text",
              "error_description_translated": "text"
            }
          ]
        ],
        "scheduled_object": {
          "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": {
              "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": "[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
            }
          },
          "PaymentBatch": {
            "payments": {
              "Payment": [
                "[Circular Reference]"
              ]
            }
          }
        },
        "result_object": {
          "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": {
              "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": "[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
            }
          },
          "PaymentBatch": {
            "payments": {
              "Payment": [
                "[Circular Reference]"
              ]
            }
          }
        },
        "request_reference_split_the_bill": [
          {
            "type": "text",
            "id": 1
          }
        ]
      },
      "WhitelistResult": {
        "id": 1,
        "monetary_account_paying_id": 1,
        "status": "text",
        "sub_status": "text",
        "error_message": [
          [
            {
              "error_description": "text",
              "error_description_translated": "text"
            }
          ]
        ],
        "whitelist": {},
        "object": {
          "id": 1,
          "requestResponse": {
            "amount_responded": {
              "value": "text",
              "currency": "text"
            },
            "status": "text",
            "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
            },
            "id": 1,
            "created": "text",
            "updated": "text",
            "time_responded": "text",
            "time_expiry": "text",
            "time_refund_requested": "text",
            "time_refunded": "text",
            "user_refund_requested": {
              "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"
            },
            "monetary_account_id": 1,
            "amount_inquired": {
              "value": "text",
              "currency": "text"
            },
            "description": "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"
            },
            "attachment": [
              {
                "description": "text",
                "content_type": "text",
                "urls": [
                  {
                    "type": "text",
                    "url": "text"
                  }
                ]
              }
            ],
            "minimum_age": 1,
            "require_address": "text",
            "geolocation": {
              "latitude": 1,
              "longitude": 1,
              "altitude": 1,
              "radius": 1
            },
            "type": "text",
            "sub_type": "text",
            "redirect_url": "text",
            "credit_scheme_identifier": "text",
            "mandate_identifier": "text",
            "registration_action": "text",
            "eligible_whitelist_id": 1,
            "request_reference_split_the_bill": [
              {
                "type": "text",
                "id": 1
              }
            ],
            "event_id": 1,
            "monetary_account_preferred_id": 1
          },
          "draftPayment": {
            "status": "text",
            "entries": [
              {
                "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",
                "merchant_reference": "text",
                "attachment": [
                  {
                    "id": 1,
                    "monetary_account_id": 1
                  }
                ],
                "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"
              }
            ],
            "schedule": {
              "time_start": "text",
              "time_end": "text",
              "recurrence_unit": "text",
              "recurrence_size": 1,
              "status": "text",
              "object": {
                "Payment": "[Circular Reference]",
                "PaymentBatch": "[Circular Reference]"
              }
            }
          }
        },
        "request_reference_split_the_bill": [
          {
            "type": "text",
            "id": 1
          }
        ]
      },
      "TransferwisePayment": {
        "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"
        },
        "status": "text",
        "sub_status": "text",
        "status_transferwise": "text",
        "status_transferwise_issue": "text",
        "amount_source": {
          "value": "text",
          "currency": "text"
        },
        "amount_target": {
          "value": "text",
          "currency": "text"
        },
        "rate": "text",
        "reference": "text",
        "pay_in_reference": "text",
        "time_delivery_estimate": "text",
        "quote": {
          "amount_source": {
            "value": "text",
            "currency": "text"
          },
          "amount_target": {
            "value": "text",
            "currency": "text"
          },
          "id": 1,
          "created": "text",
          "updated": "text",
          "time_expiry": "text",
          "quote_id": "text",
          "amount_fee": {
            "value": "text",
            "currency": "text"
          },
          "rate": "text",
          "time_delivery_estimate": "text"
        }
      },
      "CurrencyConversion": {
        "id": 1,
        "created": "text",
        "updated": "text",
        "status": "text",
        "date_delivery_expected": "text",
        "rate": "text",
        "amount": {
          "value": "text",
          "currency": "text"
        },
        "counter_amount": {
          "value": "text",
          "currency": "text"
        },
        "group_uuid": "text",
        "type": "text",
        "order_type": "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"
        },
        "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": {
            "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": "[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
          }
        }
      }
    }
  }
]
  • Call to SugarDaddy
  • Requesting money from other users
  • GET/user/{userID}/monetary-account/{monetary-accountID}/request-inquiry
  • Response