action increase_list_wire_drawdown_requests { label: "List Wire Drawdown Requests" provider: increase method: GET path: "/wire_drawdown_requests" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "Return the page of entries after this one." } limit: { type: "integer" description: "Limit the size of the list that is returned. The default (and maximum) is 100 objects." } } additionalProperties: false } output: { type: "object" description: "A list of Wire Drawdown Request objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "Wire drawdown requests enable you to request that someone else send you a wire. This feature is in beta; reach out to [support@increase.com](mailto:support@increase.com) to learn more." required: ["type", "id", "account_number_id", "recipient_account_number", "recipient_routing_number", "amount", "currency", "message_to_recipient", "recipient_name", "recipient_address_line1", "recipient_address_line2", "recipient_address_line3", "submission", "fulfillment_transaction_id", "status"] properties: { account_number_id: { type: "string" description: "The Account Number to which the recipient of this request is being requested to send funds." } amount: { type: "integer" description: "The amount being requested in cents." } currency: { type: "string" description: "The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being requested. Will always be \"USD\"." } fulfillment_transaction_id: { type: "string" description: "If the recipient fulfills the drawdown request by sending funds, then this will be the identifier of the corresponding Transaction." } id: { type: "string" description: "The Wire drawdown request identifier." } message_to_recipient: { type: "string" description: "The message the recipient will see as part of the drawdown request." } recipient_account_number: { type: "string" description: "The drawdown request's recipient's account number." } recipient_address_line1: { type: "string" description: "Line 1 of the drawdown request's recipient's address." } recipient_address_line2: { type: "string" description: "Line 2 of the drawdown request's recipient's address." } recipient_address_line3: { type: "string" description: "Line 3 of the drawdown request's recipient's address." } recipient_name: { type: "string" description: "The drawdown request's recipient's name." } recipient_routing_number: { type: "string" description: "The drawdown request's recipient's routing number." } status: { type: "string" description: "The lifecycle status of the drawdown request." enum: ["pending_submission", "pending_response", "fulfilled", "refused"] } submission: { type: "object" description: "After the drawdown request is submitted to Fedwire, this will contain supplemental details." required: ["input_message_accountability_data"] properties: { input_message_accountability_data: { type: "string" description: "The input message accountability data (IMAD) uniquely identifying the submission with Fedwire." } } } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `wire_drawdown_request`." enum: ["wire_drawdown_request"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }