Update Generic OAuth Identity Provider
PUThttps://$CUSTOM-DOMAIN/admin/v1/idps/oauth/:id
Update Generic OAuth Identity Provider
Request​
Path Parameters
- application/json
- application/grpc
- application/grpc-web+proto
Body
required
Client id generated by the identity provider
Client secret will only be updated if provided
The endpoint where ZITADEL send the user to authenticate
The endpoint where ZITADEL can get the token
The endpoint where ZITADEL can get the user information
The scopes requested by ZITADEL during the request on the identity provider
Identifying attribute of the user in the response of the user_endpoint
providerOptions
object
Enable the use of Proof Key for Code Exchange (PKCE) for the OAuth2 flow.
Body
required
Client id generated by the identity provider
Client secret will only be updated if provided
The endpoint where ZITADEL send the user to authenticate
The endpoint where ZITADEL can get the token
The endpoint where ZITADEL can get the user information
The scopes requested by ZITADEL during the request on the identity provider
Identifying attribute of the user in the response of the user_endpoint
providerOptions
object
Enable the use of Proof Key for Code Exchange (PKCE) for the OAuth2 flow.
Body
required
Client id generated by the identity provider
Client secret will only be updated if provided
The endpoint where ZITADEL send the user to authenticate
The endpoint where ZITADEL can get the token
The endpoint where ZITADEL can get the user information
The scopes requested by ZITADEL during the request on the identity provider
Identifying attribute of the user in the response of the user_endpoint
providerOptions
object
Enable the use of Proof Key for Code Exchange (PKCE) for the OAuth2 flow.
Responses​
- 200
- 403
- 404
- default
A successful response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-04-03T09:33:13.269Z",
"changeDate": "2025-04-03T09:33:13.269Z",
"resourceOwner": "69629023906488334"
}
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-04-03T09:33:13.270Z",
"changeDate": "2025-04-03T09:33:13.270Z",
"resourceOwner": "69629023906488334"
}
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-04-03T09:33:13.270Z",
"changeDate": "2025-04-03T09:33:13.270Z",
"resourceOwner": "69629023906488334"
}
}
Returned when the user does not have permission to access the resource.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Returned when the resource does not exist.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://$CUSTOM-DOMAIN/admin/v1/idps/oauth/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"name": "My Provider",
"clientId": "client-id",
"clientSecret": "client-secret",
"authorizationEndpoint": "https://accounts.google.com/o/oauth2/v2/auth",
"tokenEndpoint": "https://oauth2.googleapis.com/token",
"userEndpoint": "https://openidconnect.googleapis.com/v1/userinfo",
"scopes": [
"openid",
"profile",
"email"
],
"idAttribute": "user_id",
"providerOptions": {
"isLinkingAllowed": true,
"isCreationAllowed": true,
"isAutoCreation": true,
"isAutoUpdate": true,
"autoLinking": "AUTO_LINKING_OPTION_UNSPECIFIED"
},
"usePkce": true
}'