Unassign User from License

Unassigns a user from a single license, if the requesting manager has access permissions to it.

URL: /api/v1/licenses/{id}/unassign_user/ Method: POST

circle-info

The requesting manager must have access permissions to the license to perform this action.

Data examples

Use license_user_id
{
    "license_user_id": 1585
}
Or use license_user_email
{
    "license_user_email": "[email protected]"
}

Success response

Code: 200 OK

{
    "message": "License unassigned."
}

Was this helpful?