This resource represents asset types in Jira. Asset types are used to categorize assets. Use this resource to get, create, update, and delete assets in Jira.
Fetches all available asset types. Only asset types with an appKey matching an installed asset management app will be returned. If no asset management apps are installed, falls back to returning all asset types.
integer
integer
Returned if the request is successful. The response may be empty, if no results are found.
1
2
3
curl --request GET \
--url '/rest/assetapi/asset/type' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"values": [
{
"origin": {
"appKey": "com.myasset.app",
"originId": "5-113-51143-2032"
},
"label": {
"value": "MacBook Pro 15\" 2016"
}
}
],
"start": 73,
"limit": 122,
"size": 33,
"isLastPage": true
}
Creates a new asset type or updates an existing asset type. Note that updating an asset type will overwrite its properties with the properties defined in the request object.
origin
label
Returned if the resource is updated.
Asset Type
1
2
3
4
5
6
7
8
9
10
11
12
13
curl --request PUT \
--url '/rest/assetapi/asset/type' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"origin": {
"appKey": "com.myasset.app",
"originId": "5-113-51143-2032"
},
"label": {
"value": "MacBook Pro 15\" 2016"
}
}'
1
2
3
4
5
6
7
8
9
{
"origin": {
"appKey": "com.myasset.app",
"originId": "5-113-51143-2032"
},
"label": {
"value": "MacBook Pro 15\" 2016"
}
}
string
Requiredstring
RequiredReturned if the request is successful.
1
2
curl --request DELETE \
--url '/rest/assetapi/asset/type/{appKey}/{originId}'
Rate this page: