Grant a User Identity Access to a Device
PUT /user_identities/grant_access_to_device β voidGrants a specified user identity access to a specified device.
Request
await seam.userIdentities.grantAccessToDevice({
user_identity_id: "f3a328b4-dd04-4370-9000-d52b7a01b0bf",
device_id: "054765c8-a2fc-4599-b486-14c19f462c45",
});Response
// voidRequest
seam.user_identities.grant_access_to_device(
user_identity_id="f3a328b4-dd04-4370-9000-d52b7a01b0bf",
device_id="054765c8-a2fc-4599-b486-14c19f462c45",
)Response
NoneRequest
seam.user_identities.grant_access_to_device(
user_identity_id: "f3a328b4-dd04-4370-9000-d52b7a01b0bf",
device_id: "054765c8-a2fc-4599-b486-14c19f462c45",
)Response
nilRequest
Response
Request
Response
Request
Response
Authentication Methods
API key
Personal access token Must also include the
seam-workspaceheader in the request.
Request Parameters
device_id
device_idType: string Required: Yes
ID of the desired managed device.
user_identity_id
user_identity_idType: string Required: Yes
ID of the desired user identity.
Return Type
void
Last updated
Was this helpful?

