Revoke Access to a Device from a User Identity

Revokes access to a specified device from a specified user identity.

POST /user_identities/revoke_access_to_device β‡’ void
Authentication Methods
  • API key

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

Request Parameters

device_id String (Required)

ID of the desired managed device.


user_identity_id String (Required)

ID of the desired user identity.


Response

void


Examples

Revoke access to a device from a user identity

Specify the desired user_identity_id and device_id.

Code

await seam.userIdentities.revokeAccessToDevice({
  user_identity_id: "f3a328b4-dd04-4370-9000-d52b7a01b0bf",
  device_id: "054765c8-a2fc-4599-b486-14c19f462c45",
});

Output

// void

Last updated

Was this helpful?

Revision created

ci: Generate docs