action bunq_list_all_currency_cloud_beneficiary_requirement_for_user { description: "Endpoint to list requirements for CurrencyCloud beneficiaries." provider: bunq method: GET path: "/user/{userID}/currency-cloud-beneficiary-requirement" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { all_field: { type: "array" description: "The fields that are required." items: { type: "object" properties: { input_type: { type: "string" description: "The type of data to input. Determines the keyboard to display." } label: { type: "string" description: "The label to display for the field." } name: { type: "string" description: "The name of the field." } validation_expression: { type: "string" description: "The expression to validate field input." } } } } legal_entity_type: { type: "string" description: "The entity type this requirement is for." } payment_type: { type: "string" description: "The payment type this requirement is for." } } } } }