Back to dashboard

List of events available through webhooks

These are the events that can be subscribed to via webhooks. When you set up a notification (Hub → Settings → Webhooks) you pick one or more of these events, and Morta will POST to your endpoint whenever a matching event occurs.

Exception: user.* account events are recorded in the audit log only and are never delivered via webhooks (see User account events below), so they can't be subscribed to here.

The full, machine-readable list of supported event identifiers is also available from the GET /v1/notifications/event-types endpoint.

Webhook payload envelope

Every webhook is delivered as a POST with the same top-level envelope. Only the event string and the context object change between event types — everything else is consistent.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.row_created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": "{\"added\": 1}",
  "context": {
    "rows": ["See the TableRow schema"]
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}
FieldDescription
idThe unique public ID of this event.
eventThe event identifier, in resource.verb form (e.g. table.row_created).
resourceIdThe public ID of the primary resource the event is about — it corresponds to the resource part of the event. For nested events the parent resource is used: e.g. table.view_created carries the table ID (the new view's ID is in contextTableViewId). For member.* events it is the hub ID.
changeA JSON-encoded string describing what changed (the diff), or null when the event carries no diff.
contextAn object whose contents depend on the event type — see each event below.
userThe user that triggered the event (summary user object), or null for system-generated events.
createdAtThe UTC timestamp when the event was generated.
contextProjectIdThe public ID of the hub the event occurred in.
contextProcessIdThe public ID of the related document, or null.
contextProcessSectionIdThe public ID of the related document section, or null.
contextProcessResponseIdThe public ID of the related response, or null.
contextTableIdThe public ID of the related table, or null.
contextTableViewIdThe public ID of the related table view, or null.
contextTableColumnIdThe public ID of the related table column, or null.

Note: change is delivered as a JSON-encoded string, so you must parse it again on your side before reading its fields.

The sections below describe each event and the shape of its context object. Where a context value reads "See the X schema", refer to the corresponding schema in the API reference.

Hub events (project.*)

In code, a hub is referred to as a "project".

project.created

A new hub was created.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.created",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.updated

Hub metadata changed (name, description, settings, archived flag, etc.). When present, the change field describes which fields changed.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.updated",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.deleted

A hub was archived/deleted.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.deleted",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.restored

A previously archived hub was restored.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.restored",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.searched

A search was performed inside the hub.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.searched",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.duplicated

A hub was duplicated to a new hub.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.duplicated",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.duplication_failed

A hub-duplication job failed. The error is carried in the change field.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.duplication_failed",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": "{\"error\": \"Duplication timed out\"}",
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.joined

A user joined the hub (a newly invited member accepting access).

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.joined",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

project.read

A hub was opened/viewed. High volume — generally used for audit logging rather than webhooks.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "project.read",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

Member events (member.*)

member.created

A user was added to the hub as a member.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "member.created",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema",
    "member": "See the User schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

member.updated

A member's role/permissions in the hub changed.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "member.updated",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema",
    "member": "See the User schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

member.deleted

A member was removed from the hub.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "member.deleted",
  "resourceId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "change": null,
  "context": {
    "project": "See the Project schema",
    "member": "See the User schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

Permission policy events (policy.*)

policy.created

A permission policy (resource ACL) was added.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "policy.created",
  "resourceId": "8d9e0f1a-2b3c-4d5e-6f7a-8b9c0d1e2f30",
  "change": null,
  "context": {
    "policy": "See the AccessPolicy schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

policy.updated

An existing permission policy was edited.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "policy.updated",
  "resourceId": "8d9e0f1a-2b3c-4d5e-6f7a-8b9c0d1e2f30",
  "change": null,
  "context": {
    "policy": "See the AccessPolicy schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

policy.deleted

A permission policy was removed.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "policy.deleted",
  "resourceId": "8d9e0f1a-2b3c-4d5e-6f7a-8b9c0d1e2f30",
  "change": null,
  "context": {
    "policy": "See the AccessPolicy schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

Table events (table.*)

table.created

A new table is created.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.updated

Table-level metadata changed (name, description, default view, etc.).

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.updated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.deleted

A table was soft-deleted (moved to the recycle bin). The deleted table's public ID is in resourceId.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.deleted",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.restored

A previously deleted table was restored from the recycle bin.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.restored",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.duplicated

A table was duplicated.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.duplicated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.duplication_failed

A table-duplication job failed. The error is carried in the change field.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.duplication_failed",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": "{\"error\": \"Duplication timed out\"}",
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.csv_uploaded

A table was created or populated by uploading a CSV file.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.csv_uploaded",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.truncated

Every row in a table was deleted in one operation.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.truncated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.read

A table was opened. High volume — generally used for audit logging rather than webhooks.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.read",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.column_created

A new column was added to a table.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.column_created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "column": "See the TableColumn schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": "c3e5079b-1d2f-3e4a-5b6c-7d8e9f0a1b2c"
}

table.column_updated

A column was edited (rename, kind change, formula change, validation change, etc.).

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.column_updated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "column": "See the TableColumn schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": "c3e5079b-1d2f-3e4a-5b6c-7d8e9f0a1b2c"
}

table.column_deleted

A column was deleted.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.column_deleted",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "column": "See the TableColumn schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": "c3e5079b-1d2f-3e4a-5b6c-7d8e9f0a1b2c"
}

table.row_created

One or more rows were inserted. context.rows contains the new rows.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.row_created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "rows": [
      "See the TableRow schema"
    ]
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.row_updated

One or more whole rows were written in a single operation — e.g. bulk row imports, CSV append, integration sync upserts, and "edit row" form submissions. context.rows carries the resulting row state. This does not fire on every individual cell edit — those generate table.cell_updated instead.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.row_updated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "rows": [
      "See the TableRow schema"
    ]
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.row_deleted

One or more rows were deleted. context.rows carries only the public IDs of the deleted rows.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.row_deleted",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "rows": [
      {
        "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
      }
    ]
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.cell_updated

One or more individual cells were edited (the granular event for spreadsheet-style edits). Subscribe to this rather than table.row_updated if you need to react to every cell-level change.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.cell_updated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "cells": [
      {
        "column": {
          "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
          "name": "Status"
        },
        "row": "See the TableRow schema"
      }
    ]
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": "c3e5079b-1d2f-3e4a-5b6c-7d8e9f0a1b2c"
}

table.view_created

A new view was created.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.view_created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "tableView": "See the TableView schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": "b2d4f6a8-0c1e-2d3f-4a5b-6c7d8e9f0a1b",
  "contextTableColumnId": null
}

