Skip to main content

Create new team

POST 

/teams

The operation creates new team.

Request

Header Parameters

    X-Codenow-Api-Key anyrequired

    CodeNOW API Key

Body

required

    name stringrequired

    Possible values: non-empty, Value must match regular expression ^(?![0-9]|_|-)[a-zA-z0-9_-]{1,30}


    The user-friendly name of the team.

    description stringnullable


    The detailed textual description of the team.

Responses

Team detail

Schema

    id uuidrequired

    Possible values: non-empty


    The unique identifier of the team.

    name stringrequired

    Possible values: non-empty


    The user-friendly name of the team.

    description stringnullable


    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.

    createdAt date-timerequired


    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.

    createdBy stringrequired


    The username of the user who created the team.

    members string[]required


    List of members who belong to the team, with each user represented by a username string.

Loading...