Skip to content

Get team

Request

Retrieve a team by its identifier

Path
teamIdinteger, (int32)required

The system identifier for the team

Example:469
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);

Responses

OK

Bodyapplication/json
allowAssignmentboolean or null

Indicates whether the team can be assigned to supported records

Example:true
idinteger or null, (int32)read-only

The system identifier for the team

Example:469
namestring or null

The full name of the team

Example:"Legal - Commercial"
createdobject or null(AuditableReference)read-only

The user who created the team and when

modifiedobject or null(AuditableReference)read-only

The username who modified the team and when

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" } }