Returns all project categories
This request has no parameters.
Returns a list of all project categories.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/projectCategory' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Create a project category.
The project category to create.
string
string
string
string
Returned if the project category is created successfully.
1
2
3
4
5
curl --request POST \
--url 'http://{baseurl}/rest/api/2/projectCategory' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Returns a full representation of the project category that has the given id.
integer
RequiredReturned if the project category exists and is visible by the calling user.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/projectCategory/{id}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Modify a project category.