Skip to content

API 명세서

yejineee edited this page Nov 4, 2020 · 15 revisions

📌 issues

URL Method Body Query param
/ GET

Return

[
  {
    "id": Number,
    "title": String,
    "isClosed": Boolean,
    "closedAt": Datetime or Null,
    "authorId": Number,
    "milestoneId": Number,
    "createdAt": Datetime, // 2020-11-04 15:33:33
    "updatedAt": Datetime,
    "MilestoneId": Number,
    "Author": {
        "id": Number,
        "name": String
    },
    "Labels": [
        {
            "id": Number,
            "name": String,
            "description": String,
            "color": String
        }
    ],
    "Assignees": [
        {
            "id": Number,
            "profileLink": String
        }
    ],
    "Milestone": {
        "id": Number,
        "title": String
    }
  }
]

📌 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