Project(In Progress)

Create a Project

POST {{apiUrl}}/api/projects

Headers

Name
Type
Description

accessToken*

String

Authorization Token

Request Body

Name
Type
Description

form*

form-data

프로젝트 생성 정보(title, content, links, labels, startDate, endDate) - JSON

file*

form-data

이미지 파일

labels*

String[]

라벨 배열

content*

String

Project 내용

title*

String

Project 제목

links*

link[]

링크 배열

endDate*

String

Project 종료일

startDate*

String

Project 시작일

{
  "id" : 1
}

Edit a Project

POST {{apiUrl}}/api/projects/{projectId}

Path Parameters

Name
Type
Description

projectId*

Number

Project 식별자

Headers

Name
Type
Description

accessToken*

String

Authorization Token

Request Body

Name
Type
Description

title*

String

Project 제목

file*

form-data

이미지 파일

form*

form-data

프로젝트 생성 정보(title, content, links, labels, startDate, endDate) - JSON

endDate*

String

Project 종료일

startDate*

String

Project 시작일

labels*

String[]

라벨 배열

links*

link[]

링크 배열

content*

String

Project 내용

Delete a Project

DELETE {{apiUrl}}/api/projects/{projectId}

Path Parameters

Name
Type
Description

projectId*

Number

Project 식별자

Headers

Name
Type
Description

accessToken*

String

Authorization Token

Create one Project

GET {{apiUrl}}/api/projects/{projectId}

Path Parameters

Name
Type
Description

projectId*

Number

Project 식별자

Headers

Name
Type
Description

accessToken*

String

Authorization Token

Get user's Project list

GET {{apiUrl}}/api/projects

Query Parameters

Name
Type
Description

size

Number

page

Number

Headers

Name
Type
Description

accessToken*

String

Authorization Token

Last updated