Retrieve a team by its identifier
- Sandbox APIhttps://api-sandbox.lawvu.com/v2/teams/{teamId}
- Production APIhttps://api.lawvu.com/v2/teams/{teamId}
const teamId = '469';
const resp = await fetch(
`https://api-sandbox.lawvu.com/v2/teams/${teamId}`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);OK
Indicates whether the team can be assigned to supported records
Example:true
Response
{ "allowAssignment": true, "id": 469, "name": "Legal - Commercial", "created": { "dateUtc": "2024-12-25T00:00:00Z", "userName": "api.developer@lawvu.com" }, "modified": { "dateUtc": "2024-12-25T00:00:00Z", "userName": "api.developer@lawvu.com" } }