Skip to main content

Events

Unit uses Events to record important changes happening under your org. Once an event is created, it will be delivered to your application via a webhook call.

Our event types follow a specific structure: resource.event.

Each event includes an id field, which uniquely identifies the event instance, and a type field that identifies the type of the event instance.

Each event type includes a different set of attributes and relationships, relevant to that specific event.

Event attributes may contain a set of custom tags inherited from a related resource request.

account.created#

Occurs when an Account is created successfully.

Example account.created payload:
{  "data": [    {      "id": "269",      "type": "account.created",      "attributes": {        "createdAt": "2021-04-13T07:40:43.813Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "account": {          "data": {            "id": "10004",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

account.closed#

Occurs when an Account is closed.

Example account.closed payload:
{  "data": [    {      "id": "269",      "type": "account.closed",      "attributes": {        "createdAt": "2021-04-13T07:40:43.813Z",        "closeReason": "ByCustomer",        "tags": {          "tag": "value"        }      },      "relationships": {        "account": {          "data": {            "id": "10004",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

account.reopened#

Occurs when a closed Account is reopened.

Example account.reopened payload:
{  "data": [    {      "id": "2724",      "type": "account.reopened",      "attributes": {        "createdAt": "2021-12-13T07:40:43.813Z"      },      "relationships": {        "account": {          "data": {            "id": "10004",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

account.frozen#

Occurs when an Account is frozen.

Example account.frozen payload:
{  "data": [    {      "id": "2354",      "type": "account.frozen",      "attributes": {        "createdAt": "2021-11-08T07:43:13.813Z",        "freezeReason": "Fraud",        "tags": {          "tag": "value"        }      },      "relationships": {        "account": {          "data": {            "id": "10004",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

account.unfrozen#

Occurs when a frozen Account is unfrozen.

Example account.unfrozen payload:
{  "data": [    {      "id": "2355",      "type": "account.unfrozen",      "attributes": {        "createdAt": "2021-12-08T07:43:13.813Z"      },      "relationships": {        "account": {          "data": {            "id": "10004",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

account.updated#

Occurs when an Account is updated. The list of changes is provided in the changes attribute.

Example account.updated payload:
{  "data": [    {      "id": "269",      "type": "account.updated",      "attributes": {        "createdAt": "2023-04-13T07:40:43.813Z",        "changes": {          "depositProduct": {            "previous": "934",            "current": "120009"          }        }      },      "relationships": {        "account": {          "data": {            "id": "10004",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

application.created#

Occurs when an Application is created.

Example application.created payload:
{  "data": [    {      "id": "28",      "type": "application.created",      "attributes": {        "createdAt": "2020-07-29T12:53:05.882Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "application": {          "data": {            "id": "52",            "type": "individualApplication"          }        }      }    }  ]}

application.denied#

Occurs when an Application is denied.

Example application.denied payload:
{  "data": [    {      "id": "28",      "type": "application.denied",      "attributes": {        "createdAt": "2020-07-29T12:53:05.882Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "application": {          "data": {            "id": "52",            "type": "individualApplication"          }        }      }    }  ]}

application.canceled#

Occurs when an Application is canceled.

Example application.canceled payload:
{  "data": [    {      "id": "28",      "type": "application.canceled",      "attributes": {        "createdAt": "2020-07-29T12:53:05.882Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "application": {          "data": {            "id": "52",            "type": "individualApplication"          }        }      }    }  ]}

application.pendingReview#

Occurs when an Application is in pendingReview state.

Example application.pendingReview payload:
{  "data": [    {      "id": "28",      "type": "application.pendingReview",      "attributes": {        "createdAt": "2020-07-29T12:53:05.882Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "application": {          "data": {            "id": "52",            "type": "individualApplication"          }        }      }    }  ]}

application.awaitingDocuments#

Occurs when additional Application Documents are required to approve an Application.

Example application.awaitingDocuments payload:
{  "data": [    {      "id": "3000",      "type": "application.awaitingDocuments",      "attributes": {        "createdAt": "2020-07-29T12:53:05.882Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "application": {          "data": {            "id": "87",            "type": "individualApplication"          }        }      }    }  ]}

authorization.created#

Occurs when an Authorization is created.

Example authorization.created payload:
{  "data": [    {      "id": "83",      "type": "authorization.created",      "attributes": {        "createdAt": "2021-02-21T07:31:18.692Z",        "amount": 1500,        "available": 2000,        "cardLast4Digits": "0019",        "merchant": {          "name": "Apple Inc.",          "type": "1000",          "id": "311204598883"        },        "recurring": false,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorization": {          "data": {            "id": "98",            "type": "authorization"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "1",            "type": "card"          }        }      }    }  ]}

authorization.canceled#

Occurs when an Authorization is canceled.

Example authorization.canceled payload:
{  "data": [    {      "id": "83",      "type": "authorization.canceled",      "attributes": {        "createdAt": "2021-02-21T07:31:18.692Z",        "amount": 1500,        "available": 2000,        "cardLast4Digits": "0019",        "recurring": false,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorization": {          "data": {            "id": "98",            "type": "authorization"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "1",            "type": "card"          }        }      }    }  ]}

authorization.amountChanged#

Occurs when an Authorization amount is changed. This event will be followed by an authorizationRequest.pending event.

Example authorization.amountChanged payload:
{  "data": [    {      "id": "83",      "type": "authorization.amountChanged",      "attributes": {        "createdAt": "2021-02-21T07:31:18.692Z",        "oldAmount": 1700,        "newAmount": 2000,        "available": 2000,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorization": {          "data": {            "id": "98",            "type": "authorization"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "1",            "type": "card"          }        }      }    }  ]}

authorization.declined#

Occurs when an Authorization is declined.

Example authorization.declined payload:
{  "data": [    {      "id": "83",      "type": "authorization.declined",      "attributes": {        "createdAt": "2021-02-21T07:31:18.692Z",        "amount": 1500,        "available": 1400,        "cardLast4Digits": "0019",        "merchant": {          "name": "Apple Inc.",          "type": "1000",          "id": "311204598883"        },        "recurring": false,        "reason": "InsufficientFunds",        "tags": {          "tag": "value"        }      },      "relationships": {        "authorization": {          "data": {            "id": "98",            "type": "authorization"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "1",            "type": "card"          }        }      }    }  ]}

authorization.updated#

Occurs when an Authorization is updated.

Example authorization.updated payload:
{  "data": [    {      "id": "83",      "type": "authorization.updated",      "attributes": {        "createdAt": "2021-02-21T07:31:18.692Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "authorization": {          "data": {            "id": "98",            "type": "authorization"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "1",            "type": "card"          }        }      }    }  ]}

authorizationRequest.approved#

Example authorizationRequest.approved payload:
{  "data": [    {      "id": "412",      "type": "authorizationRequest.approved",      "attributes": {        "createdAt": "2021-06-24T08:10:08.081Z",        "amount": 2000,        "available": 2500,        "status": "Approved",        "approvedAmount": 2000,        "partialApprovalAllowed": false,        "merchant": {          "name": "Merchant name",          "type": "6012",          "id": "311204598883"        },        "recurring": false,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorizationRequest": {          "data": {            "id": "6",            "type": "purchaseAuthorizationRequest"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "7",            "type": "card"          }        }      }    }  ]}

authorizationRequest.declined#

Example authorizationRequest.declined payload:
{  "data": [    {      "id": "412",      "type": "authorizationRequest.declined",      "attributes": {        "createdAt": "2021-06-24T08:10:08.081Z",        "amount": 2000,        "available": 1900,        "status": "Declined",        "declineReason": "InsufficientFunds",        "partialApprovalAllowed": false,        "merchant": {          "name": "Merchant name",          "type": "6012",          "id": "311204598883"        },        "recurring": false,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorizationRequest": {          "data": {            "id": "6",            "type": "purchaseAuthorizationRequest"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "7",            "type": "card"          }        }      }    }  ]}

authorizationRequest.pending (Purchase)#

Occurs when a Purchase related AuthorizationRequest is pending approval. See Programmatic authorization of card use

Example authorizationRequest.pending payload:
{  "data": [    {      "id": "412",      "type": "authorizationRequest.pending",      "attributes": {        "createdAt": "2021-06-24T08:10:08.081Z",        "amount": 2000,        "available": 150000,        "status": "Pending",        "partialApprovalAllowed": false,        "merchant": {          "name": "Merchant name",          "type": "6012",          "id": "311204598883"        },        "recurring": false,        "ecommerce": true,        "cardPresent": false,        "direction": "Debit",        "mustBeApproved": false,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorizationRequest": {          "data": {            "id": "6",            "type": "purchaseAuthorizationRequest"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "7",            "type": "card"          }        }      }    }  ]}

authorizationRequest.pending (CardTransaction)#

Occurs when a CardTransaction related AuthorizationRequest is pending approval. See Programmatic authorization of card use

Note that the type of the authorization request under relationships here is capitalised (CardTransactionAuthorizationRequest), unlike the corresponding resource.

Example authorizationRequest.pending payload:
{  "data": [    {      "id": "415",      "type": "authorizationRequest.pending",      "attributes": {        "createdAt": "2021-06-24T08:10:08.081Z",        "amount": 2000,        "available": 150000,        "status": "Pending",        "direction": "Debit",        "partialApprovalAllowed": false,        "merchant": {          "name": "Merchant name",          "type": "6012",          "id": "311204598883"        },        "recurring": false,        "mustBeApproved": false,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorizationRequest": {          "data": {            "id": "8",            "type": "CardTransactionAuthorizationRequest"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "7",            "type": "card"          }        }      }    }  ]}

authorizationRequest.pending (IIAS)#

Occurs when an IIAS related AuthorizationRequest is pending approval. See Programmatic authorization of card use

Example IIAS authorizationRequest.pending payload:
{  "data": [    {      "id": "412",      "type": "authorizationRequest.pending",      "attributes": {        "createdAt": "2021-06-24T08:10:08.081Z",        "amount": 2000,        "available": 150000,        "status": "Pending",        "partialApprovalAllowed": true,        "merchant": {          "name": "Merchant name",          "type": "6012"        },        "recurring": false,        "ecommerce": true,        "cardPresent": false,        "healthCareAmounts": {          "transitAmount": 0,          "prescriptionRXAmount": 0,          "visionOpticalAmount": 2000,          "clinicOtherQualifiedMedicalAmount": 0,          "dentalAmount": 0,          "totalHealthcareAmount": 2000        },        "direction": "Debit",        "mustBeApproved": false,        "tags": {          "tag": "value"        }      },      "relationships": {        "authorizationRequest": {          "data": {            "id": "6",            "type": "purchaseAuthorizationRequest"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "card": {          "data": {            "id": "7",            "type": "card"          }        }      }    }  ]}

bulkPayments.failed#

Occurs when a Payment in bulk failed.

Example bulkPayments.failed payload:
{  "data": [    {      "id": "1",      "type": "bulkPayments.failed",      "attributes": {        "createdAt": "2021-01-02T13:38:28.223Z",        "tags": {          "tag": "value"        },        "index": "2",        "error": "{\"title\":\"User is not allowed to create a payment\",\"status\":\"403\"}",        "idempotencyKey": "1 2"      },      "relationships": {        "bulkPayments": {          "data": {            "id": "1",            "type": "bulkPayments"          }        }      }    }  ]}

bulkPayments.finished#

Occurs when a Payments bulk is finished.

Example bulkPayments.finished payload:
{  "data": [    {      "id": "1",      "type": "bulkPayments.finished",      "attributes": {        "createdAt": "2021-01-02T13:38:28.223Z"      },      "relationships": {        "bulkPayments": {          "data": {            "id": "1",            "type": "bulkPayments"          }        }      }    }  ]}

card.created#

Occurs when a Card is created successfully.

Example card.created payload:
{  "data": [    {      "id": "73",      "type": "card.created",      "attributes": {        "createdAt": "2021-02-15T09:23:47.778Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "card": {          "data": {            "id": "6",            "type": "individualDebitCard"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

card.activated#

Occurs when a Card is activated for the first time.

Example card.activated payload:
{  "data": [    {      "id": "73",      "type": "card.activated",      "attributes": {        "createdAt": "2021-02-15T09:23:47.778Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "card": {          "data": {            "id": "6",            "type": "individualDebitCard"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

card.statusChanged#

Occurs when a Card status changes, excluding first time card activation (see card.activated).

Example card.statusChanged payload:
{  "data": [    {      "id": "74",      "type": "card.statusChanged",      "attributes": {        "createdAt": "2021-02-22T09:23:47.778Z",        "newStatus": "Lost",        "previousStatus": "Active",        "tags": {          "tag": "value"        }      },      "relationships": {        "card": {          "data": {            "id": "6",            "type": "individualDebitCard"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkDeposit.created#

Occurs when a Check Deposit is created.

Example checkDeposit.created payload:
{  "data": [    {      "id": "382",      "type": "checkDeposit.created",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z",        "status": "AwaitingImages",        "tags": {          "tag": "value"        }      },      "relationships": {        "checkDeposit": {          "data": {            "id": "122",            "type": "checkDeposit"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkDeposit.pendingReview#

Occurs when a Check Deposit is pending review.

Example checkDeposit.pendingReview payload:
{  "data": [    {      "id": "376",      "type": "checkDeposit.pendingReview",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "AwaitingBackImage",        "tags": {          "tag": "value"        }      },      "relationships": {        "checkDeposit": {          "data": {            "id": "122",            "type": "checkDeposit"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkDeposit.pending#

Occurs when a Check Deposit is pending processing.

Example checkDeposit.pending payload:
{  "data": [    {      "id": "376",      "type": "checkDeposit.pending",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "PendingReview",        "tags": {          "tag": "value"        }      },      "relationships": {        "checkDeposit": {          "data": {            "id": "122",            "type": "checkDeposit"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkDeposit.rejected#

Occurs when a Check Deposit was rejected.

Example checkDeposit.rejected payload:
{  "data": [    {      "id": "411",      "type": "checkDeposit.rejected",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Pending",        "reason": "Cannot read check. Please retake photo. Have steady hands, good lighting, and four check corners visible.",        "tags": {          "tag": "value"        }      },      "relationships": {        "checkDeposit": {          "data": {            "id": "122",            "type": "checkDeposit"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkDeposit.clearing#

Occurs when a Check Deposit is in the process of being cleared.

Example checkDeposit.clearing payload:
{  "data": [    {      "id": "376",      "type": "checkDeposit.clearing",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Pending",        "tags": {          "tag": "value"        }      },      "relationships": {        "checkDeposit": {          "data": {            "id": "122",            "type": "checkDeposit"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkDeposit.sent#

Occurs when a Check Deposit was processed.

Example checkDeposit.sent payload:
{  "data": [    {      "id": "376",      "type": "checkDeposit.sent",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Clearing",        "tags": {          "tag": "value"        }      },      "relationships": {        "checkDeposit": {          "data": {            "id": "122",            "type": "checkDeposit"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkDeposit.returned#

Occurs when a Check Deposit was returned.

Example checkDeposit.returned payload:
{  "data": [    {      "id": "376",      "type": "checkDeposit.returned",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Sent",        "tags": {          "tag": "value"        }      },      "relationships": {        "checkDeposit": {          "data": {            "id": "122",            "type": "checkDeposit"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.created#

Occurs when a Check Payment is created.

Example checkPayment.created payload:
{  "data": [    {      "id": "382",      "type": "checkPayment.created",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z",        "status": "Processed",        "additionalVerificationStatus": true      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          },          "transaction": {            "data": {              "id": "10001",              "type": "transaction"            }          }        }      }    }  ]}

checkPayment.markedForReturn#

Occurs when a Check Payment was marked for return after being pending review status.

Example checkPayment.markedForReturn payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.markedForReturn",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "PendingReview"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.processed#

Occurs when a Check Payment was processed after being in status pending review.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.processed",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "PendingReview",        "additionalVerificationStatus": true      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        },        "transaction": {          "data": {            "id": "10001",            "type": "transaction"          }        }      }    }  ]}

checkPayment.returned#

Occurs when a Check Payment was returned after being in marked for return status.

Example checkPayment.returned payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.returned",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "MarkedForReturn"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.pending#

Occurs when a Check Payment is created successfully and changes to pending status. If the counterparty's address has been modified due to a National Change of Address, this will be indicated by the counterpartyMoved flag.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.pending",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "status": "Pending",        "previousStatus": "New",        "counterpartyMoved": true      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.inProduction#

Occurs when a Check Payment was inProduction after being in status pending.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.inProduction",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Pending"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.inDelivery#

Occurs when a Check Payment was inDelivery after being in status inProduction.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.inDelivery",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "InProduction",        "status": "InDelivery",        "deliveryStatus": "Mailed",        "trackedAt": "2021-06-06T07:21:39.509Z"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.delivered#

Occurs when a Check Payment was delivered after being in status inDelivery.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.delivered",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "status": "Delivered",        "previousStatus": "InDelivery"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.returnToSender#

Fired when a Check Payment is returned to sender. This can occur after the check is delivered. No check payment events are expected after a return to sender is triggered.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.returnToSender",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "status": "Delivered",        "previousStatus": "InDelivery"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.canceled#

Occurs when a Check Payment was canceled after being in status pending.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.canceled",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Pending"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.deliveryStatusChanged#

Occurs when a Check Payment has a status update.

Example checkPayment.processed payload:
{  "data": [    {      "id": "376",      "type": "checkPayment.deliveryStatusChanged",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousDeliveryStatus": "InLocalArea",        "NewDeliveryStatus": "Rerouted",        "trackedAt": "2021-06-06T09:21:39.509Z",        "postalCode": "11375"      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.additionalVerificationRequired#

Occurs when a Check Payment is created and requires an additional verification approval.

Example checkPayment.additionalVerificationRequired payload:
{  "data": [    {      "id": "382",      "type": "checkPayment.additionalVerificationRequired",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z",        "status": "Processed",        "amount": 30000000      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

checkPayment.additionalVerificationApproved#

Occurs when a Check Payment that required an additional verification is approved using additional verification approval.

Example checkPayment.additionalVerificationApproved payload:
{  "data": [    {      "id": "382",      "type": "checkPayment.additionalVerificationApproved",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z",        "status": "Processed",        "amount": 30000000      },      "relationships": {        "checkPayment": {          "data": {            "id": "122",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

stopPayment.created#

Occurs when a Stop Payment is created.

Example stopPayment.created payload:
{  "data": [    {      "id": "382",      "type": "stopPayment.created",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z"      },      "relationships": {        "stopPayment": {          "data": {            "id": "122",            "type": "stopPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

stopPayment.paymentStopped#

Occurs when a Stop Payment has stopped an incoming check payment.

Example stopPayment.paymentStopped payload:
{  "data": [    {      "id": "376",      "type": "stopPayment.paymentStopped",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "stoppedPaymentType": "checkPayment"      },      "relationships": {        "stopPayment": {          "data": {            "id": "122",            "type": "stopPayment"          }        },        "stoppedPayment": {          "data": {            "id": "1243",            "type": "checkPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

stopPayment.disabled#

Occurs when a Stop Payment was disabled.

Example stopPayment.disabled payload:
{  "data": [    {      "id": "376",      "type": "stopPayment.disabled",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "status": "Disabled",        "previousStatus": "Active"      },      "relationships": {        "stopPayment": {          "data": {            "id": "122",            "type": "stopPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

customer.created#

Occurs when a new Customer is created.

Example customer.created payload:
{  "data": [    {      "id": "28",      "type": "customer.created",      "attributes": {        "createdAt": "2020-07-29T12:53:05.882Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "customer": {          "data": {            "id": "52",            "type": "individualCustomer"          }        },        "application": {          "data": {            "id": "52",            "type": "individualApplication"          }        }      }    }  ]}

customer.updated#

Occurs when a Customer is updated (whether by the org, or by Unit, in case the fields being updated are sensitive fields ).

Example customer.updated payload:
{  "data": [    {      "id": "9",      "type": "customer.updated",      "attributes": {        "createdAt": "2021-11-29T17:23:08.778Z",        "changes": {          "phone": {            "countryCode": "1",            "number": "1555555577"          },          "email": "richard2@piedpiper.com"        }      },      "relationships": {        "customer": {          "data": {            "id": "10000",            "type": "individualCustomer"          }        }      }    }  ]}

customer.archived#

Occurs when a Customer is archived.

Example customer.archived payload:
{  "data": [    {      "id": "1337",      "type": "customer.archived",      "attributes": {        "createdAt": "2021-04-13T07:40:43.813Z",        "archiveReason": "Inactive",        "tags": {          "tag": "value"        }      },      "relationships": {        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

declinedIncomingPayment.created#

Occurs when a Declined Incoming Payment is created.

Example declinedIncomingPayment.created payload:
{  "data": [    {      "id": "295",      "type": "declinedIncomingPayment.created",      "attributes": {        "createdAt": "2021-01-02T13:38:28.223Z",        "amount": 1000,        "direction": "Debit",        "reason": "NoAccount",        "paymentType": "AchPayment"      },      "relationships": {        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

dispute.created#

Occurs when a Dispute is created.

Example dispute.created payload:
{  "data": [    {      "id": "680",      "type": "dispute.created",      "attributes": {        "createdAt": "2022-01-01T14:08:19.040Z",        "amount": 500,        "description": "Disputed card transaction",        "source": "DebitCard",        "status": "InvestigationStarted"      },      "relationships": {        "dispute": {          "data": {            "id": "47",            "type": "dispute"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        },        "transaction": {          "data": {            "id": "142",            "type": "transaction"          }        }      }    }  ]}

dispute.statusChanged#

Occurs when a Dispute status changes.

Example dispute.statusChanged payload:
{  "data": [    {      "id": "687",      "type": "dispute.statusChanged",      "attributes": {        "createdAt": "2022-01-01T10:22:31.816Z",        "previousStatus": "InvestigationStarted",        "newStatus": "ResolvedWon"      },      "relationships": {        "dispute": {          "data": {            "id": "47",            "type": "dispute"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        },        "transaction": {          "data": {            "id": "142",            "type": "transaction"          }        }      }    }  ]}

document.approved#

Occurs when an Application Document is approved.

Example document.approved payload:
{  "data": [    {      "id": "193",      "type": "document.approved",      "attributes": {        "createdAt": "2020-11-09T09:05:49.999Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "document": {          "data": {            "id": "6",            "type": "document"          }        },        "application": {          "data": {            "id": "10009",            "type": "individualApplication"          }        }      }    }  ]}

document.rejected#

Occurs when an Application Document is rejected.

Example document.rejected payload:
{  "data": [    {      "id": "190",      "type": "document.rejected",      "attributes": {        "reason": "blurry image",        "reasonCode": "PoorQuality",        "createdAt": "2020-11-08T18:34:38.533Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "document": {          "data": {            "id": "6",            "type": "document"          }        },        "application": {          "data": {            "id": "10009",            "type": "individualApplication"          }        }      }    }  ]}

payment.created#

Occurs when an ACH Payment, Book Payment or Wire Payment is successfully created with a specified status. This event does not fire for rejected payments, see payment.rejected instead.

Example payment.created payload:
{  "data": [    {      "id": "4132",      "type": "payment.created",      "attributes": {        "createdAt": "2021-12-27T12:12:39.133Z",        "status": "Pending",        "direction": "Credit",        "amount": 2500,        "tags": {          "tag": "value"        }      },      "relationships": {        "payment": {          "data": {            "id": "6",            "type": "payment"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

payment.clearing#

Occurs when an originated Debit ACH Payment was delivered to the ACH network, but the account was not credited yet.

Example payment.clearing payload:
{  "data": [    {      "id": "290",      "type": "payment.clearing",      "attributes": {        "previousStatus": "Pending",        "createdAt": "2020-11-08T18:34:38.533Z",        "direction": "Credit",        "amount": 2500,        "available": 3000,        "tags": {          "tag": "value"        }      },      "relationships": {        "payment": {          "data": {            "id": "6",            "type": "payment"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

payment.sent#

Occurs when a payment was created and processed successfully.

The event covers different types of payments like ACH Payment, Book Payment, Wire Payment and Push To Card Payment.

Example payment.sent payload:
{  "data": [    {      "id": "291",      "type": "payment.sent",      "attributes": {        "previousStatus": "Pending",        "direction": "Credit",        "amount": 2500,        "available": 500,        "createdAt": "2020-11-08T18:34:38.533Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "payment": {          "data": {            "id": "8",            "type": "payment"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

payment.rejected#

Occurs when a payment gets rejected. This event should include a reason that will specify why the payment was rejected.

The event covers different types of payments like ACH Payment, Book Payment, Wire Payment and Push To Card Payment.

Example payment.rejected payload:
{  "data": [    {      "id": "291",      "type": "payment.rejected",      "attributes": {        "createdAt": "2021-12-08T18:34:38.533Z",        "reason": "InsufficientFunds",        "direction": "Credit",        "amount": 2500,        "tags": {          "tag": "value"        }      },      "relationships": {        "payment": {          "data": {            "id": "6",            "type": "payment"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

payment.returned#

Occurs when a sent ACH Payment was returned by the ACH network or the receiving bank for a specified reason.

Example payment.returned payload:
{  "data": [    {      "id": "295",      "type": "payment.returned",      "attributes": {        "previousStatus": "Sent",        "createdAt": "2021-01-02T13:38:28.223Z",        "direction": "Credit",        "amount": 2500,        "available": 3000,        "tags": {          "tag": "value"        }      },      "relationships": {        "payment": {          "data": {            "id": "10",            "type": "payment"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

payment.canceled#

payment.canceled or payment.Canceled. Occurs when a sent ACH Payment was canceled by the client / end-customer before being sent to the network.

Example payment.canceled payload:
{  "data": [    {      "id": "295",      "type": "payment.Canceled",      "attributes": {        "createdAt": "2021-01-02T13:38:28.223Z",        "direction": "Credit",        "amount": 2500,        "tags": {          "tag": "value"        }      },      "relationships": {        "payment": {          "data": {            "id": "10",            "type": "payment"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

payment.pendingReview#

Occurs when a sent ACH Payment is waiting to be manually reviewed, typically due to a high level of risk associated with that payment.

Example payment.pendingReview payload:
{  "data": [    {      "id": "295",      "type": "payment.pendingReview",      "attributes": {        "createdAt": "2021-01-02T13:38:28.223Z",        "direction": "Credit",        "amount": 2500,        "tags": {          "tag": "value"        }      },      "relationships": {        "payment": {          "data": {            "id": "10",            "type": "payment"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

recurringPayment.created#

Occurs when a recurring payment is created.

Example recurringPayment.created payload:
{  "data": [    {      "id": "360",      "type": "recurringPayment.created",      "attributes": {        "createdAt": "2022-06-25T14:27:41.093Z",        "status": "Active",        "amount": 200,        "tags": {          "test": "test"        },        "nextScheduledAction": "2022-07-05"      },      "relationships": {        "recurringPayment": {          "data": {            "id": "4",            "type": "recurringPayment"          }        },        "account": {          "data": {            "id": "10002",            "type": "account"          }        },        "customer": {          "data": {            "id": "10004",            "type": "customer"          }        }      }    }  ]}

recurringPayment.statusChanged#

Occurs when a recurring payment status has been changed. See Recurring Payment Statuses.

Example recurringPayment.statusChanged payload:
{  "data": [    {      "id": "359",      "type": "recurringPayment.statusChanged",      "attributes": {        "createdAt": "2022-06-25T14:23:26.785Z",        "previousStatus": "Completed",        "status": "Active",        "amount": 200,        "numberOfPayments": 2,        "tags": {}      },      "relationships": {        "recurringPayment": {          "data": {            "id": "2",            "type": "recurringPayment"          }        },        "account": {          "data": {            "id": "10002",            "type": "account"          }        },        "customer": {          "data": {            "id": "10004",            "type": "customer"          }        }      }    }  ]}

recurringPayment.failed#

Occurs when a payment creation from a recurring payment has failed.

Example recurringPayment.created payload:
{  "data": [    {      "id": "100",      "type": "recurringPayment.failed",      "attributes": {        "createdAt": "2022-06-11T11:40:58.708Z",        "amount": 200,        "tags": {},        "error": "{\"title\":\"User is not allowed to create a payment\",\"status\":\"403\"}"      },      "relationships": {        "recurringPayment": {          "data": {            "id": "24",            "type": "recurringPayment"          }        },        "account": {          "data": {            "id": "10002",            "type": "account"          }        }      }    }  ]}

statements.created#

Occurs when all Statements were created for the previous month.

Example statements.created payload:
{  "data": [    {      "id": "241",      "type": "statements.created",      "attributes": {        "createdAt": "2021-03-01T00:16:28.911Z",        "period": "2021-02",        "tags": {          "tag": "value"        }      }    }  ]}

transaction.created#

Occurs when a Transaction is created.

Example transaction.created payload:
{  "data": [    {      "id": "34",      "type": "transaction.created",      "attributes": {        "summary": "Funding",        "direction": "Debit",        "amount": 2500,        "available": 3000,        "balance": 689305,        "createdAt": "2020-07-30T09:17:21.593Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "transaction": {          "data": {            "type": "receivedAchTransaction",            "id": "10001"          }        },        "account": {          "data": {            "id": "1000",            "type": "account"          }        },        "customer": {          "data": {            "id": "1",            "type": "customer"          }        },        "payment": {          "data": {            "id": "515",            "type": "payment"          }        }      }    }  ]}

transaction.updated#

Occurs when a PurchaseTransaction, AtmTransaction, or CardTransaction is updated with the interchange amount, calculated at the end of each day.

Example transaction.created payload:
{  "data": [    {      "id": "33266",      "type": "transaction.updated",      "available": 2000,      "attributes": {        "createdAt": "2020-07-30T09:17:21.593Z",        "interchange": 2.43      },      "relationships": {        "account": {          "data": {            "id": "10023",            "type": "account"          }        },        "transaction": {          "data": {            "type": "purchase",            "id": "45123"          }        }      }    }  ]}

receivedPayment.created#

Occurs when a Received Payment is created.

Example receivedPayment.created payload:
{  "data": [    {      "id": "1337",      "type": "receivedPayment.created",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z",        "status": "Pending",        "type": "Ach",        "amount": 500000,        "completionDate": "2020-07-30",        "companyName": "UBER LTD",        "counterpartyRoutingNumber": "051402372",        "description": "paycheck",        "traceNumber": "123456789123456",        "secCode": "PPD",        "addenda": "",        "tags": {          "tag": "value"        }      },      "relationships": {        "receivedPayment": {          "data": {            "id": "122",            "type": "receivedPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

receivedPayment.advanced#

Occurs when a Received Payment is advanced.

Example receivedPayment.advanced payload:
{  "data": [    {      "id": "411",      "type": "receivedPayment.advanced",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Pending",        "wasAdvanced": true,        "tags": {          "tag": "value"        }      },      "relationships": {        "receivedPayment": {          "data": {            "id": "1337",            "type": "receivedPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

receivedPayment.pendingReview#

Occurs when a Received Payment is pending review.

Example receivedPayment.pendingReview payload:
{  "data": [    {      "id": "1337",      "type": "receivedPayment.pendingReview",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z",        "status": "PendingReview",        "type": "Ach",        "amount": 500000,        "completionDate": "2020-07-30",        "companyName": "UBER LTD",        "counterpartyRoutingNumber": "051402372",        "description": "paycheck",        "traceNumber": "123456789123456",        "secCode": "PPD",        "addenda": "",        "tags": {          "tag": "value"        }      },      "relationships": {        "receivedPayment": {          "data": {            "id": "122",            "type": "receivedPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

receivedPayment.markedForReturn#

Occurs when a Received Payment is marked for return.

Example receivedPayment.markedForReturn payload:
{  "data": [    {      "id": "1337",      "type": "receivedPayment.markedForReturn",      "attributes": {        "createdAt": "2021-06-06T09:09:15.247Z",        "status": "MarkedForReturn",        "type": "Ach",        "amount": 500000,        "completionDate": "2020-07-30",        "companyName": "UBER LTD",        "counterpartyRoutingNumber": "051402372",        "description": "paycheck",        "traceNumber": "123456789123456",        "secCode": "PPD",        "addenda": "",        "tags": {          "tag": "value"        }      },      "relationships": {        "receivedPayment": {          "data": {            "id": "122",            "type": "receivedPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

receivedPayment.completed#

Occurs when a Received Payment is completed.

Example receivedPayment.completed payload:
{  "data": [    {      "id": "411",      "type": "receivedPayment.completed",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Advanced",        "wasAdvanced": true,        "tags": {          "tag": "value"        }      },      "relationships": {        "receivedPayment": {          "data": {            "id": "1337",            "type": "receivedPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

receivedPayment.returned#

Occurs when a Received Payment is returned.

Example receivedPayment.returned payload:
{  "data": [    {      "id": "411",      "type": "receivedPayment.returned",      "attributes": {        "createdAt": "2021-06-06T07:21:39.509Z",        "previousStatus": "Pending",        "wasAdvanced": true,        "tags": {          "tag": "value"        }      },      "relationships": {        "receivedPayment": {          "data": {            "id": "1337",            "type": "receivedPayment"          }        },        "account": {          "data": {            "id": "10001",            "type": "account"          }        },        "customer": {          "data": {            "id": "10000",            "type": "customer"          }        }      }    }  ]}

chargeback.created#

Occurs when a Chargeback is successfully created.

Example payment.created payload:
{  "data": [    {      "id": "1337",      "type": "chargeback.created",      "attributes": {        "createdAt": "2021-12-27T12:12:39.133Z",        "amount": 5000,        "description": "chargeback for payments issued on 12/1/2022",        "tags": {          "tag": "value"        }      },      "relationships": {        "chargeback": {          "data": {            "id": "669",            "type": "chargeback"          }        },        "account": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        },        "counterpartyAccount": {          "data": {            "id": "10010",            "type": "account"          }        },        "transaction": {          "data": {            "id": "10010",            "type": "transaction"          }        }      }    }  ]}

reward.sent#

Occurs when a Reward is successfully sent to an end customer.

Example reward.sent payload:
{  "data": [    {      "id": "9173",      "type": "reward.sent",      "attributes": {        "createdAt": "2021-04-02T12:12:39.133Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "reward": {          "data": {            "id": "42",            "type": "reward"          }        },        "fundingAccount": {          "data": {            "id": "10009",            "type": "account"          }        },        "receivingAccount": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

reward.rejected#

Occurs when a Reward creation request is rejected (typically due to account status or availability of funds).

Example reward.rejected payload:
{  "data": [    {      "id": "8246",      "type": "reward.rejected",      "attributes": {        "createdAt": "2021-04-02T12:14:39.133Z",        "tags": {          "tag": "value"        }      },      "relationships": {        "reward": {          "data": {            "id": "42",            "type": "reward"          }        },        "fundingAccount": {          "data": {            "id": "10009",            "type": "account"          }        },        "receivingAccount": {          "data": {            "id": "10009",            "type": "account"          }        },        "customer": {          "data": {            "id": "10002",            "type": "customer"          }        }      }    }  ]}

repayment.created#

Occurs when a AchRepayment or BookRepayment is successfully created.

Example repayment.created payload:
{  "data": {    "id": "219",    "type": "repayment.created",    "attributes": {      "createdAt": "2022-11-27T18:54:03.042Z",      "amount": 1550,      "tags": {},      "status": "Pending"    },    "relationships": {      "repayment": {        "data": {          "id": "9",          "type": "repayment"        }      },      "payment": {        "data": {          "id": "22",          "type": "payment"        }      },      "account": {        "data": {          "id": "10006",          "type": "account"        }      },      "customer": {        "data": {          "id": "10002",          "type": "customer"        }      }    }  }}

repayment.statusChanged#

Occurs when a AchRepayment or BookRepayment status changes.

Example repayment.created payload:
{  "data": {    "id": "224",    "type": "repayment.statusChanged",    "attributes": {      "createdAt": "2022-11-27T18:55:39.945Z",      "newStatus": "Sent",      "previousStatus": "Pending",      "amount": 1550,      "tags": {}    },    "relationships": {      "repayment": {        "data": {          "id": "9",          "type": "repayment"        }      },      "payment": {        "data": {          "id": "22",          "type": "payment"        }      },      "account": {        "data": {          "id": "10006",          "type": "account"        }      },      "customer": {        "data": {          "id": "10002",          "type": "customer"        }      }    }  }}

Get by Id#

Get an event resource by id. This API is available only for events that were created within the last 90 days.

VerbGET
Urlhttps://api.s.unit.sh/events/{id}
Required Scopeevents
Timeout (Seconds)5

Response#

Response is a JSON:API document.

200 OK#

FieldTypeDescription
dataEventThe requested resource after the operation was completed.
curl -X GET 'https://api.s.unit.sh/events/10' \-H "Authorization: Bearer ${TOKEN}"

List#

List event resources, going back up to 90 days. Paging can be applied.

VerbGET
Urlhttps://api.s.unit.sh/events
Required Scopeevents
Timeout (Seconds)5

Query Parameters#

NameTypeDefaultDescription
page[limit]integer100Optional. Maximum number of resources that will be returned. Maximum is 1000 resources. See Pagination.
page[offset]integer0Optional. Number of resources to skip. See Pagination.
filter[type][]string(empty)Optional. Filter Events by Event type.
filter[since]RFC3339 Date string(empty)Optional. Filters the events that occurred after the specified date. e.g. 2022-01-13T16:01:19.346Z
filter[until]RFC3339 Date string(empty)Optional. Filters the events that occurred before the specified date. e.g. 2022-01-15T20:06:23.486Z
curl -X GET 'https://api.s.unit.sh/events?page[limit]=20&page[offset]=10&filter[since]=2022-01-13T16:01:19.346Z`&filter[until]=2022-01-15T20:06:23.486Z' \-H "Authorization: Bearer ${TOKEN}"

Response#

Response is a JSON:API document.

200 OK#

FieldTypeDescription
dataArray of EventArray of event resources.
Example Response:
{  "data": [    {      "id": "231",      "type": "customer.created",      "attributes": {        "createdAt": "2021-03-15T12:20:39.216Z"      },      "relationships": {        "customer": {          "data": {            "id": "10004",            "type": "businessCustomer"          }        }      }    },    {      "id": "230",      "type": "transaction.created",      "attributes": {        "createdAt": "2021-03-15T07:49:09.089Z",        "amount": 10000,        "direction": "Credit",        "summary": "Wire to Jane Smith"      },      "relationships": {        "account": {          "data": {            "id": "10005",            "type": "account"          }        },        "transaction": {          "data": {            "id": "189",            "type": "wireTransaction"          }        },        "customer": {          "data": {            "id": "10000",            "type": "individualCustomer"          }        }      }    }  ]}

Fire Event#

Resend a previously published webhook event. This API is available only for events that were created within the last 90 days.

VerbPOST
Urlhttps://api.s.unit.sh/events/{eventId}
Required Scopeevents-write
Timeout (Seconds)5
Example Request:
curl -X POST 'https://api.s.unit.sh/events/78'-H 'Content-Type: application/vnd.api+json'-H 'Authorization: Bearer ${TOKEN}'--data-raw '{}'