table.view_updated

An existing view was updated.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.view_updated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "tableView": "See the TableView schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": "b2d4f6a8-0c1e-2d3f-4a5b-6c7d8e9f0a1b",
  "contextTableColumnId": null
}

table.view_deleted

A view was deleted. Only the view's public ID is included.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.view_deleted",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "tableView": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": "b2d4f6a8-0c1e-2d3f-4a5b-6c7d8e9f0a1b",
  "contextTableColumnId": null
}

table.view_duplicated

A view was duplicated.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.view_duplicated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "tableView": "See the TableView schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": "b2d4f6a8-0c1e-2d3f-4a5b-6c7d8e9f0a1b",
  "contextTableColumnId": null
}

table.view_read

A view was opened. High volume — generally used for audit logging rather than webhooks.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.view_read",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "tableView": "See the TableView schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": "b2d4f6a8-0c1e-2d3f-4a5b-6c7d8e9f0a1b",
  "contextTableColumnId": null
}

table.comment_created

A comment was added to a table cell or row.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.comment_created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
    "comment": "See the Comment schema",
    "mentionedUserPublicIds": []
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.comment_updated

A comment on a table was edited.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.comment_updated",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
    "comment": "See the Comment schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.comment_deleted

A comment on a table was deleted.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.comment_deleted",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
    "commentPublicId": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.thread_created

A new comment thread was started on a table.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.thread_created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "commentThread": "See the CommentThread schema",
    "mentionedUserPublicIds": []
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.thread_resolved

A comment thread on a table was resolved.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.thread_resolved",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "commentThread": "See the CommentThread schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.thread_reopened

A resolved comment thread on a table was reopened.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.thread_reopened",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "commentThread": "See the CommentThread schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.thread_deleted

A comment thread on a table was deleted.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.thread_deleted",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.sync_created

A sync (integration data import) was set up against this table.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.sync_created",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.sync_completed

A sync run finished successfully.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.sync_completed",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.sync_error

A sync run failed. The error details are carried in the change field as a JSON-encoded diff.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.sync_error",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": "{\"dictionary_item_added\": {\"root['type']\": \"autodesk\", \"root['error']\": \"Provider returned 401 Unauthorized\"}}",
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.sync_deleted

A sync configuration was removed.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.sync_deleted",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {
    "table": "See the Table schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.join_error

A cross-table join evaluation hit an error. The error details are carried in the change field as a JSON-encoded diff.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.join_error",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": "{\"dictionary_item_added\": {\"root['error']\": \"Join column no longer exists in the source table\"}}",
  "context": {
    "join": "See the TableJoin schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

table.script_error

A column script evaluation hit an error. When present, the error details are carried in the change field.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "table.script_error",
  "resourceId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": null,
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
  "contextTableViewId": null,
  "contextTableColumnId": null
}

