Get all global icons i.e. icons not associated with a particular object schema.
Forge and OAuth2 apps cannot access this REST resource.
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.
Forge and OAuth2 apps cannot access this REST resource.
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.
Forge and OAuth2 apps cannot access this REST resource.
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>"
}
Rate this page: