Create new team
POST/teams
The operation creates new team.
Request
Header Parameters
CodeNOW API Key
- application/vnd.codenow.v1+json
Body
required
Possible values: non-empty
, Value must match regular expression ^(?![0-9]|_|-)[a-zA-z0-9_-]{1,30}
The user-friendly name of the team.
The detailed textual description of the team.
Responses
- 200
- 400
- 401
- 403
- 404
- 429
- 500
Team detail
- application/vnd.codenow.v1+json
- Schema
- Example (from schema)
Schema
Possible values: non-empty
The unique identifier of the team.
Possible values: non-empty
The user-friendly name of the team.
The detailed textual description of the team. Allows users to add additional context,
notes, or any relevant information about the purpose, usage, or characteristics of the team.
The timestamp denoting when the team was created. It is an automatically generated value that
records the exact date and time when the team was added to the system.
The username of the user who created the team.
List of members who belong to the team, with each user represented by a username string.
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"description": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"createdBy": "string",
"members": [
"string"
]
}
The request was unacceptable, often due to missing a required parameter.
No valid API key provided.
The API key doesn't have permissions to perform the request.
Resource not found.
Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
Something went wrong on CodeNOW's end.