Ensure Identity Provider
To update an existing IDP, perform a PUT
request with the identityProviderId
of the IDP.
Endpoint
Use the following endpoint to create or update an IDP: https://iam.ionos.com/federation/identityproviders/{identityProviderId}
.
Request
curl --location \
--request PUT 'https://iam.ionos.com/federation/identityproviders/5e6323da-8a45-5732-bec1-d7c29c1dc890' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiO' \
--header 'Content-Type: application/json' \
--data '{
"id": "5e6323da-8a45-5732-bec1-d7c29c1dc890",
"metadata": {},
"properties": {
"type": "oidc",
"name": "IdentityProvider ABC",
"enabled": true,
"domain": "ionos.com",
"configuration": {
"oidc": {
"openidConfigurationUrl": "https://example.com/.well-known/openid-configuration",
"clientSecret": "MIICyzCCAbSgAwIBAgIJAMyYqQJkmRIOMA0GCSqGSIb3DQEB...",
"clientName": "Example Client"
}
}
}
}'
Below is the list of mandatory path parameter:
Body Parameters
Type
Description
Example
identityProviderId
string
The ID (UUID) of the IdentityProvider.
5e6323da-8a45-5732-bec1-d7c29c1dc890
Response
200 Successful operation: IDP is successfully updated.
201 Successful operation: IDP is successfully ensured.
Following is an example of when an IDP is successfully updated or ensured for the given IDP details.
{
"id":"5e6323da-8a45-5732-bec1-d7c29c1dc890",
"type":"identityprovider",
"href":"/identityproviders/5e6323da-8a45-5732-bec1-d7c29c1dc890",
"metadata":{
"createdDate":"2020-12-10T13:37:50+01:00",
"createdBy":"ionos:identity:::users/87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"createdByUserId":"87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"lastModifiedDate":"2020-12-11T13:37:50+01:00",
"lastModifiedBy":"ionos:identity:::users/87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"lastModifiedByUserId":"87f9a82e-b28d-49ed-9d04-fba2c0459cd3",
"resourceURN":"ionos:<product>:<location>:<contract>:<resource-path>"
},
"properties":{
"name":"IdentityProvider ABC",
"enabled":true,
"domain":"ionos.com",
"configuration":{
"oidc":{
"openidConfigurationUrl":"https://example.com/.well-known/openid-configuration",
"clientName":"Example Client",
"endpoint":"https://iam.ionos.com/realms/cloud/.well-known/openid-configuration"
}
}
}
}
Last updated
Was this helpful?