파이프라인 목록 조회

GET /v2/pipeline

딜 파이프라인과 스테이지의 목록을 조회합니다.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "success": true,
    "data": {
        "pipeLineList": [
            {
                "id": "<pipelineId>",
                "name": "파이프라인 이름",
                "pipelineStageList": [
                    {
                        "id": "<pipelineStageId>",
                        "name": "파이프라인 스테이지 이름 1",
                        "index": 1,
                        "description": "파이프라인 스테이지1의 설명"
                    }, 
                    {
                        "id": "<pipelineStageId>",
                        "name": "파이프라인 스테이지 이름 2",
                        "index": 2,
                        "description": "파이프라인 스테이지2의 설명"
                    },
                    ,...  
                  ]
            },
            ,...
            ]
}

Last updated