GET /rest/agile/1.0/board Returns all boards. This only includes boards that the user has permission to view. RequestQuery parametersmaxResults integer Format: int32 name string projectKeyOrId string type StringList startAt integer Format: int64 Example
Code Block |
---|
curl --request GET \
--url 'http://{baseurl}/rest/agile/1.0/board' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' |
Code Block |
---|
# This code sample uses the 'requests' library:
# http://docs.python-requests.org
import requests
from requests.auth import HTTPBasicAuth
import json
url = "http://{baseurl}/rest/agile/1.0/board"
auth = HTTPBasicAuth("email@example.com", "<api_token>")
headers = {
"Accept": "application/json"
}
response = requests.request(
"GET",
url,
headers=headers,
auth=auth
)
print(json.dumps(json.loads(response.text), sort_keys=True, indent=4, separators=(",", ": "))) |
Returns the requested boards, at the specified page of the results. Returned if the request is invalid. A schema has not been defined for this response code. Returned if the user is not logged in. A schema has not been defined for this response code.
|