removeSessionDevice

client.removeSessionDevice({
  accessToken: string,
  sessionDeviceId: string
})

About this command

Removes a specific session device for the authenticated user, forcing that device to reauthenticate.

The access token must include the session or full_write scope. If the user is enrolled in MFA, the token must also include the amr:mfa claim.

Examples

client.removeSessionDevice({
  accessToken: 'eyJ0eXAiOiJKV1QiL...',
  sessionDeviceId: 'ABCDE12345'
})

Parameters

accessToken string

The authorization credential JSON Web Token (JWT) used to access the ReachFive API.

sessionDeviceId string

The ID of the session device to remove.

Response

Type: Promise<void>

R5 AI Assistant

Confirm Deletion