Legal Holds
Get Legal Hold Users
Retrieves a paginated list of all users associated with a specified legal hold.
get/v1/accounts/me/legalHolds/{legalHoldId}/users
Path parameters
legalHoldIdstring uuid required
Unique ID of the legal hold.
Response
With paginated list of Users.
Example response
[
{
"accountId": 100,
"enabled": true,
"email": "john-doe@example.com",
"name": "John Doe",
"userId": 101,
"username": "johndoe",
"roles": [
"billing-admin",
"team-admin"
],
"avatar": {
"type": "url",
"link": "https://www.gravatar.com/avatar/00000000000000000000000000000000?s=200&d=404"
}
}
]