A Check represents a type of payment method that may be associated to a transaction.

Properties

PropertyTypeDescriptionExample
idNumber(integer)A read-only unique identifier.1234567890
accountStringThe ACH account number for the Check."99999999"
routingStringThe ACH routing number for the Check."1234567890"
accountholderStringThe name or business on the account."Firstname Lastname"
external_idStringUnique 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"
}