New Sprint
POST
/sprint/addRequest
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
goal
string
optional
Sprint Goal
<= 100 characters
endDate
string <date>
optional
End Date
name
string
required
Sprint Name
<= 50 characters
assignee
integer <int64>
optional
Sprint Owner ID
projectId
integer <int64>
required
Project ID
startDate
string <date>
optional
Start Date
Example
{
"goal": "xxx",
"endDate": 1646301600000,
"name": "xxx",
"assignee": 1,
"projectId": 1,
"startDate": 1646301600000
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
goal
string
optional
Sprint Goal
endDate
string <date>
optional
End Date
assigneeName
string
optional
Sprint Owner Name
name
string
optional
Sprint Name
closed
string <byte>
optional
Is Closed
<= 4 characters
started
string <byte>
optional
Is Started
<= 4 characters
id
integer <int64>
optional
Sprint ID
assignee
integer <int64>
optional
Sprint Owner ID
projectId
string
optional
Project ID
startDate
string <date>
optional
Start Date
completeDate
string <date>
optional
Complete Date
status
integer <int32>
optional
Sprint Status 1.Active 2.To be Started 3.UnPlaned 4.Finished
Example
{
"code": "0",
"data": {
"goal": "xxx",
"endDate": 1646301600000,
"assigneeName": "xxx",
"name": "xxx",
"closed": 1,
"started": 1,
"id": 1,
"assignee": 1,
"projectId": "1",
"startDate": 1646301600000,
"completeDate": 1646301600000,
"status": 1
}
}
Last modified: 6 months ago