Skip to main content

DeviceUnpaired

Emitted when a device is unpaired from its verification hash.

Payload

FieldTypeRequiredDescription
deviceIdentityHashstringServer-generated unique identifier of the device, used as the public-facing identifier in the REST API.
ownerobjectOwnership 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.organizationUidstringUID of the organization that owns the event.
owner.parentCompanyUidstringUID of the owning organization's parent company.
type"Device.Verification.DeviceUnpaired" (literal)Fully-qualified event type discriminator (e.g. Device.DeviceConnectionAdded).
originatorobjectActor that initiated the action behind this event. Omitted for system-triggered events.
originator.accountIdnumberNumeric identifier of the account that initiated the action.
originator.organizationUidstringOrganization on whose behalf the action was initiated.
originator.policyUidstringPolicy under which the action was initiated, if applicable.
verificationHashstring

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"
}
}