action bunq_list_all_note_attachment_for_user_monetary_account_mastercard_ac { description: "Manage the notes for a given user." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/mastercard-action/{mastercard-actionID}/note-attachment" encoding: json input: { type: "object" properties: { "mastercard-actionID": { type: "integer" } "monetary-accountID": { type: "integer" } userID: { type: "integer" } } required: ["mastercard-actionID", "monetary-accountID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attachment: { type: "array" description: "The attachment attached to the note." items: { type: "object" properties: { id: { type: "integer" description: "The id of the attached Attachment." } monetary_account_id: { type: "integer" description: "The id of the MonetaryAccount this Attachment is attached from." } } } } created: { type: "string" description: "The timestamp of the note's creation." } description: { type: "string" description: "Optional description of the attachment." } id: { type: "integer" description: "The id of the note." } label_user_creator: { 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." } } } 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." } } } updated: { type: "string" description: "The timestamp of the note's last update." } } } } }