Boards

Get boards

GET /api/boards

Lists the boards that the user has access to.

{
  "boards": [
    {
      "url": "https://www.agileplannerapp.com/api/boards/138992",
      "backlog_url": "https://www.agileplannerapp.com/api/boards/138992/backlog",
      "name": "Development",
      "number": 138992
    }
  ]
}

Get a board

GET /api/boards/:board

Returns a single board. The value of :board can be retrieved from the GET /boards call.

{
  "board": {
    "url": "https://www.agileplannerapp.com/api/boards/138992",
    "backlog_url": "https://www.agileplannerapp.com/api/boards/138992/backlog",
    "name": "Development",
    "number": 138992,
    "current_iteration": {
      "url": "https://www.agileplannerapp.com/api/boards/138992/iterations/current",
      "begins_on": "Tue, 10 Jun 2014 00:00:00 +0000",
      "ends_on": "Mon, 23 Jun 2014 00:00:00 +0000"
    },
    "old_iterations": [
      {
        "url": "https://www.agileplannerapp.com/api/boards/138992/iterations/20140527",
        "begins_on": "Tue, 27 May 2014 00:00:00 +0000",
        "ends_on": "Mon, 9 Jun 2014 00:00:00 +0000"
      },
      {
        "url": "https://www.agileplannerapp.com/api/boards/138992/iterations/20140513",
        "begins_on": "Tue, 13 May 2014 00:00:00 +0000",
        "ends_on": "Mon, 26 May 2014 00:00:00 +0000"
      }
    ]
  }
}