Event Types
See below for a list of all webhook event categories and associated payloads.
Event Types
Account Balance Activity
Category | Payload Type | Description | Trigger |
---|---|---|---|
mural_account_balance_activity | account_credited | Funds received in a Mural account | Incoming blockchain transaction confirmed |
mural_account_balance_activity | account_debited | Funds sent from a Mural account | Outgoing blockchain transaction confirmed |
Account Credited
interface AccountCreditedPayload {
type: 'account_credited';
accountId: string;
organizationId: string;
transactionId: string; // this is the id that will appear in the Transactions API
accountWalletAddress: string;
tokenAmount: {
blockchain: string;
tokenAmount: number;
tokenSymbol: string;
tokenContractAddress: string;
};
transactionDetails: {
blockchain: string;
transactionDate: string; // ISO 8601 datetime
transactionHash: string;
sourceWalletAddress: string;
destinationWalletAddress: string;
};
}
Account Debited
interface AccountDebitedPayload {
type: 'account_debited';
accountId: string;
organizationId: string;
transactionId: string; // this is the id that will appear in the Transactions API
accountWalletAddress: string;
tokenAmount: {
blockchain: string;
tokenAmount: number;
tokenSymbol: string;
tokenContractAddress: string;
};
transactionDetails: {
blockchain: string;
transactionDate: string; // ISO 8601 datetime
transactionHash: string;
sourceWalletAddress: string;
destinationWalletAddress: string;
};
}
Business Verification
Category | Payload Type | Description | Trigger |
---|---|---|---|
business_verification | verification_status_changed | Business verification status has been updated | KYC/KYB review completed or status change occurred |
Verification Status Changed Payload
interface BusinessVerificationStatusChangedPayload {
type: 'verification_status_changed';
organizationId: string;
previousStatus: MuralKycVerificationStatus;
currentStatus: MuralKycVerificationStatus;
verificationId: string;
updatedAt: string; // ISO 8601 datetime
}
// Status objects returned based on verification state
type MuralKycVerificationStatus =
| { type: 'inactive' }
| { type: 'pending' }
| { type: 'approved'; approvedAt: string }
| { type: 'errored'; details: string; erroredAt: string }
| { type: 'rejected'; reason: string; rejectedAt: string };
Updated about 12 hours ago
What’s Next