Returns a list of all dashboards, optionally filtering them.
Forge and OAuth2 apps cannot access this REST resource.
string
string
string
Returns a list of dashboards.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/dashboard' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Returns the keys of all properties for the dashboard item identified by the id.
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredReturned if the dashboard item was found.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/dashboard/{dashboardId}/items/{itemId}/properties' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Returns the value of the property with a given key from the dashboard item identified by the id.
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
RequiredReturned if the dashboard item property was found.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/dashboard/{dashboardId}/items/{itemId}/properties/{propertyKey}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Sets the value of the property with a given key on the dashboard item identified by the id.
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
RequiredReturned if the dashboard item property is successfully updated.
1
2
3
curl --request PUT \
--url 'http://{baseurl}/rest/api/2/dashboard/{dashboardId}/items/{itemId}/properties/{propertyKey}' \
--user 'email@example.com:<api_token>'
Removes the property from the dashboard item identified by the key or by the id.
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
RequiredReturned if the dashboard item property was removed successfully.
1
2
3
curl --request DELETE \
--url 'http://{baseurl}/rest/api/2/dashboard/{dashboardId}/items/{itemId}/properties/{propertyKey}' \
--user 'email@example.com:<api_token>'
Returns a single dashboard.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturns a single dashboard.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/dashboard/{id}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Rate this page: