Use this API to implement work item functionality.
With this functionality in place, users can manage their work items (tasks).
Work items refer to the tasks users see in Identity Security Cloud's Task Manager.
They can see the pending work items they need to complete, as well as the work items they have already completed.
Task Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created.
For example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp.
Once the user completes the work item, the work item will be listed with his or her other completed work items.
To complete work items, users can use their dashboards and select the 'My Tasks' widget.
The widget will list any work items they need to complete, and they can select the work item from the list to review its details.
When they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items.
Refer to Task Manager for more information about work items, including the different types of work items users may need to complete.
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This API approves an Approval Item. Either an admin, or the owning/current user must make this request.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
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-BetaApprovalItem-Id$Id-ApprovalItemId$ApprovalItemId# Below is a request that includes all optional parameters# Approve-BetaApprovalItem -Id $Id -ApprovalItemId $ApprovalItemId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Approve-BetaApprovalItem"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This API bulk approves Approval Items. Either an admin, or the owning/current user must make this request.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
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-BetaApprovalItemsInBulk-Id$Id# Below is a request that includes all optional parameters# Approve-BetaApprovalItemsInBulk -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Approve-BetaApprovalItemsInBulk"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This API completes a work item. Either an admin, or the owning/current user must make this request.
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.
ListAccessModelMetadataAttribute401Response
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.
ListAccessModelMetadataAttribute429Response
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$Body="MyBody"# String | Body is the request payload to create form definition request (optional)# Complete a work itemtry{Complete-BetaWorkItem-Id$Id# Below is a request that includes all optional parameters# Complete-BetaWorkItem -Id $Id -Body $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Complete-BetaWorkItem"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
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.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$OwnerId="2c91808571bcfcf80171c23e4b4221fc"# 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-BetaCompletedWorkItems# Below is a request that includes all optional parameters# Get-BetaCompletedWorkItems -OwnerId $OwnerId -Limit $Limit -Offset $Offset -Count $Count }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaCompletedWorkItems"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$OwnerId="2c91808571bcfcf80171c23e4b4221fc"# String | ID of the work item owner. (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 completed work itemstry{Get-BetaCountCompletedWorkItems# Below is a request that includes all optional parameters# Get-BetaCountCompletedWorkItems -OwnerId $OwnerId -Limit $Limit -Offset $Offset }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaCountCompletedWorkItems"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This gets a count of work items belonging to either the specified user(admin required), or the current user.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$OwnerId="2c91808571bcfcf80171c23e4b4221fc"# String | ID of the work item owner. (optional)# Count work itemstry{Get-BetaCountWorkItems# Below is a request that includes all optional parameters# Get-BetaCountWorkItems -OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaCountWorkItems"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This gets the details of a Work Item belonging to either the specified user(admin required), or the current user.
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.
ListAccessModelMetadataAttribute401Response
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.
ListAccessModelMetadataAttribute429Response
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.$OwnerId="2c9180835d191a86015d28455b4a2329"# String | ID of the work item owner. (optional)# Get a work itemtry{Get-BetaWorkItem-Id$Id# Below is a request that includes all optional parameters# Get-BetaWorkItem -Id $Id -OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaWorkItem"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This gets a summary of work items belonging to either the specified user(admin required), or the current user.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
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)# Work items summarytry{Get-BetaWorkItemsSummary# Below is a request that includes all optional parameters# Get-BetaWorkItemsSummary -OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaWorkItemsSummary"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This gets a collection of work items belonging to either the specified user(admin required), or the current user.
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.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
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="ef38f94347e94562b5bb8424a56397d8"# String | ID of the work item owner. (optional)# List work itemstry{Get-BetaWorkItems# Below is a request that includes all optional parameters# Get-BetaWorkItems -Limit $Limit -Offset $Offset -Count $Count -OwnerId $OwnerId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaWorkItems"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This API rejects an Approval Item. Either an admin, or the owning/current user must make this request.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
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-BetaApprovalItem-Id$Id-ApprovalItemId$ApprovalItemId# Below is a request that includes all optional parameters# Deny-BetaApprovalItem -Id $Id -ApprovalItemId $ApprovalItemId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Deny-BetaApprovalItem"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This API bulk rejects Approval Items. Either an admin, or the owning/current user must make this request.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
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-BetaApprovalItemsInBulk-Id$Id# Below is a request that includes all optional parameters# Deny-BetaApprovalItemsInBulk -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Deny-BetaApprovalItemsInBulk"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This API submits account selections. Either an admin, or the owning/current user must make this request.
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessModelMetadataAttribute401Response
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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.
ListAccessModelMetadataAttribute429Response
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-BetaAccountSelection-Id$Id-RequestBody$Result# Below is a request that includes all optional parameters# Submit-BetaAccountSelection -Id $Id -RequestBody $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Submit-BetaAccountSelection"Write-Host$_.ErrorDetails}
:::caution deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
:::
This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
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.
ListAccessModelMetadataAttribute401Response
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.
ListAccessModelMetadataAttribute429Response
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$WorkItemForwardSubmit-BetaForwardWorkItem-Id$Id-WorkItemForward$Result# Below is a request that includes all optional parameters# Submit-BetaForwardWorkItem -Id $Id -WorkItemForward $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Submit-BetaForwardWorkItem"Write-Host$_.ErrorDetails}