action increase_retrieve_an_inbound_wire_drawdown_request { label: "Retrieve an Inbound Wire Drawdown Request" provider: increase method: GET path: "/inbound_wire_drawdown_requests/{inbound_wire_drawdown_request_id}" encoding: json input: { type: "object" properties: { inbound_wire_drawdown_request_id: { type: "string" description: "The identifier of the Inbound Wire Drawdown Request to retrieve." } } required: ["inbound_wire_drawdown_request_id"] additionalProperties: false } output: { 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: ["amount", "beneficiary_account_number", "beneficiary_address_line1", "beneficiary_address_line2", "beneficiary_address_line3", "beneficiary_name", "beneficiary_routing_number", "currency", "id", "message_to_recipient", "originator_account_number", "originator_address_line1", "originator_address_line2", "originator_address_line3", "originator_name", "originator_routing_number", "originator_to_beneficiary_information_line1", "originator_to_beneficiary_information_line2", "originator_to_beneficiary_information_line3", "originator_to_beneficiary_information_line4", "recipient_account_number_id", "type"] 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"] } } } }