Skip to main content

IconsApi

Use this API to implement functionality related to object icons (application icons for example). With this functionality in place, administrators can set or remove an icon for specific object type for use throughout Identity Security Cloud.

All URIs are relative to https://sailpoint.api.identitynow.com

MethodHTTP requestDescription
delete-icon-v1DELETE /icons/v1/{objectType}/{objectId}Delete an icon
set-icon-v1PUT /icons/v1/{objectType}/{objectId}Update an icon

delete-icon-v1

experimental

This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.

Delete an icon This API endpoint delete an icon by object type and object id. A token with ORG_ADMIN authority is required to call this API.

API Spec

Parameters

NameTypeDescriptionNotes
objectType'application'Object type. Available options ['application'][default to undefined]
objectIdstringObject id.[default to undefined]
xSailPointExperimentalstringUse this header to enable this experimental API.[optional] [default to 'true']

Return type

(empty response body)

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { IconsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new IconsApi(configuration);
const objectType: string = application; // Object type. Available options [\'application\']
const objectId: string = a291e870-48c3-4953-b656-fb5ce2a93169; // Object id.
const xSailPointExperimental: string = true; // Use this header to enable this experimental API. (optional)
const result = await apiInstance.deleteIconV1({ objectType: objectType, objectId: objectId });
console.log(result);

[Back to top]

set-icon-v1

experimental

This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.

Update an icon This API endpoint updates an icon by object type and object id. A token with ORG_ADMIN authority is required to call this API.

API Spec

Parameters

NameTypeDescriptionNotes
objectType'application'Object type. Available options ['application'][default to undefined]
objectIdstringObject id.[default to undefined]
imageFilefile with icon. Allowed mime-types [\'image/png\', \'image/jpeg\'][default to undefined]
xSailPointExperimentalstringUse this header to enable this experimental API.[optional] [default to 'true']

Return type

SetIconV1200Response

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json

Example

import { IconsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new IconsApi(configuration);
const objectType: string = application; // Object type. Available options [\'application\']
const objectId: string = a291e870-48c3-4953-b656-fb5ce2a93169; // Object id.
const image: File = BINARY_DATA_HERE; // file with icon. Allowed mime-types [\\\'image/png\\\', \\\'image/jpeg\\\']
const xSailPointExperimental: string = true; // Use this header to enable this experimental API. (optional)
const result = await apiInstance.setIconV1({ objectType: objectType, objectId: objectId, image: image });
console.log(result);

[Back to top]