Rate this page:
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.
GET /rest/assetapi/asset/type
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
The index of the first item to return in a page of results (page offset).
0
, Format: int32
integer
The maximum number of items to return per page. Note that this may be constrained by the Assets platform service.
50
, Format: int32
1 2 3
curl --request GET \
--url '/rest/assetapi/asset/type' \
--header 'Accept: application/json'
Returned if the request is successful. The response may be empty, if no results are found.
Content type | Value |
---|---|
application/json |
PUT /rest/assetapi/asset/type
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.
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"
}
}'
Returned if the resource is updated.
Content type | Value |
---|---|
application/json |
DELETE /rest/assetapi/asset/type/{appKey}/{originId}
string
The app key, which should be the Connect app key. This parameter is used to scope the originId
.
string
The identifier of an asset/asset type. This is the same identifier for the asset/asset type in its origin (external) system.
1 2
curl --request DELETE \
--url '/rest/assetapi/asset/type/{appKey}/{originId}'
Returned if the request is successful.
Rate this page: