Manage non-project work items
Lists non-project work items, optionally filtered by name, with cursor-based pagination.
Forge and OAuth2 apps cannot access this REST resource.
string
integer
string
integer
string
OK
Paginated response containing non-project work items
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/ex/capacity-planning/{cloudId}/v1/non-project-work-items' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"nonProjectWorkItems": [
{
"ari": "ari:cloud:capacity-planning::custom-contribution-target/activation/a729796c-2ed4-4307-913a-d82357bb2f9a/3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"id": "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"name": "<string>"
}
],
"pageInfo": {
"endCursor": "<string>",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "<string>"
}
}Creates a non-project work item.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredCreated
Response containing the created non-project work item
1
2
3
4
5
6
7
curl --request POST \
--url 'https://api.atlassian.com/ex/capacity-planning/{cloudId}/v1/non-project-work-items' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>"
}'1
2
3
4
5
6
7
{
"nonProjectWorkItem": {
"ari": "ari:cloud:capacity-planning::custom-contribution-target/activation/a729796c-2ed4-4307-913a-d82357bb2f9a/3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"id": "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"name": "<string>"
}
}Retrieves a single non-project work item by its server-allocated UUID.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredOK
A non-project work item
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/ex/capacity-planning/{cloudId}/v1/non-project-work-items/{id}' \
--header 'Accept: application/json'1
2
3
4
5
{
"ari": "ari:cloud:capacity-planning::custom-contribution-target/activation/a729796c-2ed4-4307-913a-d82357bb2f9a/3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"id": "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"name": "<string>"
}Updates the mutable fields (name) of an existing non-project work item.
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredOK
A non-project work item
1
2
3
4
5
6
7
curl --request PUT \
--url 'https://api.atlassian.com/ex/capacity-planning/{cloudId}/v1/non-project-work-items/{id}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>"
}'1
2
3
4
5
{
"ari": "ari:cloud:capacity-planning::custom-contribution-target/activation/a729796c-2ed4-4307-913a-d82357bb2f9a/3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"id": "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"name": "<string>"
}Rate this page: