Skip to main content

Get details of selected team

GET 

/teams/:teamName

The operation allows you to retrieve details about one team, including its members.

Request

Path Parameters

    teamName stringrequired

    Possible values: non-empty

Header Parameters

    X-Codenow-Api-Key anyrequired

    CodeNOW API Key

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...