Use this API to enable data ownership election campaigns, assign resource owners, and respond to identity lifecycle events to maintain continuous accountability.
This API can also trigger and manage DAS tasks such as scans-starting them on demand, updating configurations or schedules, and retrieving statuses. Additionally, you can onboard and manage applications at scale by creating and configuring them, setting scanning schedules, retrieving metadata, and associating them with Virtual Appliances and Identity Collectors.
All URIs are relative to https://sailpoint.api.identitynow.com
cancel-task-v1
This end-point sends a request to cancel a task in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the task to cancel. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 1001
try {
Suspend-TaskV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Suspend-TaskV1"
Write-Host $_.ErrorDetails
}
[Back to top]
create-application-v1
This endpoint creates a new application in Data Access Security with the specified configuration.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Body | BaseCreateApplicationRequest | BaseCreateApplicationRequest | True | Request body containing the details required to create a new application. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$BaseCreateApplicationRequest = @"{
"adIdentityCollectorId" : 987654321,
"applicationType" : 9,
"nisIdentityCollectorId" : 192837465,
"executeNow" : false,
"name" : "HR File Server",
"description" : "Stores HR documents and employee records.",
"dataClassificationSettings" : {
"isEnabled" : true,
"clusterId" : "cluster-001"
},
"activityConfigurationSettings" : {
"excludeFolders" : [ "/tmp", "/archive" ],
"excludeFileExtensions" : [ ".log", ".bak" ],
"excludeActions" : [ "delete", "move" ],
"isEnabled" : true,
"retentionTimePeriod" : 30,
"retentionTimeType" : "days",
"clusterId" : "cluster-001",
"excludeUsers" : [ "user1", "user2" ]
},
"applicationCrawlerSettings" : {
"calculateResourceSize" : 2,
"excludedResources" : [ "resourceA", "resourceB" ],
"crawlPublicFolders" : true,
"excludedPathsByRegex" : "^/archive/.*",
"isEnabled" : true,
"crawlSnapshotsFolder" : true,
"crawlMailboxes" : false,
"crawlTopLevelShares" : [ "share1", "share2" ],
"clusterId" : "cluster-001",
"includeResources" : [ "resourceX", "resourceY" ]
},
"identityCollectorId" : 123456789,
"permissionCollectorSettings" : {
"analyzeUniquePermissions" : true,
"calculateRiskiestPermissions" : false,
"isEnabled" : true,
"calculateEffectivePermissions" : true,
"clusterId" : "cluster-001",
"effectivePermissionsSource" : "S3"
},
"tags" : [ {
"key" : 1,
"value" : "Confidential"
} ]
}"@
try {
$Result = ConvertFrom-JsonToBaseCreateApplicationRequest -Json $BaseCreateApplicationRequest
New-ApplicationV1 -BaseCreateApplicationRequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling New-ApplicationV1"
Write-Host $_.ErrorDetails
}
[Back to top]
create-data-dictionary-field-v1
Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
API Spec
Parameters
Return type
Datadictionaryfieldlistitem
Responses
| Code | Description | Data Type |
|---|
| 201 | The data dictionary field was created. | Datadictionaryfieldlistitem |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 409 | Conflict - Returned if an identity collector with the same name already exists. | PutIdentityCollectorV1409Response |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$Createdatadictionaryfieldrequest = @"{
"name" : "Department",
"dataDictionaryType" : "Users"
}"@
try {
$Result = ConvertFrom-JsonToCreatedatadictionaryfieldrequest -Json $Createdatadictionaryfieldrequest
New-DataDictionaryFieldV1 -Createdatadictionaryfieldrequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling New-DataDictionaryFieldV1"
Write-Host $_.ErrorDetails
}
[Back to top]
create-identity-collector-v1
This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source.
Optionally configure users and groups to register source attributes (properties) and map them to data dictionary fields by name (fieldMappings.fieldDictionaryName). When omitted, both collections are created with fixed columns only.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Body | Createidentitycollectorrequest | Createidentitycollectorrequest | True | Request body containing the details required to create a new identity collector. |
Return type
CreateIdentityCollectorV1200Response
Responses
| Code | Description | Data Type |
|---|
| 200 | The identity collector was created successfully. | CreateIdentityCollectorV1200Response |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$Createidentitycollectorrequest = @"{
"sourceId" : "2c9180835d2e5168015d32f890ca1581",
"name" : "Active Directory Identity Collector",
"groups" : {
"fieldMappings" : [ {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
}, {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
} ],
"properties" : [ "UserAddress", "department" ]
},
"users" : {
"fieldMappings" : [ {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
}, {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
} ],
"properties" : [ "UserAddress", "department" ]
}
}"@
try {
$Result = ConvertFrom-JsonToCreateidentitycollectorrequest -Json $Createidentitycollectorrequest
New-IdentityCollectorV1 -Createidentitycollectorrequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling New-IdentityCollectorV1"
Write-Host $_.ErrorDetails
}
[Back to top]
create-schedule-v1
API Spec
Parameters
Return type
Int64
Responses
| Code | Description | Data Type |
|---|
| 200 | OK | Int64 |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$CreateScheduleRequest = @"{
"scheduleTaskName" : "Daily Data Sync",
"scheduleType" : "Daily",
"active" : true,
"interval" : 1440,
"startTime" : 1762237200,
"endTime" : 1762240800,
"taskTypeName" : "DataSync",
"daysOfWeek" : [ "Monday", "Wednesday", "Friday" ],
"applicationId" : 2001,
"runAfterScheduleTaskId" : 1000
}"@
try {
$Result = ConvertFrom-JsonToCreateScheduleRequest -Json $CreateScheduleRequest
New-ScheduleV1 -CreateScheduleRequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling New-ScheduleV1"
Write-Host $_.ErrorDetails
}
[Back to top]
das-v1-owners-assign-post
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Body | AssignResourceOwnerRequest | AssignResourceOwnerRequest | True | The request body must contain the application ID, resource path, and identity ID to be assigned as the resource owner. |
Return type
Int32
Responses
| Code | Description | Data Type |
|---|
| 200 | 1 - success, otherwise failure. | Int32 |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$AssignResourceOwnerRequest = @"{
"fullPath" : "/shared/hr/documents/employee-records.pdf",
"identityId" : "d290f1ee-6c54-4b01-90e6-d701748f0851",
"appId" : 12345
}"@
try {
$Result = ConvertFrom-JsonToAssignResourceOwnerRequest -Json $AssignResourceOwnerRequest
Invoke-DasV1OwnersAssignPost -AssignResourceOwnerRequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Invoke-DasV1OwnersAssignPost"
Write-Host $_.ErrorDetails
}
[Back to top]
das-v1-owners-owner-identity-id-resources-get
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | OwnerIdentityId | String | True | Unique identifier for the owner. This should be a UUID representing the owner's identity. |
| Query | Limit | Int32 | (optional) (default to 250) | Not applicable for this endpoint. Do not use. |
| Query | Offset | Int32 | (optional) (default to 0) | Not applicable for this endpoint. Do not use. |
Return type
ResourceModel[]
Responses
| Code | Description | Data Type |
|---|
| 200 | A list of resources owned by the specified identity was retrieved successfully. | ResourceModel[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$OwnerIdentityId = "a3f1c2d4-5678-4e9b-8c2d-123456789abc"
$Limit = 250
$Offset = 0
try {
Invoke-DasV1OwnersOwnerIdentityIdResourcesGet -OwnerIdentityId $OwnerIdentityId
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Invoke-DasV1OwnersOwnerIdentityIdResourcesGet"
Write-Host $_.ErrorDetails
}
[Back to top]
das-v1-owners-reelect-post
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Body | ReelectRequest | ReelectRequest | True | The request body must contain details for re-electing a resource owner. Date/time fields should use epoch format in seconds. |
Return type
Int32
Responses
| Code | Description | Data Type |
|---|
| 200 | The number of elections CREATED. In case of failure, some elections may not be STARTED. | Int32 |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$ReelectRequest = @"{
"ownerId" : "c1a2b3d4-e5f6-7890-abcd-1234567890ab",
"campaignName" : "Annual Resource Owner Election",
"reviewers" : [ "d4e5f6a7-b8c9-0123-4567-89abcdef0123", "e7f8g9h0-i1j2-3456-7890-klmnopqrstuv" ]
}"@
try {
$Result = ConvertFrom-JsonToReelectRequest -Json $ReelectRequest
Invoke-DasV1OwnersReelectPost -ReelectRequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Invoke-DasV1OwnersReelectPost"
Write-Host $_.ErrorDetails
}
[Back to top]
das-v1-owners-resources-resource-id-get
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | ResourceId | Int64 | True | Unique identifier for the resource. |
| Query | Limit | Int32 | (optional) (default to 250) | Not applicable for this endpoint. Do not use. |
| Query | Offset | Int32 | (optional) (default to 0) | Not applicable for this endpoint. Do not use. |
Return type
String[]
Responses
| Code | Description | Data Type |
|---|
| 200 | A list of owner identity UUIDs for the specified resource was retrieved successfully. | String[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$ResourceId = 101
$Limit = 250
$Offset = 0
try {
Invoke-DasV1OwnersResourcesResourceIdGet -ResourceId $ResourceId
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Invoke-DasV1OwnersResourcesResourceIdGet"
Write-Host $_.ErrorDetails
}
[Back to top]
das-v1-owners-source-identity-id-reassign-destination-identity-id-post
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | SourceIdentityId | String | True | Unique identifier for the source owner. This should be a UUID representing the identity to reassign from. |
| Path | DestinationIdentityId | String | True | Unique identifier for the destination owner. This should be a UUID representing the identity to reassign to. |
Return type
Int32
Responses
| Code | Description | Data Type |
|---|
| 200 | The number of resources whose owners were overwritten. | Int32 |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$SourceIdentityId = "a3f1c2d4-5678-4e9b-8c2d-123456789abc"
$DestinationIdentityId = "b4e2d3c5-6789-4f0a-9d3e-234567890bcd"
try {
Invoke-DasV1OwnersSourceIdentityIdReassignDestinationIdentityIdPost -SourceIdentityId $SourceIdentityId -DestinationIdentityId $DestinationIdentityId
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Invoke-DasV1OwnersSourceIdentityIdReassignDestinationIdentityIdPost"
Write-Host $_.ErrorDetails
}
[Back to top]
delete-application-v1
This endpoint deletes an application from Data Access Security by its unique identifier.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the application to delete. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 12345
try {
Remove-ApplicationV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Remove-ApplicationV1"
Write-Host $_.ErrorDetails
}
[Back to top]
delete-data-dictionary-field-v1
Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Name | String | True | The field name to delete. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 409 | Conflict - Returned if an identity collector with the same name already exists. | PutIdentityCollectorV1409Response |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Name = "Department"
try {
Remove-DataDictionaryFieldV1 -Name $Name
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Remove-DataDictionaryFieldV1"
Write-Host $_.ErrorDetails
}
[Back to top]
delete-identity-collector-v1
This endpoint deletes an identity collector from Data Access Security by its unique identifier.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the identity collector to delete. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 12345
try {
Remove-IdentityCollectorV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Remove-IdentityCollectorV1"
Write-Host $_.ErrorDetails
}
[Back to top]
delete-schedule-v1
This end-point sends a request to delete a schedule in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the schedule to delete. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 1001
try {
Remove-ScheduleV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Remove-ScheduleV1"
Write-Host $_.ErrorDetails
}
[Back to top]
delete-task-v1
This end-point sends a request to delete a task in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the task to delete. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 1001
try {
Remove-TaskV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Remove-TaskV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-application-v1
This endpoint retrieves the details of a specific application in Data Access Security by its unique identifier.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the application to retrieve. |
Return type
ApplicationItem
Responses
| Code | Description | Data Type |
|---|
| 200 | The application details were retrieved successfully. | ApplicationItem |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 12345
try {
Get-ApplicationV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-ApplicationV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-applications-v1
This endpoint lists all the applications in Data Access Security with optional filtering.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Query | Filters | String | (optional) | Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: appIds: eq, in tagIds: eq, in statuses: eq, in groupCodes: eq, in virtualAppId: eq appName: eq supportsValidation: eq Supported composite operators are and, or |
| Query | Limit | Int32 | (optional) (default to 250) | Max number of results to return. See V3 API Standard Collection Parameters for more information. |
| Query | Offset | Int32 | (optional) (default to 0) | Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information. |
| Query | Count | Boolean | (optional) (default to $false) | If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information. |
Return type
ApplicationItem[]
Responses
| Code | Description | Data Type |
|---|
| 200 | A list of applications matching the filter criteria. | ApplicationItem[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Filters = 'AppType eq 'ActiveDirectory' and Statuses eq 'Passed''
$Limit = 250
$Offset = 0
$Count = $true
try {
Get-ApplicationsV1
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-ApplicationsV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-identity-collector-builtin-properties-v1
Returns the built-in source attribute names for users and groups collections. When no filter is provided, built-in properties for all public identity collector types are returned (the same base types listed by List Identity Collector Types). When filtered by type, only the matching type is returned; the filter accepts any supported type display name, including SaaS variants such as Box SaaS or AWS SaaS.
These attributes are always available for field mapping without being listed in properties.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Query | Filters | String | (optional) | Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: type: eq |
Return type
Identitycollectorbuiltinpropertiesresponse
Responses
| Code | Description | Data Type |
|---|
| 200 | Built-in source attribute names for users and groups collections. | Identitycollectorbuiltinpropertiesresponse |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Filters = 'type eq "Azure Active Directory"'
try {
Get-IdentityCollectorBuiltinPropertiesV1
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-IdentityCollectorBuiltinPropertiesV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-identity-collector-types-v1
Returns the public identity collector type display names exposed for metadata and UI discovery. This endpoint lists base types only (for example, Box rather than Box SaaS). SaaS variants are not listed here; the identity collector type is derived from sourceId when creating an identity collector. Existing identity collectors may still report SaaS variant types in list and update responses.
Pagination is not supported for this endpoint; the full set of public types is always returned.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Query | Limit | Int32 | (optional) (default to 250) | Max number of results to return. See V3 API Standard Collection Parameters for more information. |
| Query | Offset | Int32 | (optional) (default to 0) | Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information. |
Return type
String[]
Responses
| Code | Description | Data Type |
|---|
| 200 | Supported identity collector type display names. | String[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Limit = 250
$Offset = 0
try {
Get-IdentityCollectorTypesV1
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-IdentityCollectorTypesV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-owners-v1
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | AppId | Int64 | True | The unique identifier of the application for which to retrieve owners. |
| Query | Limit | Int32 | (optional) (default to 250) | Not applicable for this endpoint. Do not use. |
| Query | Offset | Int32 | (optional) (default to 0) | Not applicable for this endpoint. Do not use. |
Return type
DataOwnerModel[]
Responses
| Code | Description | Data Type |
|---|
| 200 | OK. Returns a list of DataOwnerModel objects. | DataOwnerModel[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$AppId = 2001
$Limit = 250
$Offset = 0
try {
Get-OwnersV1 -AppId $AppId
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-OwnersV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-schedule-v1
This end-point gets a schedule in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the schedule to retrieve. |
Return type
ScheduleInfo
Responses
| Code | Description | Data Type |
|---|
| 200 | A schedule object. | ScheduleInfo |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 1001
try {
Get-ScheduleV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-ScheduleV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-schedules-v1
This end-point lists all the schedules in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Query | Filters | String | (optional) | Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: scheduleTaskIds: eq, in taskTypeName: eq, in status: eq applicationId: eq fullName: eq nameSubString: eq scheduleType: eq Supported composite operators are and, or |
| Query | Limit | Int32 | (optional) (default to 250) | Max number of results to return. See V3 API Standard Collection Parameters for more information. |
| Query | Offset | Int32 | (optional) (default to 0) | Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information. |
| Query | Count | Boolean | (optional) (default to $false) | If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information. |
Return type
ScheduleInfo[]
Responses
| Code | Description | Data Type |
|---|
| 200 | List of Schedule objects. | ScheduleInfo[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Filters = 'ScheduleType eq "Daily" and startTime eq 1762237200'
$Limit = 250
$Offset = 0
$Count = $true
try {
Get-SchedulesV1
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-SchedulesV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-task-v1
This end-point gets a task in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the task to retrieve. |
Return type
TaskInfo
Responses
| Code | Description | Data Type |
|---|
| 200 | A Task object. | TaskInfo |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 1001
try {
Get-TaskV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-TaskV1"
Write-Host $_.ErrorDetails
}
[Back to top]
get-tasks-v1
This end-point lists all the tasks in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Query | Filters | String | (optional) | Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: taskIds: eq, in statuses: eq, in taskTypeName: eq, in taskName: eq endBeforeTime: eq Supported composite operators are and, or Example: taskTypeName eq ""DataSync"" and endBeforeTime eq 1762240800 |
| Query | Limit | Int32 | (optional) (default to 250) | Max number of results to return. See V3 API Standard Collection Parameters for more information. |
| Query | Offset | Int32 | (optional) (default to 0) | Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information. |
| Query | Count | Boolean | (optional) (default to $false) | If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information. |
Return type
TaskInfo[]
Responses
| Code | Description | Data Type |
|---|
| 200 | OK. Returns a list of Data Access Security tasks. | TaskInfo[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Filters = 'TaskTypeName eq "DataClassification and EndBeforeTime eq 1762240800" # String | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **taskIds**: *eq, in* **statuses**: *eq, in* **taskTypeName**: *eq, in* **taskName**: *eq* **endBeforeTime**: *eq* Supported composite operators are *and, or* Example: taskTypeName eq ""DataSync"' and endBeforeTime eq 1762240800 (optional)
$Limit = 250
$Offset = 0
$Count = $true
try {
Get-TasksV1
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-TasksV1"
Write-Host $_.ErrorDetails
}
[Back to top]
list-data-dictionary-fields-v1
Returns custom data dictionary fields that can be used when configuring identity collector field mappings and other permission-related settings. Built-in fields are not included in list responses; only custom fields created via Create Data Dictionary Field are returned. All listed fields have required: false.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Query | Filters | String | (optional) | Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: dataDictionaryType: eq name: eq Supported composite operators are and |
| Query | Limit | Int32 | (optional) (default to 250) | Max number of results to return. See V3 API Standard Collection Parameters for more information. |
| Query | Offset | Int32 | (optional) (default to 0) | Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information. |
| Query | Count | Boolean | (optional) (default to $false) | If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information. |
Return type
Datadictionaryfieldlistitem[]
Responses
| Code | Description | Data Type |
|---|
| 200 | Data dictionary fields matching the filter criteria. | Datadictionaryfieldlistitem[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Filters = 'dataDictionaryType eq "Users" and name eq "Department"'
$Limit = 250
$Offset = 0
$Count = $true
try {
Get-DataDictionaryFieldsV1
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-DataDictionaryFieldsV1"
Write-Host $_.ErrorDetails
}
[Back to top]
list-identity-collectors-v1
This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination.
Sorting is not supported for this endpoint; supplying the sorters query parameter results in a validation error.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Query | Filters | String | (optional) | Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: sourceId: eq type: eq, in id: eq, in Supported composite operators are and, or |
| Query | Limit | Int32 | (optional) (default to 250) | Max number of results to return. See V3 API Standard Collection Parameters for more information. |
| Query | Offset | Int32 | (optional) (default to 0) | Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information. |
| Query | Count | Boolean | (optional) (default to $false) | If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information. |
Return type
Identitycollectorlistitem[]
Responses
| Code | Description | Data Type |
|---|
| 200 | A list of identity collectors matching the filter criteria. | Identitycollectorlistitem[] |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Filters = 'sourceId eq "2c9180835d2e5168015d32f890ca1581"'
$Limit = 250
$Offset = 0
$Count = $true
try {
Get-IdentityCollectorsV1
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-IdentityCollectorsV1"
Write-Host $_.ErrorDetails
}
[Back to top]
put-application-v1
This endpoint updates an existing application in Data Access Security with the specified configuration.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the application to update. |
| Body | BaseCreateApplicationRequest | BaseCreateApplicationRequest | True | Request body containing the updated details for the application. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$Id = 12345
$BaseCreateApplicationRequest = @"{
"adIdentityCollectorId" : 987654321,
"applicationType" : 9,
"nisIdentityCollectorId" : 192837465,
"executeNow" : false,
"name" : "HR File Server",
"description" : "Stores HR documents and employee records.",
"dataClassificationSettings" : {
"isEnabled" : true,
"clusterId" : "cluster-001"
},
"activityConfigurationSettings" : {
"excludeFolders" : [ "/tmp", "/archive" ],
"excludeFileExtensions" : [ ".log", ".bak" ],
"excludeActions" : [ "delete", "move" ],
"isEnabled" : true,
"retentionTimePeriod" : 30,
"retentionTimeType" : "days",
"clusterId" : "cluster-001",
"excludeUsers" : [ "user1", "user2" ]
},
"applicationCrawlerSettings" : {
"calculateResourceSize" : 2,
"excludedResources" : [ "resourceA", "resourceB" ],
"crawlPublicFolders" : true,
"excludedPathsByRegex" : "^/archive/.*",
"isEnabled" : true,
"crawlSnapshotsFolder" : true,
"crawlMailboxes" : false,
"crawlTopLevelShares" : [ "share1", "share2" ],
"clusterId" : "cluster-001",
"includeResources" : [ "resourceX", "resourceY" ]
},
"identityCollectorId" : 123456789,
"permissionCollectorSettings" : {
"analyzeUniquePermissions" : true,
"calculateRiskiestPermissions" : false,
"isEnabled" : true,
"calculateEffectivePermissions" : true,
"clusterId" : "cluster-001",
"effectivePermissionsSource" : "S3"
},
"tags" : [ {
"key" : 1,
"value" : "Confidential"
} ]
}"@
try {
$Result = ConvertFrom-JsonToBaseCreateApplicationRequest -Json $BaseCreateApplicationRequest
Send-ApplicationV1 -Id $Id -BaseCreateApplicationRequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Send-ApplicationV1"
Write-Host $_.ErrorDetails
}
[Back to top]
put-data-dictionary-field-v1
Fully replaces a custom data dictionary field. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted properties are rejected. For custom fields, fieldType, dataDictionaryType, and required must match the current values; only name may change. Built-in fields where required is true cannot be updated.
List the field first with List Data Dictionary Fields to obtain the current representation before replacing it.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Name | String | True | The current field name. |
| Body | Updatedatadictionaryfieldrequest | Updatedatadictionaryfieldrequest | True | Complete data dictionary field representation used to fully replace the existing field. |
Return type
Datadictionaryfieldlistitem
Responses
| Code | Description | Data Type |
|---|
| 200 | The data dictionary field was fully replaced. | Datadictionaryfieldlistitem |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 409 | Conflict - Returned if an identity collector with the same name already exists. | PutIdentityCollectorV1409Response |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$Name = "Department"
$Updatedatadictionaryfieldrequest = @"{
"name" : "Cost Center",
"dataDictionaryType" : "Users",
"fieldType" : "String",
"required" : false
}"@
try {
$Result = ConvertFrom-JsonToUpdatedatadictionaryfieldrequest -Json $Updatedatadictionaryfieldrequest
Send-DataDictionaryFieldV1 -Name $Name -Updatedatadictionaryfieldrequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Send-DataDictionaryFieldV1"
Write-Host $_.ErrorDetails
}
[Back to top]
put-identity-collector-v1
Fully replaces an existing identity collector in Data Access Security. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted or null top-level properties are rejected. After a successful request, a subsequent list request returns exactly the configuration that was sent.
Retrieve the current configuration with List Identity Collectors before replacing it. The sourceId and type cannot be changed and must match the current values.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the identity collector to replace. |
| Body | Updateidentitycollectorrequest | Updateidentitycollectorrequest | True | Complete identity collector representation used to fully replace the existing resource. Partial updates are not supported. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | The identity collector was fully replaced. | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 409 | Conflict - Returned if an identity collector with the same name already exists. | PutIdentityCollectorV1409Response |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$Id = 12345
$Updateidentitycollectorrequest = @"{
"sourceId" : "2c9180835d2e5168015d32f890ca1581",
"name" : "Active Directory Identity Collector",
"groups" : {
"fieldMappings" : [ {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
}, {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
} ],
"properties" : [ "UserAddress", "department" ]
},
"type" : "Active Directory",
"users" : {
"fieldMappings" : [ {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
}, {
"sourceAttributeName" : "department",
"fieldDictionaryName" : "UPTF-1"
} ],
"properties" : [ "UserAddress", "department" ]
}
}"@
try {
$Result = ConvertFrom-JsonToUpdateidentitycollectorrequest -Json $Updateidentitycollectorrequest
Send-IdentityCollectorV1 -Id $Id -Updateidentitycollectorrequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Send-IdentityCollectorV1"
Write-Host $_.ErrorDetails
}
[Back to top]
put-schedule-v1
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the schedule to update. |
| Body | UpdateScheduleRequest | UpdateScheduleRequest | True | |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: application/json
- Accept: application/json
Example
$Id = 1001
$UpdateScheduleRequest = @"{
"scheduleTaskName" : "Daily Data Sync",
"scheduleType" : "Daily",
"active" : true,
"interval" : 1440,
"startTime" : 1762237200,
"endTime" : 1762240800,
"taskTypeName" : "DataSync",
"daysOfWeek" : [ "Monday", "Wednesday", "Friday" ],
"applicationId" : 2001,
"runAfterScheduleTaskId" : 1000
}"@
try {
$Result = ConvertFrom-JsonToUpdateScheduleRequest -Json $UpdateScheduleRequest
Send-ScheduleV1 -Id $Id -UpdateScheduleRequest $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Send-ScheduleV1"
Write-Host $_.ErrorDetails
}
[Back to top]
start-task-rerun-v1
This end-point sends a request to re-run a task in Data Access Security.
API Spec
Parameters
| Param Type | Name | Data Type | Required | Description |
|---|
| Path | Id | Int64 | True | The unique identifier of the task to rerun. |
Return type
(empty response body)
Responses
| Code | Description | Data Type |
|---|
| 204 | No Content | |
| 400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
| 401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | GetTasksV1401Response |
| 403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
| 404 | Not Found - returned if the request URL refers to a resource or object that does not exist | ErrorResponseDto |
| 429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | GetTasksV1429Response |
| 500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
- Content-Type: Not defined
- Accept: application/json
Example
$Id = 1001
try {
Start-TaskRerunV1 -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Start-TaskRerunV1"
Write-Host $_.ErrorDetails
}
[Back to top]