GuidesAPI ReferenceChangelogAPI PolicyAPI StatusGusto Security
Changelog
removed

Removed `resource_id` and `entity_id` from webhook payloads

As numeric IDs were deprecated and sunsetted in a previous API version, we recently removed support for the fields resource_id and entity_id from the webhook event payload that we send to your webhooks endpoint.

Here is an example of a webhook payload that you should receive, without IDs:

{
  "uuid": "f7397a24-57ad-4fae-b011-d258e8232900",
  "event_type": "employee.bank_account.created",
  "resource_type": "Company",
  "resource_uuid": "92a20431-9489-4bde-ad27-6feb20b969d5",
  "entity_type": "BankAccount",
  "entity_uuid": "92a20431-9489-4bde-ad27-6feb20b969d5",
  "timestamp": 1686784995
}

We recommend that you use the resource_uuid and entity_uuid fields instead.

Please reach out your Technical Solutions team for any questions or concerns.