Workspace Organization

This event is used to notify webhooks about any of these activies:

  • Name or logo of the organization was changed
  • User requested to join the organization

Actions

  • "updated"
  • "join_requested"

Resource

AttributeTypeDescription
idstringUnique id of the resource
typestring ("OrganizationSummary")Type of the resource (one of the API models)
dataOrganization SummaryObject representing the resource content

Example

{
  "event": "workspace.organization",
  "action": "updated",
  "timestamp": 1572347818,
  "resource": {
    "type": "OrganizationSummary",
    "data": {
      "id": "5d9caaecb4a3fa9b972f86ce",
      "name": "Acme, Inc.",
      "logo": "http://placekitten.com/200/300"
    }
  },
  "actor": {
    "user": {
      "id": "5d9caaecb4a3fa9bc9718686",
      "email": "[email protected]",
      "username": "zozo",
      "emotar": "🍎",
      "avatar": "http://placekitten.com/200/300",
      "last_seen": 1616739240
    }
  }
}