action bunq_list_all_payment_service_provider_draft_payment_for_user { description: "Manage the PaymentServiceProviderDraftPayment's for a PISP." provider: bunq method: GET path: "/user/{userID}/payment-service-provider-draft-payment" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { amount: { type: "object" properties: { currency: { type: "string" description: "The currency of the amount. It is an ISO 4217 formatted currency code." } value: { type: "string" description: "The amount formatted to two decimal places." } } } receiver_iban: { type: "string" description: "The sender IBAN." } sender_iban: { type: "string" description: "The sender IBAN." } status: { type: "string" description: "The status of the draft payment" } } } } }