GET /v2/pipeline
GET
/v2/pipeline
딜 파이프라인과 스테이지의 목록을 조회합니다.
Headers
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의 설명" }, ,... ] }, ,... ] }
{ "success": false, "message": "에러 메세지" }
Last updated 7 months ago