Webhook Alerts for Cypher Business

Now businesses can configure webhooks under Settings -> Alerts -> Setup Webhook menu on the top right.

Configure a hook URL which can accept HTTP POST Request with the following payloads.

Sample Payloads

Different Event Types

type: 'DEBIT' | 'CREDIT' | 'REFUND' | 'DECLINE' | 'LOW_BALANCE_ALERT' | 'DAILY_BALANCE_ALERT'

Debit Response

JSON
{
	id: string,
	type: string,
	amount: number,
	date: string(ISO format),
	isSettled: boolean,
	title: string,
	category: string,
	last4: string,
	closingBalance: number,
	employeeName: string,
};

Credit Response

Refund Response

Decline Response

Low Balance Alert Response

Daily Balance Alert Response

Last updated