SourceBuild 프로젝트 목록

Prev Next

개요

SourceBuild 프로젝트 목록을 조회 합니다.

요청

API URL

GET  {SOURCEPIPELINE_API_URL}/sourcebuild/project

요청 Parameter

없음

요청 Query

항목 타입 필수여부 설명 비고
pageNo string N 페이지 넘버 pageNo, pageSize 가 없다면 전체 리스트 전달 required if pageSize exist
pageSize string N 페이지 사이즈 pageNo, pageSize 가 없다면 전체 리스트 전달 required if pageNo exist
searchWord string N 검색할 프로젝트 이름 (문자열이 포함되어 있는 프로젝트 리스트 전달)

요청 Body

없음

응답

응답 Body

{
    "projectList": [
        {
            "id": "integer",
            "name": "string",
            "source": {
                "type": "string",
                "repository": "string",
                "branch": "string"
            }
        }
    ]
}
항목 타입 설명 비고
id number SourceBuild 프로젝트 ID
name string SourceBuild 프로젝트의 이름
source.type string source type "SourceCommit" | "GitHub"
source.repository string 리파지토리 이름
source.branch string 브랜치 이름