action increase_list_inbound_wire_drawdown_requests { label: "List Inbound Wire Drawdown Requests" provider: increase method: GET path: "/inbound_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 Inbound Wire Drawdown Request objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "Inbound wire drawdown requests are requests from someone else to send them a wire. This feature is in beta; reach out to [support@increase.com](mailto:support@increase.com) to learn more." required: ["type", "id", "recipient_account_number_id", "originator_account_number", "originator_routing_number", "beneficiary_account_number", "beneficiary_routing_number", "amount", "currency", "message_to_recipient", "originator_to_beneficiary_information_line1", "originator_to_beneficiary_information_line2", "originator_to_beneficiary_information_line3", "originator_to_beneficiary_information_line4", "originator_name", "originator_address_line1", "originator_address_line2", "originator_address_line3", "beneficiary_name", "beneficiary_address_line1", "beneficiary_address_line2", "beneficiary_address_line3"] properties: { amount: { type: "integer" description: "The amount being requested in cents." } beneficiary_account_number: { type: "string" description: "The drawdown request's beneficiary's account number." } beneficiary_address_line1: { type: "string" description: "Line 1 of the drawdown request's beneficiary's address." } beneficiary_address_line2: { type: "string" description: "Line 2 of the drawdown request's beneficiary's address." } beneficiary_address_line3: { type: "string" description: "Line 3 of the drawdown request's beneficiary's address." } beneficiary_name: { type: "string" description: "The drawdown request's beneficiary's name." } beneficiary_routing_number: { type: "string" description: "The drawdown request's beneficiary's routing number." } currency: { type: "string" description: "The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being requested. Will always be \"USD\"." } id: { type: "string" description: "The Wire drawdown request identifier." } message_to_recipient: { type: "string" description: "A message from the drawdown request's originator." } originator_account_number: { type: "string" description: "The drawdown request's originator's account number." } originator_address_line1: { type: "string" description: "Line 1 of the drawdown request's originator's address." } originator_address_line2: { type: "string" description: "Line 2 of the drawdown request's originator's address." } originator_address_line3: { type: "string" description: "Line 3 of the drawdown request's originator's address." } originator_name: { type: "string" description: "The drawdown request's originator's name." } originator_routing_number: { type: "string" description: "The drawdown request's originator's routing number." } originator_to_beneficiary_information_line1: { type: "string" description: "Line 1 of the information conveyed from the originator of the message to the beneficiary." } originator_to_beneficiary_information_line2: { type: "string" description: "Line 2 of the information conveyed from the originator of the message to the beneficiary." } originator_to_beneficiary_information_line3: { type: "string" description: "Line 3 of the information conveyed from the originator of the message to the beneficiary." } originator_to_beneficiary_information_line4: { type: "string" description: "Line 4 of the information conveyed from the originator of the message to the beneficiary." } recipient_account_number_id: { type: "string" description: "The Account Number from which the recipient of this request is being requested to send funds." } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `inbound_wire_drawdown_request`." enum: ["inbound_wire_drawdown_request"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }