action bunq_list_all_share_invite_monetary_account_inquiry_for_user_monetary { description: "[DEPRECATED - use /share-invite-monetary-account-response] Get a list with all the share inquiries for a monetary account, only if the requesting user has permission to change the details of the various ones." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/share-invite-monetary-account-inquiry" encoding: json input: { type: "object" properties: { "monetary-accountID": { type: "integer" } userID: { type: "integer" } } required: ["monetary-accountID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { access_type: { type: "string" description: "Type of access that is in place." } alias: { type: "object" properties: { avatar: { type: "object" properties: { anchor_uuid: { type: "string" description: "The public UUID of object this avatar is anchored to." } image: { type: "array" description: "The actual image information of this avatar." items: { type: "object" properties: { attachment_public_uuid: { type: "string" description: "The public UUID of the public attachment containing the image." } content_type: { type: "string" description: "The content-type as a MIME filetype." } height: { type: "integer" description: "The image height in pixels." } width: { type: "integer" description: "The image width in pixels." } } } } style: { type: "string" description: "The style (if applicable) for this Avatar." } uuid: { type: "string" description: "The public UUID of the avatar." } } } bunq_me: { type: "object" properties: { name: { type: "string" description: "The alias name." } service: { type: "string" description: "The pointer service. Only required for external counterparties." } type: { type: "string" description: "The alias type, can be: EMAIL|PHONE_NUMBER|IBAN." } value: { type: "string" description: "The alias value." } } } country: { type: "string" description: "The country of the user. Formatted as a ISO 3166-1 alpha-2 country code." } display_name: { type: "string" description: "The name to display with this monetary account." } iban: { type: "string" description: "The IBAN of the monetary account." } is_light: { type: "boolean" description: "Whether or not the monetary account is light." } label_user: { type: "object" properties: { avatar: { type: "object" additionalProperties: true } country: { type: "string" description: "The country of the user. 000 stands for \"unknown\"" } display_name: { type: "string" description: "The name to be displayed for this user, as it was given on the request." } public_nick_name: { type: "string" description: "The current nickname of the user." } uuid: { type: "string" description: "The public UUID of the label-user." } } } merchant_category_code: { type: "string" description: "The merchant category code." } swift_account_number: { type: "string" description: "The account number used for a SWIFT payment. May or may not be an IBAN." } swift_bic: { type: "string" description: "The BIC used for a SWIFT payment." } transferwise_account_number: { type: "string" description: "The account number used for a Transferwise payment. May or may not be an IBAN." } transferwise_bank_code: { type: "string" description: "The bank code used for a Transferwise payment. May or may not be a BIC." } } } counter_user_alias: { type: "object" additionalProperties: true } id: { type: "integer" description: "The id of the newly created share invite." } monetary_account_id: { type: "integer" description: "The id of the monetary account the share applies to." } relationship: { type: "string" description: "The relationship: COMPANY_DIRECTOR, COMPANY_EMPLOYEE, etc" } status: { type: "string" description: "The status of the share. Can be ACTIVE, REVOKED, REJECTED." } user_alias_created: { type: "object" additionalProperties: true } user_alias_revoked: { type: "object" additionalProperties: true } } } } }