Returns an Alert resource based on id.
GET/Alerts/:alertId
>The Alert resource with matching id is returned.
Attributes to include in the response can be specified with the attributes query parameter.
Attributes to exclude from the response can be specified with the excludedAttributes query parameter.
Request
Path Parameters
id of Alert resource.
Query Parameters
A comma-separated list of attributes to return in the response. This query parameter supersedes excludedAttributes, so providing the same attribute(s) to both will result in the attribute(s) being returned.
A comma-separated list of attributes to exclude from the response. Some attributes cannot be excluded.
Responses
- 200
Returns a single Alert resource based on the id.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
Array [
Array [
Array [
]
]
]
Unique identifier of the Alert.
Name of the Alert, auto-generated by the SCIM Server.
Display name of the Alert.
Type of the Alert.
attributes
undefined[]
A list of attributes of the Alert.
The attribute value.
The attribute key.
application
undefined[]
The corresponding Application object of the Alert.
The Application associated with the Alert.
The URI of the SCIM resource representating the Alert application.
The name of the Alert Application. OPTIONAL and READ-ONLY.
actions
undefined[]
Alert actions.
Possible values: [WORKFLOW
, CERTIFICATION
, NOTIFICATION
]
The type of action performed as a result of the Alert.
The name of the Alert Definition that triggered the action.
Typically actions create other objects, a certificationId or workflowId as a result of the action taken.
result
undefined[]
The Task Result of the Alert.
The name of the Task Result for the Alert action.
The name of the Workflow used in the Alert action task result.
notifications
undefined[]
Notifications to send when a Alert action is generated.
The name of configured notifications for Alert action results.
Display name for the Alert action notification.
A list of email addresses to send an Alert action notification.
The Alert DateTime, this could have different meanings based on the type of alert.
The DateTime of the last time the Alert was processed, this does not indicate the system took action on the Alert.
Unique Identifier of the Alert in the native system.
Unique Identifier of the target object which caused the Alert.
The type of SailPointObject the target is.
User friendly display name of the target object.
meta
object
DateTime when the Alert was created.
URL to the Alert.
DateTime of Alert last modification.
Alert version.
Resource type of the metadata subject.
{
"id": "c0a8019c7ffa186e817ffb80170a0195",
"name": "0000000002",
"displayName": "Workflow Alert",
"type": "Business Process Alert",
"attributes": [
{
"value": "Windows File Server (Agent)",
"key": "applicationType"
}
],
"application": [
{
"value": "SAP",
"$ref": "http://localhost:8080/identityiq/scim/v2/Applications/7f00000180281df7818028bfed100826",
"displayName": "SAP Financial App"
}
],
"actions": [
{
"type": "Certification",
"alertDefinitionName": "certLauncher",
"resultId": "7f00000180281df7818028c109ea1742",
"result": [
{
"name": "Alert 0000000001 Certification Result",
"workflowName": "refreshCerficationSchedule",
"notifications": [
{
"name": 9,
"displayName": "Certification Refresh Notification for James.Smith",
"emailAddresses": "[email protected]"
}
]
}
]
}
],
"alertDate": "2022-03-31T14:52:40.265-05:00",
"lastProcessed": "2022-03-31T14:52:40.260-05:00",
"nativeId": "420bebfb-c87a-406f-930c-29e06feb47bc",
"targetId": "c0a8019c7fe51750817fe634a6b10171",
"targetType": "Certification",
"targetDisplayName": "Manager Certification",
"meta": {
"created": "2022-04-05T15:52:30.090-05:00",
"location": "http://localhost:8080/identityiq/scim/v2/Alerts/c0a8019c7ffa186e817ffb80170a0195",
"lastModified": "2022-04-05T15:52:30.119-05:00",
"version": "W\"1649191950119\"",
"resourceType": "Alert"
}
}