The newly created Reassignment Configuration object
ConfigurationItemResponse
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.
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
$ConfigurationItemRequest=@"{
"endDate" : "2022-07-30T17:00:00Z",
"reassignedFromId" : "2c91808781a71ddb0181b9090b5c504e",
"configType" : "ACCESS_REQUESTS",
"reassignedToId" : "2c91808781a71ddb0181b9090b53504a",
"startDate" : "2022-07-21T11:13:12.345Z"
}"@# Create a Reassignment Configurationtry{$Result=ConvertFrom-JsonToConfigurationItemRequest-Json$ConfigurationItemRequestNew-BetaReassignmentConfiguration-BetaConfigurationItemRequest$Result# Below is a request that includes all optional parameters# New-BetaReassignmentConfiguration -BetaConfigurationItemRequest $ConfigurationItemRequest }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-BetaReassignmentConfiguration"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.
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: Not defined
Accept: application/json
Example
$IdentityId="2c91808781a71ddb0181b9090b5c504e"# String | unique identity id$ConfigType="ACCESS_REQUESTS"# ConfigTypeEnum | # Delete Reassignment Configurationtry{Remove-BetaReassignmentConfiguration-BetaIdentityId$IdentityId-BetaConfigType$ConfigType# Below is a request that includes all optional parameters# Remove-BetaReassignmentConfiguration -BetaIdentityId $IdentityId -BetaConfigType $ConfigType }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-BetaReassignmentConfiguration"Write-Host$_.ErrorDetails}
Evaluates the Reassignment Configuration for an Identity to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next TargetIdentity until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the reassignToId property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the reassignToId value and the lookupTrail node will be empty.
Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - SELF_REVIEW_DELEGATION: This will exclude delegations of self-review reassignments
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: Not defined
Accept: application/json
Example
$IdentityId="2c91808781a71ddb0181b9090b5c504e"# String | unique identity id$ConfigType="ACCESS_REQUESTS"# ConfigTypeEnum | Reassignment work type$ExclusionFilters="MyExclusionFilters"# String[] | Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments (optional)$ExclusionFilters=@"SELF_REVIEW_DELEGATION"@# Evaluate Reassignment Configurationtry{Get-BetaEvaluateReassignmentConfiguration-BetaIdentityId$IdentityId-BetaConfigType$ConfigType# Below is a request that includes all optional parameters# Get-BetaEvaluateReassignmentConfiguration -BetaIdentityId $IdentityId -BetaConfigType $ConfigType -BetaExclusionFilters $ExclusionFilters }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaEvaluateReassignmentConfiguration"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.
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: Not defined
Accept: application/json
Example
# List Reassignment Config Typestry{Get-BetaReassignmentConfigTypes# Below is a request that includes all optional parameters# Get-BetaReassignmentConfigTypes }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaReassignmentConfigTypes"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.
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
$IdentityId="2c91808781a71ddb0181b9090b5c504f"# String | unique identity id# Get Reassignment Configurationtry{Get-BetaReassignmentConfiguration-BetaIdentityId$IdentityId# Below is a request that includes all optional parameters# Get-BetaReassignmentConfiguration -BetaIdentityId $IdentityId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaReassignmentConfiguration"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.
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
# Get Tenant-wide Reassignment Configuration settingstry{Get-BetaTenantConfigConfiguration# Below is a request that includes all optional parameters# Get-BetaTenantConfigConfiguration }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaTenantConfigConfiguration"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.
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
# List Reassignment Configurationstry{Get-BetaReassignmentConfigurations# Below is a request that includes all optional parameters# Get-BetaReassignmentConfigurations }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaReassignmentConfigurations"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.
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
$IdentityId="2c91808781a71ddb0181b9090b5c504e"# String | unique identity id$ConfigurationItemRequest=@"{
"endDate" : "2022-07-30T17:00:00Z",
"reassignedFromId" : "2c91808781a71ddb0181b9090b5c504e",
"configType" : "ACCESS_REQUESTS",
"reassignedToId" : "2c91808781a71ddb0181b9090b53504a",
"startDate" : "2022-07-21T11:13:12.345Z"
}"@# Update Reassignment Configurationtry{$Result=ConvertFrom-JsonToConfigurationItemRequest-Json$ConfigurationItemRequestSend-BetaReassignmentConfig-BetaIdentityId$IdentityId-BetaConfigurationItemRequest$Result# Below is a request that includes all optional parameters# Send-BetaReassignmentConfig -BetaIdentityId $IdentityId -BetaConfigurationItemRequest $ConfigurationItemRequest }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Send-BetaReassignmentConfig"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.
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
$TenantConfigurationRequest=@"{
"configDetails" : {
"disabled" : true
}
}"@# Update Tenant-wide Reassignment Configuration settingstry{$Result=ConvertFrom-JsonToTenantConfigurationRequest-Json$TenantConfigurationRequestSend-BetaTenantConfiguration-BetaTenantConfigurationRequest$Result# Below is a request that includes all optional parameters# Send-BetaTenantConfiguration -BetaTenantConfigurationRequest $TenantConfigurationRequest }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Send-BetaTenantConfiguration"Write-Host$_.ErrorDetails}