action increase_create_a_wire_drawdown_request { label: "Create a Wire Drawdown Request" provider: increase method: POST path: "/wire_drawdown_requests" encoding: json input: { type: "object" required: ["account_number_id", "amount", "message_to_recipient", "recipient_account_number", "recipient_name", "recipient_routing_number"] properties: { account_number_id: { type: "string" description: "The Account Number to which the recipient should send funds." } amount: { type: "integer" description: "The amount requested from the recipient, in cents." } message_to_recipient: { type: "string" description: "A message the recipient will see as part of the 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." } } } output: { 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: ["account_number_id", "amount", "currency", "fulfillment_transaction_id", "id", "message_to_recipient", "recipient_account_number", "recipient_address_line1", "recipient_address_line2", "recipient_address_line3", "recipient_name", "recipient_routing_number", "status", "submission", "type"] 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"] } } } }