A paper_item
represents a check, money order, etc. that has been received at your lockbox through the bank.
Attribute | Description |
---|---|
id string | A unique identifier for the paper item. |
transaction_line_item_id string | The ID of the relevant Transaction Line Item or null . |
transaction_id string | The ID of the relevant Transaction or null . |
status string | The current status of the paper item. One of pending , completed , or returned . |
lockbox_number string | The identifier for the lockbox assigned by the bank. |
deposit_date date | The date the paper item was deposited into your organization's bank account. |
amount int | The amount of the paper item. |
currency string | The currency of the paper item. |
routing_number string | The routing number on the paper item. |
account_number string | The account number on the paper item. |
check_number string | The check number on the paper item. |
remitter_name string | The name of the remitter on the paper item. |
memo_field string | The memo field on the paper item. |
live_mode boolean | This field will be true if this object exists in the live environment or false if it exists in the test environment. |
{
"id": "95dd2b4e-ead2-4167-a8c8-dc6cfcf20214",
"object": "paper_item",
"status": "pending",
"lockbox_number": "6789",
"deposit_date": "2018-11-29",
"amount": 100000000,
"currency": "USD",
"routing_number": "021000021",
"account_number": "12345",
"check_number": "5000",
"remitter_name": "Carl Quigley",
"memo_field": "New Bike",
"live_mode": true,
"created_at": "2019-11-09T00:11:07Z",
"updated_at": "2019-11-09T00:11:07Z"
}