Text Item webhook

The Text Item webhook is described below. Note that webhooks deliver only the event notification. The actual data must be read using the provided event details.

Webhook Subject: TEXT_ITEM

Supported events:

  • CREATE
  • UPDATE
  • DELETE

Summary

Webhook for text content item updates associated with a content entity.

Description

The text item webhook supports all CUD operations however it must be noted that like all content items update has special semantics.

Note: when updating a item a new version of it is inserted to the head of the specified item and the update will appear as a newly created item but with rather than the URN of the updated item. This is because content items are always inserted and not updated.

Example

Below is an example webhook payload (pretty printed):

{
  "trigger" : {
    "urn" : "6099cb4a-00a5-4e08-8a8d-c570254b5757",
    "owner" : {
      "urn" : "32a90f18-aaa0-4bdc-a63e-4efd2e16c28c",
      "url" : "/n/v1/company/32a90f18-aaa0-4bdc-a63e-4efd2e16c28c"
    },
    "timestamp" : "2026-05-29T13:45:32",
    "subject" : "TEXT_ITEM",
    "event" : "CREATE",
    "targetUrn" : "fdcb0191-8408-4132-abf7-57adeafe59e2"
  },
  "subscription" : {
    "urn" : "691be1de-09df-411d-ad4a-3cc7ec771cd4",
    "subject" : "TEXT_ITEM",
    "event" : "ALL",
    "destinationUrl" : "https://example.com/webhooks/textitem",
    "auth" : "BEARER",
    "expirationTimestamp" : "2026-06-28T13:45:32",
    "eventsPerMinute" : 500
  },
  "v1" : {
    "urn" : "fdcb0191-8408-4132-abf7-57adeafe59e2",
    "url" : "/n/v1/textitem/fdcb0191-8408-4132-abf7-57adeafe59e2"
  }
}