/backlogs
These methods allow you to create, edit, delete and get info on backlogs.
Get list of backlogs
GET http://pm415.com/api/backlogs/:showarchived/:orgid
Shows the list of backlogs for the current org.
Path Parameters
:orgid
number
The ID of the org
:showarchived
boolean
True or false
Headers
Authentication
string
Authorization: Bearer 50ca9ba0f7b1444fa55d5
{
"success": true,
"backlogs": [
{
"email": "hwyxlisjb@emlpro.com",
"firstName": "alena",
"lastName": "prilipko",
"id": 17,
"title": "hhhh",
"description": null,
"archived": 0,
"statusId": 1,
"createdBy": 13
}
],
"admin": true
}Select full data of backlogs
POST http://pm415.com/api/backlogs/:orgid
Selects the full data of backlogs.
Path Parameters
:orgid
number
The ID of the org
Headers
Authentication
string
Authorization: Bearer 50ca9ba0f7b1444fa55d5
Request Body
object
{"backlogsId": ["17","2"], "fullSelect": true}
Update current backlog
PUT http://pm415.com/api/backlogs/edit/:orgid/:backlogid
Updates the current backlog.
Path Parameters
:orgid
number
The ID of the org
:backlogid
number
The ID of the backlog you want to update
Headers
Authentication
string
Authorization: Bearer 50ca9ba0f7b1444fa55d5
Request Body
object
{"title": "mmm", "statusId": "2" }
Create new backlog
POST http://pm415.com/api/backlogs/new/:orgid
Creates a new backlog for the current organization.
Path Parameters
:orgid
number
The ID of the org
Headers
Authentication
string
Authorization: Bearer 50ca9ba0f7b1444fa55d5
Request Body
object
{"title": "asdasd", "statusId": "2"}
Delete a backlog
DELETE http://pm415.com/api/backlogs/:orgid/:backlogid
Deletes the chosen backlog.
Path Parameters
:backlogid
number
The ID of the backlog you want to delete
:orgid
number
The ID of the org
Headers
Authentication
string
Authorization: Bearer 50ca9ba0f7b1444fa55d5
Last updated
Was this helpful?