Bunq · Schema

TransferwiseUserListing

Banking

Properties

Name Type Description
id integer The id of the TransferwiseUser.
created string The timestamp of the TransferwiseUser's creation.
updated string The timestamp of the TransferwiseUser's last update.
name string The name the user is registered with at TransferWise.
email string The email the user is registered with at TransferWise.
source string The source of the user at TransferWise.
View JSON Schema on GitHub

JSON Schema

bunq-transferwiseuserlisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferwiseUserListing",
  "title": "TransferwiseUserListing",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the TransferwiseUser.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the TransferwiseUser's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the TransferwiseUser's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "name": {
      "type": "string",
      "description": "The name the user is registered with at TransferWise.",
      "readOnly": true,
      "writeOnly": false
    },
    "email": {
      "type": "string",
      "description": "The email the user is registered with at TransferWise.",
      "readOnly": true,
      "writeOnly": false
    },
    "source": {
      "type": "string",
      "description": "The source of the user at TransferWise.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}