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
# Get Public Identity Configtry{Get-BetaPublicIdentityConfig# Below is a request that includes all optional parameters# Get-BetaPublicIdentityConfig }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-BetaPublicIdentityConfig"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
$PublicIdentityConfig=@"{
"modified" : "2018-06-25T20:22:28.104Z",
"attributes" : [ {
"name" : "Country",
"key" : "country"
}, {
"name" : "Country",
"key" : "country"
} ],
"modifiedBy" : {
"name" : "ThomasEdison",
"id" : "2c9180a46faadee4016fb4e018c20639",
"type" : "IDENTITY"
}
}"@# Update Public Identity Configtry{$Result=ConvertFrom-JsonToPublicIdentityConfig-Json$PublicIdentityConfigUpdate-BetaPublicIdentityConfig-BetaPublicIdentityConfig$Result# Below is a request that includes all optional parameters# Update-BetaPublicIdentityConfig -BetaPublicIdentityConfig $PublicIdentityConfig }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Update-BetaPublicIdentityConfig"Write-Host$_.ErrorDetails}