Update Oidc Relying Party
Updates an OIDC relying party.
Request
URI
PUT
https://{api_host}/cloudapi/1.0.0/openIdProvider/relyingParties/{id}
COPY
Path Parameters
string
id
Required
OIDC relying party's ID
Request Body
OidcRelyingParty
of type(s)
application/json
Optional
Show optional properties
{
"clientName": "string",
"redirectUris": [
{}
]
}
{
"id": "string",
"clientId": "string",
"clientName": "string",
"clientSecret": "string",
"redirectUris": [
"string"
],
"scope": [
"string"
]
}
Responses
200
OK
Returns
OidcRelyingParty
of type(s)
application/json;version=39.1
"OidcRelyingParty Object"
string
id
Optional
A unique identifier for the relying party.
string
clientId
Optional
System generated client id of the relying party as per RFC-7591 Section 3.2.1.
string
clientName
Required
Human readable name of the relying party.
string
clientSecret
Optional
Server generated client secret string. Must be unique for all relying parties. This field is hidden and is only returned in plaintext on a POST (during registration).
array of
string
redirectUris
Required
Supported redirect URIs for this relying party.
array of
string
scope
Optional
Not configurable by the client. A fixed list of the following six scope values:
- openid - as required per the OpenID Connect Core spec
- profile - as described in the OpenID Connect Core spec
- email - as described in the OpenID Connect Core spec
- phone - as described in the OpenID Connect Core spec
- groups - grants access to the groups claims.
- vcd_idp - grants access to the roles, org_id, org_display_name, and org_name claims.
Code Samples
COPY
curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"clientName:"string","redirectUris":["string"]}' https://{api_host}/cloudapi/1.0.0/openIdProvider/relyingParties/{id}
Availability
Added in 37.2
On This Page
Oidc Relying Party Operations
GET
Query Oidc Relying Parties
POST
Register Oidc Relying Party
GET
Get Oidc Relying Party
PUT
Update Oidc Relying Party
DELETE
Delete Oidc Relying Party
POST
Regenerate Oidc Relying Party Secret