Skip to content
Get started

Reactivate a user

post/v1/autoScribe/users/reactivate

Restores access for a previously deactivated user. The user will regain their original permissions including report creation and study management capabilities.

Body ParametersExpand Collapse
userId: string

User ID to reactivate. Format: usr_{32-hex-chars}

ReturnsExpand Collapse
success: boolean
message: optional string
Reactivate a user
curl https://api.avarasoftware.com/v1/autoScribe/users/reactivate \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $AVARA_API_KEY" \
    -d '{
          "userId": "usr_1234567890abcdef1234567890abcdef"
        }'
{
  "success": true,
  "message": "User reactivated successfully"
}
Returns Examples
{
  "success": true,
  "message": "User reactivated successfully"
}