mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-11 04:19:42 +00:00
41 lines
1.3 KiB
Markdown
41 lines
1.3 KiB
Markdown
---
|
|
id: source-deleted
|
|
title: Source Deleted
|
|
pagination_label: Source Deleted
|
|
sidebar_label: Source Deleted
|
|
sidebar_class_name: sourceDeleted
|
|
keywords: ['event', 'trigger', 'source', 'deleted', 'available']
|
|
description: Fires after a source is deleted.
|
|
slug: /extensibility/event-triggers/triggers/source-deleted
|
|
tags: ['Event Triggers', 'Available Event Triggers', 'Fire and Forget']
|
|
---
|
|
|
|
## Event Context
|
|
|
|
Source Deleted events occur when a source is successfully deleted via the API or the Admin UI. Some uses cases for this trigger include the following:
|
|
|
|
- Provide evidence to show auditors that connector logic and sources are not manipulated outside of proper change control processes.
|
|
- Alert admins when a source was deleted incorrectly.
|
|
|
|
This is an example input from this trigger:
|
|
|
|
```json
|
|
{
|
|
"id": "2c9180866166b5b0016167c32ef31a66",
|
|
"name": "Test source",
|
|
"type": "DIRECT_CONNECT",
|
|
"deleted": "2021-03-29T22:01:50.474Z",
|
|
"connector": "active-directory",
|
|
"actor": {
|
|
"type": "IDENTITY",
|
|
"id": "2c91808568c529c60168cca6f90c1313",
|
|
"name": "William Wilson"
|
|
}
|
|
}
|
|
```
|
|
|
|
## Additional Information and Links
|
|
|
|
- **Trigger Type**: [FIRE_AND_FORGET](../trigger-types.md#fire-and-forget)
|
|
<!-- [Input schema](https://developer.sailpoint.com/apis/beta/#section/Source-Deleted-Event-Trigger-Input) -->
|