Skip to main content

Create Admin Error

Create a new admin error.

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

Request

Parameters

createAdminError
format

properties - (Default) key=value. most useful when requesting a single object. If multiple objects are returned, values is a csv. ie key=value1,value2,value3 where value1 is the value for the first object, value2 is the value for the 2nd object, etc.

json - Useful format for parsing into javascript or other languages. See www.json.org for details.

The high level description for the error
typeOptional type that defaults to user defined if not specified. Valid values :
  • System
  • Workflow
  • Data_Collection
  • Identity_Data_Load
  • Entitlement_Data_Load
  • Reference_Resolution
  • Role_Data_Load
  • Account_Data_Load
  • Identity_Unification
  • Rule_Execution
  • User_Defined_Action
  • EntitlementReview
  • Delete_Users
  • Activity_Handler
  • Metadata_Load
  • Data_Access_Data_Load
  • Security
  • User_Lockout
priorityThe priority for the admin error. Valid values :
  • Low
  • Medium
  • High

Headers

Bearer token
Acceptapplication/json
Content-Typetext/plain

Body

Error details in text format

Response

Parameters

typeExecuted command name
idThe id of the error that was created

Examples

Request

curl -K -X POST  \
"https://instance.securid.com/aveksa/command.submit?cmd=createAdminError&desc=ExampleError&priority=Low" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"

Response

{
"data": {
"type": "createAdminError",
"id": "3986"
}
}