Get all global icons i.e. icons not associated with a particular object schema.
This request has no parameters.
Returns the array of all existing global icons.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/assets/1.0/icon/global' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
{
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
}
Get all icons associated with an object schema. This resource will not include global icons.
string
RequiredReturns the array of icon objects.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/assets/1.0/icon/objectschema/{id}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
{
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
}
Get a single icon by ID.
string
RequiredReturns the icon object.
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/assets/1.0/icon/{id}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
{
"expand": "<string>",
"project": "<string>",
"position": "<string>",
"after": "<string>",
"id": 2154,
"name": "<string>",
"url16": "<string>",
"url48": "<string>"
}