GET /statuses
Fetches the list of statuses associated to the account. The account is determined by the API key.
Resource URL
GET https://api.prodpad.com/v1/statuses
Response
Status: 200 OK
[
{
"id": "17",
"status": "Queued for Dev",
"created_at": "2013-07-07 21:04:07",
"updated_at": "2013-07-07 21:04:07"
},
{
"id": "18",
"status": "In Development",
"created_at": "2013-07-07 21:04:07",
"updated_at": "2013-07-07 21:04:07"
},
{
"id": "19",
"status": "QA",
"created_at": "2013-07-07 21:04:07",
"updated_at": "2013-07-07 21:04:07"
},
{
"id": "20",
"status": "Released",
"created_at": "2013-07-07 21:04:07",
"updated_at": "2013-07-07 21:04:07"
},
{
"id": "21",
"status": "Not Doing",
"created_at": "2013-07-07 21:04:07",
"updated_at": "2013-07-07 21:04:07"
}
]
Notes:
- All dates are in UTC
Returns a specific status.
Resource URL
GET https://api.prodpad.com/v1/statuses/:id
Response
Status: 200 OK
{
"id": "18",
"account_id": "1",
"status": "In Development",
"state": "active",
"created_at": "2013-07-07 21:04:07",
"updated_at": "2013-07-07 21:04:07"
}
Notes:
- All dates are in UTC
Was this article helpful?
0 out of 0 found this helpful
Comments