Skip to content

API 명세서

yejineee edited this page Oct 29, 2020 · 15 revisions

📌 issues

URL Method Body Query param
/ GET

Return

[
    {
        "id": Number,
        "title" : String,
        "contents" : String,
        "writer" : String,
        "milestoneTitle": String,
        "isClosed" : Boolean,
        "closedAt" : datetime or null,
        "createdAt" : datetime,
        "updatedAt" : datetime,
        "assigneeList" :[
            {
                "id" : Number,
                "name" : String
            }
        ],
        "labelList":[
            {
                "id" : Number,
                "name" : String,
                "color" : String
            }
        ],
        "commentLength" : Number
    }
]

📌 labels

URL Method Body Query param
/ GET

Return

[
    {
        "id" : Number,
        "name" : String,
        "color" : String,
        "description" : String,
    }
]

📌 users

URL Method Body Query param
/ GET

Return

[
    {
        "id": Number,
        "name": String,
        "uid": String,
        "profile_link": String
    }
]

📌 milestones

URL Method Body Query param
/ GET

Return

[
    {
        "id": Number,
        "title": String,
        "description": String,
        "end_date": String,
        "createdAt": String,
        "updatedAt": String
    }
]

Clone this wiki locally