Sept 29, 2022

Enriched transaction response and webhook payloads

  • GET transaction and GET transactions requests now include class_code and same_day (applicable for ACH transactions) in the response payload, nested within details.

  • transaction webhook events now include class_code and same_day (applicable for ACH transactions) in the response payload, nested within details.

{
   "transaction_id":"ab76b780-35ba-4e17-97ec-be33e5ae77ce",
   "bond_brand_id":"abaa2147-4533-4ec7-a9f6-bd88a988ecd1",
   "customer_id":"8b7d235f-473c-4a27-a844-c73a34a324a8",
   "account_id":"2db78f0b-5c40-414d-ad79-231ecaf3f619",
   "payment_type":"ach",
   "transaction_type":"ACH Deposit",
   "state":"pending",
   "description":"test",
   "amount":"0.01",
   "currency":"USD",
   "created_time":"2022-09-28T23:07:16.795236+00:00",
   "updated_time":"2022-09-28T23:07:16.795236+00:00",
   "details":{
      "originating_account_id":"2db78f0b-5c40-414d-ad79-231ecaf3f619",
      "destination_account_id":"7033074d-772a-490e-a4cf-34823ec2103a",
      "class_code":"WEB",
      "same_day":false
   }
}