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.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$Id="ef38f94347e94562b5bb8424a56397d8"# String | The ID of the work item$ApprovalItemId="1211bcaa32112bcef6122adb21cef1ac"# String | The ID of the approval item.# Approve an Approval Itemtry{Approve-V2024ApprovalItem-V2024Id$Id-V2024ApprovalItemId$ApprovalItemId# Below is a request that includes all optional parameters# Approve-V2024ApprovalItem -V2024Id $Id -V2024ApprovalItemId $ApprovalItemId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Approve-V2024ApprovalItem"Write-Host$_.ErrorDetails}
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.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$Id="ef38f94347e94562b5bb8424a56397d8"# String | The ID of the work item# Bulk approve Approval Itemstry{Approve-V2024ApprovalItemsInBulk-V2024Id$Id# Below is a request that includes all optional parameters# Approve-V2024ApprovalItemsInBulk -V2024Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Approve-V2024ApprovalItemsInBulk"Write-Host$_.ErrorDetails}
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.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$Id="ef38f94347e94562b5bb8424a56397d8"# String | The ID of the work item# Complete a Work Itemtry{Complete-V2024WorkItem-V2024Id$Id# Below is a request that includes all optional parameters# Complete-V2024WorkItem -V2024Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Complete-V2024WorkItem"Write-Host$_.ErrorDetails}
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.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$OwnerId="1211bcaa32112bcef6122adb21cef1ac"# String | The id of the owner of the work item list being requested. Either an admin, or the owning/current user must make this request. (optional)$Limit=250# Int32 | Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 250)$Offset=0# Int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 0)$Count=$true# Boolean | 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](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to $false)# Completed Work Itemstry{Get-V2024CompletedWorkItems# Below is a request that includes all optional parameters# Get-V2024CompletedWorkItems -V2024OwnerId $OwnerId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024CompletedWorkItems"Write-Host$_.ErrorDetails}
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$OwnerId="1211bcaa32112bcef6122adb21cef1ac"# String | ID of the work item owner. (optional)# Count Completed Work Itemstry{Get-V2024CountCompletedWorkItems# Below is a request that includes all optional parameters# Get-V2024CountCompletedWorkItems -V2024OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024CountCompletedWorkItems"Write-Host$_.ErrorDetails}
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$OwnerId="ef38f94347e94562b5bb8424a56397d8"# String | ID of the work item owner. (optional)# Count Work Itemstry{Get-V2024CountWorkItems# Below is a request that includes all optional parameters# Get-V2024CountWorkItems -V2024OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024CountWorkItems"Write-Host$_.ErrorDetails}
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$Id="2c9180835d191a86015d28455b4a2329"# String | ID of the work item.# Get a Work Itemtry{Get-V2024WorkItem-V2024Id$Id# Below is a request that includes all optional parameters# Get-V2024WorkItem -V2024Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024WorkItem"Write-Host$_.ErrorDetails}
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$OwnerId="1211bcaa32112bcef6122adb21cef1ac"# String | ID of the work item owner. (optional)# Work Items Summarytry{Get-V2024WorkItemsSummary# Below is a request that includes all optional parameters# Get-V2024WorkItemsSummary -V2024OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024WorkItemsSummary"Write-Host$_.ErrorDetails}
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.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$Limit=250# Int32 | Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 250)$Offset=0# Int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 0)$Count=$true# Boolean | 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](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to $false)$OwnerId="1211bcaa32112bcef6122adb21cef1ac"# String | ID of the work item owner. (optional)# List Work Itemstry{Get-V2024WorkItems# Below is a request that includes all optional parameters# Get-V2024WorkItems -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024WorkItems"Write-Host$_.ErrorDetails}
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.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$Id="ef38f94347e94562b5bb8424a56397d8"# String | The ID of the work item$ApprovalItemId="1211bcaa32112bcef6122adb21cef1ac"# String | The ID of the approval item.# Reject an Approval Itemtry{Deny-V2024ApprovalItem-V2024Id$Id-V2024ApprovalItemId$ApprovalItemId# Below is a request that includes all optional parameters# Deny-V2024ApprovalItem -V2024Id $Id -V2024ApprovalItemId $ApprovalItemId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Deny-V2024ApprovalItem"Write-Host$_.ErrorDetails}
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.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$Id="ef38f94347e94562b5bb8424a56397d8"# String | The ID of the work item# Bulk reject Approval Itemstry{Deny-V2024ApprovalItemsInBulk-V2024Id$Id# Below is a request that includes all optional parameters# Deny-V2024ApprovalItemsInBulk -V2024Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Deny-V2024ApprovalItemsInBulk"Write-Host$_.ErrorDetails}
This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request. Accessible to work-item Owner, ORG_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, SOURCE_SUBADMIN.
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.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: application/json
Accept: application/json
Example
$Id="ef38f94347e94562b5bb8424a56397d8"# String | The ID of the work item$WorkItemForward=@"{
"targetOwnerId" : "2c9180835d2e5168015d32f890ca1581",
"comment" : "I'mgoingonvacation.",
"sendNotifications" : true
}"@# Forward a Work Itemtry{$Result=ConvertFrom-JsonToWorkItemForward-Json$WorkItemForwardSend-V2024WorkItemForward-V2024Id$Id-V2024WorkItemForward$Result# Below is a request that includes all optional parameters# Send-V2024WorkItemForward -V2024Id $Id -V2024WorkItemForward $WorkItemForward }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Send-V2024WorkItemForward"Write-Host$_.ErrorDetails}
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.
ListAccessProfiles401Response
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.
ListAccessProfiles429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: application/json
Accept: application/json
Example
$Id="ef38f94347e94562b5bb8424a56397d8"# String | The ID of the work item$RequestBody=@{key_example=}# System.Collections.Hashtable | Account Selection Data map, keyed on fieldName# Submit Account Selectionstry{$Result=ConvertFrom-JsonToRequestBody-Json$RequestBodySubmit-V2024AccountSelection-V2024Id$Id-V2024RequestBody$Result# Below is a request that includes all optional parameters# Submit-V2024AccountSelection -V2024Id $Id -V2024RequestBody $RequestBody }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Submit-V2024AccountSelection"Write-Host$_.ErrorDetails}