Update account

When to use it? To notify whenever there is an update to an account's canIssueCards property. This allows systems to track changes regarding whether an account is enabled to issue cards or not.

Default Behavior: All accounts start with canIssueCards set to true.

webhookType: ACCOUNT_UPDATE

model:

{
    "accountId": "uuid", // Account ID
    "canIssueCards": boolean // Indicates whether this account is enabled for card issuance. True by default.    
}

example

{
    "accountId": "6286623e-74e5-4f02-ae80-13c3e586a859",
    "canIssueCards": false 
}