Bunq · Schema

BunqMeFundraiserProfile

Banking

Properties

Name Type Description
pointer object The pointer (url) which will be used to access the bunq.me fundraiser profile.
color string The color chosen for the bunq.me fundraiser profile in hexadecimal format.
alias object The LabelMonetaryAccount with the public information of the User and the MonetaryAccount that created the bunq.me fundraiser profile.
currency string The currency of the MonetaryAccount that created the bunq.me fundraiser profile.
description string The description of the bunq.me fundraiser profile.
attachment object The attachment attached to the fundraiser profile.
status string The status of the bunq.me fundraiser profile, can be ACTIVE or DEACTIVATED.
redirect_url string The URL which the user is sent to when a payment is completed.
invite_profile_name string Provided if the user has enabled their invite link.
merchant_available array List of available merchants.
View JSON Schema on GitHub

JSON Schema

bunq-bunqmefundraiserprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BunqMeFundraiserProfile",
  "title": "BunqMeFundraiserProfile",
  "type": "object",
  "properties": {
    "pointer": {
      "type": "object",
      "description": "The pointer (url) which will be used to access the bunq.me fundraiser profile.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/Pointer"
    },
    "color": {
      "type": "string",
      "description": "The color chosen for the bunq.me fundraiser profile in hexadecimal format.",
      "readOnly": true,
      "writeOnly": false
    },
    "alias": {
      "type": "object",
      "description": "The LabelMonetaryAccount with the public information of the User and the MonetaryAccount that created the bunq.me fundraiser profile.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "currency": {
      "type": "string",
      "description": "The currency of the MonetaryAccount that created the bunq.me fundraiser profile.",
      "readOnly": true,
      "writeOnly": false
    },
    "description": {
      "type": "string",
      "description": "The description of the bunq.me fundraiser profile.",
      "readOnly": true,
      "writeOnly": false
    },
    "attachment": {
      "type": "object",
      "description": "The attachment attached to the fundraiser profile.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/AttachmentPublic"
    },
    "status": {
      "type": "string",
      "description": "The status of the bunq.me fundraiser profile, can be ACTIVE or DEACTIVATED.",
      "readOnly": true,
      "writeOnly": false
    },
    "redirect_url": {
      "type": "string",
      "description": "The URL which the user is sent to when a payment is completed.",
      "readOnly": true,
      "writeOnly": false
    },
    "invite_profile_name": {
      "type": "string",
      "description": "Provided if the user has enabled their invite link.",
      "readOnly": true,
      "writeOnly": false
    },
    "merchant_available": {
      "type": "array",
      "description": "List of available merchants.",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/BunqMeMerchantAvailable"
      }
    }
  }
}