Company Events
When subscribed to the Company webhooks you will receive the following events:
| event_type | description | 
|---|---|
| company.updated | Company has been updated | 
| company.provisioned | OAuth grant created for the company | 
| company.deprovisioned | OAuth grant revoked for the company | 
| company.partner_authorized | |
| company.migrated | Migrate API call has been made for this company | 
| company.approved | Company has been approved | 
| company.needs_approval | Company status has changed from "Approved" to "Needs Approval" (note: you will not receive this webhook for a request for information) | 
| company.not_approved | Company has not been approved | 
| company.onboarded | Company has been onboarded | 
| company.suspended | Company has been suspended | 
| company.unsuspended | Company has been unsuspended | 
| company.payroll_transfer_completed | Payroll transfer has completed | 
Example payload
{
  "uuid": "04a04afb-b212-42bc-8fe6-b7ce31bf304d",
  "event_type": "company.provisioned",
  "resource_type": "Company",
  "resource_uuid": "5df911a0-e8e9-412d-8aaf-a46ad193dd96",
  "entity_type": "Company",
  "entity_uuid": "5df911a0-e8e9-412d-8aaf-a46ad193dd96",
  "timestamp": 1671058841
}
In the case of Company Events, the resource_type, resource_id, and resource_uuid, match the entity_type, entity_id, and entity_uuid.
Updated about 13 hours ago