DeviceUnpaired
Emitted when a device is unpaired from its verification hash.
Payload
| Field | Type | Required | Description |
|---|---|---|---|
deviceIdentityHash | string | ✅ | Server-generated unique identifier of the device, used as the public-facing identifier in the REST API. |
owner | object | ✅ | Ownership envelope identifying the company or organization that owns this event. |
owner.ownershipType | "organization" (literal) | ✅ | Discriminator for the ownership envelope; always organization for these events. |
owner.organizationUid | string | ✅ | UID of the organization that owns the event. |
owner.parentCompanyUid | string | ✅ | UID of the owning organization's parent company. |
type | "Device.Verification.DeviceUnpaired" (literal) | ✅ | Fully-qualified event type discriminator (e.g. Device.DeviceConnectionAdded). |
originator | object | — | Actor that initiated the action behind this event. Omitted for system-triggered events. |
originator.accountId | number | — | Numeric identifier of the account that initiated the action. |
originator.organizationUid | string | — | Organization on whose behalf the action was initiated. |
originator.policyUid | string | — | Policy under which the action was initiated, if applicable. |
verificationHash | string | ✅ |
Example
{
"id": "string",
"kind": "domain",
"type": "Device.Verification.DeviceUnpaired",
"payload": {
"deviceIdentityHash": "db8273e3xxxxxxxxxxxxxxxxce2100a0",
"owner": {
"ownershipType": "organization",
"organizationUid": "1cf69ab9xxxxxxxxxxxxxxxxe8b0ba98",
"parentCompanyUid": "4be0b76exxxxxxxxxxxxxxxx361f9840"
},
"type": "Device.Verification.DeviceUnpaired",
"originator": {
"accountId": 3630,
"organizationUid": "f5d40061xxxxxxxxxxxxxxxx4ae8dbef",
"policyUid": "7616ffb6xxxxxxxxxxxxxxxx6e384f7c"
},
"verificationHash": "e76491d2xxxxxxxxxxxxxxxx1fa0e11e"
}
}
Shape
{
"id": "string",
"kind": "domain",
"type": "Device.Verification.DeviceUnpaired",
"payload": {
"deviceIdentityHash": "string",
"owner": {
"ownershipType": "organization",
"organizationUid": "string",
"parentCompanyUid": "string"
},
"type": "Device.Verification.DeviceUnpaired",
"originator?": {
"accountId?": "number",
"organizationUid?": "string",
"policyUid?": "string"
},
"verificationHash": "string"
}
}