For the complete documentation index, see llms.txt. This page is also available as Markdown.

Event Types

Webhooks are queued and sent within a few minutes of an event. A webhook request includes an array of one or more events, each with a type. Most events also have an id but this is not always true; see below for details about each event.

[
  {"type":"property", "id":"cksq4ybpq104zwgwh2gd1vvha"},
  {"type":"property", "id":"kw4ooco04cog8sooow0ogcgg"},
  {"type":"task", "id":"cle72jm2q0001pxwhqnf5qfoc"},
  {"type":"assessment", "id":"cllks38mw000131wh9ukgjc4g"},
  {"type":"assessmentschedule", "propertyId":"cllks38mw000131wh9ukgjc4g", "typeId":"cm65bkfml00kpyjwh84eword", "assetId":"cllks38mw000131wh9ukgjc4g"},
  ...
]

Property Event property

  • Property is created or deleted,

  • Property's name, address, or tree position is updated.

{ "type": "property", "id": "{UID}" }

Note: When a property event is received an asset event will be included; this is for backward compatibility but should be ignored.

{ "type": "asset", "id": "{UID}" }

Property Group Event propertygroup

  • Property group is created or deleted,

  • Property group's name or tree position is updated.

Note: When a propertygroup event is received an assetgroup event will be included; this is for backward compatibility but should be ignored.

Task Event task

  • Task is updated.

Assessment Event assessment

  • Assessment is created, submitted, approved, unapproved, or deleted.

Assessment Schedule Event assessmentschedule

  • Assessment schedule is created or deleted,

  • Assessment schedule is updated.

Note: The assetId included in this event is for backward compatibility and should be ignored.

User Event user

  • User is added or removed from your organisation,

  • User name or email is updated.

Team Event team

  • Team is created or deleted,

  • Team's name or description is updated,

  • Team's members are changed.

Last updated

Was this helpful?