팀 목록 조회

GET /v2/team

팀 목록을 조회합니다.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "success": true,
    "data": {
        "teamList": [
            {
                "id": "<teamId>",
                "name": "팀 이름",
                "description": "팀 설명",
                "teammateList": [
                    {
                        "id": "<userId>",
                        "name": "유저 이름1",
                        "isManager": <Boolean>,
                    },
                    {
                        "id": "<userId>",
                        "name": "유저 이름2",
                        "isManager": <Boolean>,
                    },
                ]
            }
        ]
    }
}

Last updated