Skip to main content

Import Descriptions

Import a RSA G&L description file using either a file on the server or in the request body.

POST https://instance.securid.com/aveksa/command.submit?cmd=importDescriptions

Request

Parameters

importDescriptions
filename

The filename in the import directory on the G&L server. The import directory is specified on the web services configuration page. Alternatively, the data can be sent as part of the request body.

This option is not recommended and file should be passed using the POST body
formatThe input file format. Valid values :

csv - Comma separated values

xml - Extensible Markup Language
behaviorThe behavior when import file contains existing descriptions. Valid values :

- skip

- overwrite

- fail
appscopetrue, false Indicates if the application scope column is supported or not in CSV file format. (Default) false

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Body

Descriptions XML data

Response

Parameters

typeExecuted command name

Examples

Request

curl -L -X POST "https://instance.securid.com/aveksa/command.submit?cmd=importDescriptions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <token>" \
-d "<BusinessDescriptions>
<BusinessDescription type=\"Application\" exactmatch=\"true\" filter=\"Aha!\">
<AltName>Aha!</AltName>
<Tooltip/>
<LongDesc/>
<HelpURL/>
</BusinessDescription>
<BusinessDescription type=\"Application\" exactmatch=\"true\" filter=\"Asana\">
<AltName>Asana</AltName>
<Tooltip/>
<LongDesc/>
<HelpURL/>
</BusinessDescription>
<BusinessDescription type=\"Application\" exactmatch=\"true\" application=\"Assigned SecurID Tokens\" filter=\"Assigned SecurID Tokens\">
<AltName>Assigned SecurID Tokens</AltName>
<Tooltip/>
<LongDesc/>
<HelpURL/>
</BusinessDescription>
<BusinessDescription type=\"Entitlement\" exactmatch=\"true\" filter=\"Active Directory : Synchronize\">
<AltName>Active Directory : Synchronize</AltName>
<Tooltip/>
<LongDesc>Triggers attribute synchronization for Active Directory when assigned</LongDesc>
<HelpURL/>
</BusinessDescription>
<BusinessDescription type=\"GlobalRole\" exactmatch=\"true\" application=\"AveksaRoles\" filter=\"Privileged Base User\">
<AltName>Privileged Base User</AltName>
<Tooltip/>
<LongDesc/>
<HelpURL/>
</BusinessDescription>
</BusinessDescriptions>"

Response