3.5.4 Email Sighchains

The content of the uploaded image seems to be a JSON object representing a part of a user's sighchain related to an "AccountChange". Here's a transcript of the JSON content:

{
  "sighchainType": "User",
  "linkType": "AccountChange",
  ...
  "accountChange": COMMIT({
    "accountID": "c2d8aa...",
    "membershipChainSequenceNumber": 12,
    "additionIndex": 5
  })
}

In this sighchain record, an AccountChange indicates that a user has either been added to or removed from an account. The additionIndex specifies the user's position within the account's membership sighchain. If a user is removed from an account, the accountID would be set to null, and the other fields related to the change would be included to update the sighchain accordingly.

This type of record is part of a comprehensive system designed to manage user identities and their associations with accounts within the Zoom platform, allowing for a clear audit trail and management of user access and permissions.

Last updated