A Check represents a type of payment method that may be associated to a transaction.
Properties
Property | Type | Description | Example |
---|---|---|---|
id | Number (integer) | A read-only unique identifier. | 1234567890 |
account | String | The ACH account number for the Check. | "99999999" |
routing | String | The ACH routing number for the Check. | "1234567890" |
accountholder | String | The name or business on the account. | "Firstname Lastname" |
external_id | String | Unique identifier used to look up batch. This is not generated by PaidYET. | "1234567890" |
Example
{
"id": 1234567890,
"account": "99999999",
"routing": "1234567890",
"accountholder": "Firstname Lastname",
"external_id": "1234567890"
}