GET api/v1/Teams/{id}

Gets a specific team

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the team

globally unique identifier

Required

fields

Use this to only return the data fields you're interested in. Field names not found are ignored and no error is thrown. If no fields are found then the full object is returned.

Collection of string

None.

suppressResponseCodes

Some applications do wonky things if error codes are used. Use this to force 200s to always return.

boolean

None.

APIKey

This is your unique key that identifies you as the developer of this app. Required for all calls.

string

None.

APIToken

This is the user's session token generated when you authenticate the user

string

None.

Body Parameters

None.

Response Information

Resource Description

Team
NameDescriptionTypeAdditional information
ID

Team's ID

globally unique identifier

None.

Name

Team's name

string

None.

OUName

Team's OU's name

string

None.

OUID

Team's OU ID

globally unique identifier

None.

LeaderFName

Team's leader's first name

string

None.

LeaderLName

Team's leader's last name

string

None.

LeaderID

Team's lead user ID

globally unique identifier

None.

ParentIDs

Parent IDs of this team

Collection of globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": "8bfea131-f152-4965-9330-19561c644669",
  "Name": "sample string 2",
  "OUName": "sample string 3",
  "OUID": "84ca180e-331c-4f47-adaa-045c62f4cbd3",
  "LeaderFName": "sample string 5",
  "LeaderLName": "sample string 6",
  "LeaderID": "403c8c84-7f5d-4160-8a44-7b4db27314db",
  "ParentIDs": [
    "4a544846-1b2a-41b1-adff-e59e07380d1d",
    "e41639a3-5d02-40b1-9c06-3a69ddceb9a9"
  ]
}