For the complete documentation index, see llms.txt. This page is also available as Markdown.

List of teams

This service can be used to get the list of all the teams belonging to your organisation.

If you have your enterprise API key, you can try the API via this link.

Get all teams

get
Header parameters
x-dq-enterprise-api-keystringRequired

Enterprise API key

Responses
200

OK

application/json
teamIdstringRequired

Unique identifier of the team

creationDatestring · date-timeRequired

Creation date of the team

Example: 2024-10-28T20:12:53.191+0000
statusstring · enumRequired

Current status of the team

Possible values:
get/teams
GET /v1/enterprise/teams HTTP/1.1
Host: service.drivequant.com
x-dq-enterprise-api-key: text
Accept: */*
[
  {
    "teamId": "b391a26a-a9d8-4e96-a36b-76db0c0f6703",
    "creationDate": "2024-10-28T20:12:53.191+0000",
    "status": "ENABLED"
  },
  {
    "teamId": "24f1da88-e6e9-42a3-b833-92898726ae32",
    "creationDate": "2024-10-22T20:12:53.191+0000",
    "status": "DISABLED"
  }
]

Response

The service returns an array of elements, whose structure is defined in the table below.

Name
Type
Description

teamId

string

Unique identifier of the team

creationDate

date

Creation date Date format: YYYY-MM-dd’T’HH:mm:ss.SSSZ

status

string

Current status of the team Allowed values: ENABLED, DISABLED

Last updated

Was this helpful?