Svix

Rally UXR Webhook Event Types

This is the list of event types that we currently send.
For guidance on how to listen to these events, take a look at Svix's guide to consuming webhooks.

person.opted_out

Example
JSON
{
  "_eventType": "person.opted_out",
  "email": "dev@rallyuxr.com",
  "optedOut": true,
  "updatedAt": "2024-09-01T00:00:00.000Z"
}

person_import.api.finished

Example
JSON
{
  "_eventType": "person_import.api.finished",
  "failedRecords": [
    {
      "personId": "test_cm1uwhduy001vle4gr4soyqkq"
    },
    {
      "email": "dev@rallyuxr.com"
    }
  ],
  "importId": "test_cm1uwhduy001vle4gr4soyqkq",
  "status": "COMPLETED",
  "updatedAt": "2024-09-01T00:00:00Z"
}