Skip to main content
When an application is created or updated, POST requests will be sent to your Webhook URL with a JSON payload of the following format. You will only be notified of events and updates to fields which are enabled in your Webhook settings. If a TPO updates their company profile or team (e.g. tpo.name, tpo.team, tpo.affiliations etc.) updates will be bundled into a single application_updated event sent within an hour.

Body Parameters

KeyTypeDescription
applicationIdstringThe ID of the created or updated application.
eventstringapplication_created or application_updated
fieldsUpdatedarray of stringsA list indicating which fields have been updated. Only passed when event is application_updated.

Example

{
  "applicationId": "65f8ab19bbdaba667c42f6f2",
  "event": "application_updated",
  "fieldsUpdated": ["status", "assignedAccountExecutive", "tpo.address", "tpo.affiliations"]
}
I