Document events (process.*)

In code, a document is referred to as a "process".

process.created

A new document was created. The context carries the full document.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.created",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "publicId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
    "name": "...",
    "...": "the full document — see the Document schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.updated

An existing document was updated. The context carries the full document.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.updated",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "publicId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
    "name": "...",
    "...": "the full document — see the Document schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.deleted

A document was deleted. Only the document's public ID is included.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.deleted",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "process": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.restored

A deleted document was restored. The context carries the full document.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.restored",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "publicId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
    "name": "...",
    "...": "the full document — see the Document schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.duplicated

An existing document was duplicated. resourceId is the source document; context.newProcess is the new document.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.duplicated",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "newProcess": "See the Document schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.duplication_failed

A document-duplication job failed. The error is carried in the change field.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.duplication_failed",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": "{\"error\": \"Duplication timed out\"}",
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.read

A document was opened. High volume — generally used for audit logging rather than webhooks.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.read",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.section_created

A new section was created in a document.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.section_created",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processSection": "See the DocumentSection schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.section_updated

An existing section in a document was updated.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.section_updated",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processSection": "See the DocumentSection schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.section_deleted

A document section was deleted. Only the section's public ID is included.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.section_deleted",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processSection": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.section_duplicated

A document section was duplicated.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.section_duplicated",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "sourceProcessSection": "See the DocumentSection schema",
    "newProcessSection": "See the DocumentSection schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.section_restored

A deleted document section was restored.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.section_restored",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processSection": "See the DocumentSection schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.pdf_exported

A document was exported to PDF.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.pdf_exported",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.word_exported

A document was exported to Word.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.word_exported",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {},
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.response_created

A new (in-progress) response was started against a document section.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.response_created",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processResponse": "See the DocumentResponse schema",
    "processSection": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": "7c8d9e0f-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.response_updated

An in-progress response was edited.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.response_updated",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processResponse": "See the DocumentResponse schema",
    "processSection": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": "7c8d9e0f-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.response_submitted

A response was finalised/submitted. This is the canonical "form submitted" trigger.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.response_submitted",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processResponse": "See the DocumentResponse schema",
    "processSection": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": "7c8d9e0f-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.response_reset

A previously-submitted response was reopened (either because the section is configured with "Reset After Response", or an admin reopened it manually).

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.response_reset",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processResponse": "See the DocumentResponse schema",
    "processSection": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": "7c8d9e0f-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.response_deleted

A response was deleted. Only the response and section public IDs are included.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.response_deleted",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processResponse": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    },
    "processSection": {
      "publicId": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": "7c8d9e0f-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.response_restored

A deleted response was restored. Only the response and section public IDs are included.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.response_restored",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "processResponse": {
      "publicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
    },
    "processSection": {
      "publicId": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed"
    }
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": "6b7c8d9e-0f1a-2b3c-4d5e-6f7a8b9c0d1e",
  "contextProcessResponseId": "7c8d9e0f-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.comment_created

A comment was added to a document.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.comment_created",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
    "comment": "See the Comment schema",
    "mentionedUserPublicIds": []
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.comment_updated

A comment on a document was edited.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.comment_updated",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
    "comment": "See the Comment schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.comment_deleted

A comment on a document was deleted.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.comment_deleted",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e",
    "commentPublicId": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.thread_created

A new comment thread was started on a document.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.thread_created",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "commentThread": "See the CommentThread schema",
    "mentionedUserPublicIds": []
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.thread_resolved

A comment thread on a document was resolved.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.thread_resolved",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "commentThread": "See the CommentThread schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.thread_reopened

A resolved comment thread on a document was reopened.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.thread_reopened",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "commentThread": "See the CommentThread schema"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

process.thread_deleted

A comment thread on a document was deleted.

{
  "id": "1df6bd8a-b8a3-49a2-b07b-0de3f3cecbed",
  "event": "process.thread_deleted",
  "resourceId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "change": null,
  "context": {
    "commentThreadPublicId": "4e687ada-900a-4562-b493-6c6f67ffca6e"
  },
  "user": "See the User schema",
  "createdAt": "2020-08-27T14:20:28.405158",
  "contextProjectId": "9f1c0e2a-1b2c-4d3e-8f4a-5b6c7d8e9f00",
  "contextProcessId": "5a6b7c8d-9e0f-1a2b-3c4d-5e6f7a8b9c0d",
  "contextProcessSectionId": null,
  "contextProcessResponseId": null,
  "contextTableId": null,
  "contextTableViewId": null,
  "contextTableColumnId": null
}

User account events (user.*)

User account events (user.advanced_license_blocked, user.personal_view_blocked) are recorded in the audit log but are not delivered via webhooks.