Skip to main content
API Reference
Cards
Inbound Real-Time Payments Requests for Payment

An Inbound Real-Time Payments Request for Payment is a request initiated outside of Increase for one of your accounts to send a Real-Time Payments transfer.

Events
Your application can listen to webhooks about this resource. The events about Inbound Real-Time Payments Requests for Payment will have the categories "inbound_real_time_payments_request_for_payment.created" or "inbound_real_time_payments_request_for_payment.updated" .
The Inbound Real-Time Payments Request for Payment object
{
  "account_id": "account_in71c4amph0vgo2qllky",
  "account_number_id": "account_number_v18nkfqm6afpsrvy82b2",
  "amount": 100,
  "created_at": "2020-01-31T23:59:59Z",
  "creditor": {
    "account_name": "National Phonograph Company",
    "address": {
      "address_line2": "Unit 2",
      "building_number": "33",
      "city": "New York",
      "country": "US",
      "postal_code": "10045",
      "state": "NY",
      "street_name": "Liberty Street"
    },
    "name": "National Phonograph Company"
  },
  "creditor_account_number": "987654321",
  "creditor_routing_number": "101050001",
  "currency": "USD",
  "debtor_name": "Ian Crease",
  "end_to_end_identification": "Invoice 29582",
  "expires_at": "2020-02-07T23:59:59Z",
  "fulfillment_real_time_payments_transfer_id": null,
  "id": "inbound_real_time_payments_request_for_payment_j9c5rm4hr6qf34en8tky",
  "invoicer_identification": null,
  "payment_information_identification": "20220501234567891T1BSLZO01745013025",
  "requested_execution_at": "2020-01-31T23:59:59Z",
  "type": "inbound_real_time_payments_request_for_payment",
  "unstructured_remittance_information": "Invoice 29582"
}
Attributes
account_id
string

The Account the request for payment is for.

More about Accounts.
account_number_id
string

The identifier of the Account Number the request for payment is for.

More about Account Numbers.
amount
integer

The requested amount in USD cents.

created_at
string

The ISO 8601 date and time at which the request for payment was created.

creditor
dictionary

Details of the party requesting payment.

creditor_account_number
string

The creditor’s account number.

creditor_routing_number
string

The creditor’s American Bankers’ Association (ABA) Routing Transit Number (RTN).

currency
enum

The ISO 4217 code of the requested currency. This will always be “USD” for a Real-Time Payments request for payment.

debtor_name
string

The name of the account holder the payment is requested from, as provided by the creditor.

end_to_end_identification
string

A free-form reference string set by the creditor, to help identify the request for payment.

expires_at
string

The ISO 8601 date and time after which the request for payment is no longer valid and should no longer be paid.

fulfillment_real_time_payments_transfer_id
string
Nullable

The identifier of the Real-Time Payments Transfer that fulfilled this request for payment. This is set once a transfer sent in response to the request for payment has been acknowledged by the Real-Time Payments network.

More about Real-Time Payments Transfers.
id
string

The inbound Real-Time Payments request for payment’s identifier.

invoicer_identification
string
Nullable

An identifier for the party that issued the invoice, for requests for payment sent on behalf of another party.

payment_information_identification
string

The Real-Time Payments network identification of the request for payment.

requested_execution_at
string
Nullable

The ISO 8601 date and time by which the creditor requests the payment to be made.

type
string

A constant representing the object’s type. For this resource it will always be inbound_real_time_payments_request_for_payment.

unstructured_remittance_information
string
Nullable

Unstructured information included with the request for payment.

List Inbound Real-Time Payments Requests for Payment
curl \
  --url "${INCREASE_URL}/inbound_real_time_payments_requests_for_payment?account_id=account_in71c4amph0vgo2qllky" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
Returns a list response :
{
  "data": [
    { /* Inbound Real-Time Payments Request for Payment object */ },
    { /* Inbound Real-Time Payments Request for Payment object */ }
    /* ... */
  ],
  "next_cursor": "v57w5d",
}
Parameters
account_id
string

Filter Inbound Real-Time Payments Requests for Payment to those belonging to the specified Account.

More about Accounts.
account_number_id
string

Filter Inbound Real-Time Payments Requests for Payment to ones belonging to the specified Account Number.

More about Account Numbers.
More parameters
Retrieve an Inbound Real-Time Payments Request for Payment
curl \
  --url "${INCREASE_URL}/inbound_real_time_payments_requests_for_payment/inbound_real_time_payments_request_for_payment_j9c5rm4hr6qf34en8tky" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
Parameters
inbound_real_time_payments_request_for_payment_id
string
Required

The identifier of the Inbound Real-Time Payments Request for Payment to get details for.