Create a team
This service can be used to create a new team in your organisation.
Each team must have a unique name. The service will refuse your request and return an error message if you attempt to create a team whose name is already used.
When successful, the service will return:
The DriveKit SDK API key, which can be used to activate the SDK
The DriveKit Admin API key, which can be used to access the DriveKit Admin API
Header parameters
x-dq-enterprise-api-keystringRequired
Enterprise API key
Body
teamIdstringRequired
Unique identifier of the team
Responses
200
OK
application/json
401
Unauthorized
404
Admin Not Found (please contact us)
application/json
409
Conflict
application/json
422
Default team configuration missing (please contact us)
application/json
429
Too Many Requests
application/json
post
POST /v1/enterprise/team HTTP/1.1
Host: service.drivequant.com
x-dq-enterprise-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"teamId": "text"
}
{
"teamId": "def246bc-a7fe-4a2d-b002-3cd4abdb077a",
"sdkApiKey": "POSZ6143942",
"adminApiKey": "XJKJ5456191"
}
Request body
Name
Type
Description
teamId
string
Unique team identifier
Response
The table below summarizes the response parameters.
Name
Type
Description
teamId
string
Unique identifier of the team
sdkApiKey
string
API key to activate the DriveKit SDK
adminApiKey
string
API key to use the DriveKit Admin services
Last updated
Was this helpful?