Bunq · Schema

ShareInviteMonetaryAccountInquiry

Banking

Properties

Name Type Description
counter_user_alias object The label of the user to share with.
access_type string Type of access that is in place.
draft_share_invite_bank_id integer DEPRECATED: USE `access_type` INSTEAD | The id of the draft share invite bank.
share_detail object DEPRECATED: USE `access_type` INSTEAD | The share details. Only one of these objects may be passed.
status string The status of the share. Can be ACTIVE, REVOKED, REJECTED.
relationship string The relationship: COMPANY_DIRECTOR, COMPANY_EMPLOYEE, etc
share_type string DEPRECATED: USE `access_type` INSTEAD | The share type, either STANDARD or MUTUAL.
start_date string DEPRECATED: USE `access_type` INSTEAD | The start date of this share.
end_date string DEPRECATED: USE `access_type` INSTEAD | The expiration date of this share.
alias object The label of the monetary account that's being shared.
user_alias_created object The user who created the share.
user_alias_revoked object The user who revoked the share.
monetary_account_id integer The id of the monetary account the share applies to.
id integer The id of the newly created share invite.
View JSON Schema on GitHub

JSON Schema

bunq-shareinvitemonetaryaccountinquiry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShareInviteMonetaryAccountInquiry",
  "title": "ShareInviteMonetaryAccountInquiry",
  "type": "object",
  "properties": {
    "counter_user_alias": {
      "type": "object",
      "description": "The label of the user to share with.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelUser"
    },
    "access_type": {
      "type": "string",
      "description": "Type of access that is in place.",
      "readOnly": false,
      "writeOnly": false
    },
    "draft_share_invite_bank_id": {
      "type": "integer",
      "description": "DEPRECATED: USE `access_type` INSTEAD | The id of the draft share invite bank.",
      "readOnly": false,
      "writeOnly": true
    },
    "share_detail": {
      "type": "object",
      "description": "DEPRECATED: USE `access_type` INSTEAD | The share details. Only one of these objects may be passed.",
      "readOnly": false,
      "writeOnly": true,
      "$ref": "#/components/schemas/ShareDetail"
    },
    "status": {
      "type": "string",
      "description": "The status of the share. Can be ACTIVE, REVOKED, REJECTED.",
      "readOnly": false,
      "writeOnly": false
    },
    "relationship": {
      "type": "string",
      "description": "The relationship: COMPANY_DIRECTOR, COMPANY_EMPLOYEE, etc",
      "readOnly": false,
      "writeOnly": false
    },
    "share_type": {
      "type": "string",
      "description": "DEPRECATED: USE `access_type` INSTEAD | The share type, either STANDARD or MUTUAL.",
      "readOnly": false,
      "writeOnly": true
    },
    "start_date": {
      "type": "string",
      "description": "DEPRECATED: USE `access_type` INSTEAD | The start date of this share.",
      "readOnly": false,
      "writeOnly": true
    },
    "end_date": {
      "type": "string",
      "description": "DEPRECATED: USE `access_type` INSTEAD | The expiration date of this share.",
      "readOnly": false,
      "writeOnly": true
    },
    "alias": {
      "type": "object",
      "description": "The label of the monetary account that's being shared.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "user_alias_created": {
      "type": "object",
      "description": "The user who created the share.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelUser"
    },
    "user_alias_revoked": {
      "type": "object",
      "description": "The user who revoked the share.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelUser"
    },
    "monetary_account_id": {
      "type": "integer",
      "description": "The id of the monetary account the share applies to.",
      "readOnly": true,
      "writeOnly": false
    },
    "id": {
      "type": "integer",
      "description": "The id of the newly created share invite.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}