action bunq_list_all_note_text_for_user_monetary_account_request_inquiry { description: "Manage the notes for a given user." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/request-inquiry/{request-inquiryID}/note-text" encoding: json input: { type: "object" properties: { "monetary-accountID": { type: "integer" } "request-inquiryID": { type: "integer" } userID: { type: "integer" } } required: ["monetary-accountID", "request-inquiryID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { content: { type: "string" description: "The content of the note." } created: { type: "string" description: "The timestamp of the note's creation." } 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." } } } } }