updateProductIntegrationOpenIdConfiguration
Update the OpenID 2.0 single sign-on configuration within an existing product integration
This page contains
Arguments
input UpdateProductIntegrationOpenIdConfigurationInput! PREVIEW |
UpdateProductIntegrationOpenIdConfigurationInput fields
integrationConfigurationId ID! | Unique ID of the product integration configuration the OpenID 2.0 single sign-on configuration will be updated in. |
loginMethod OpenIdConfigurationLoginMethod PREVIEW | HTTP Method used when redirecting the user to the OpenID 2.0 login URL. |
loginUrl String | URL a user is redirected to when they click the 'MyApps' tile to initiate single sign-on. |
realm String | OpenID realm of the requests sent by your Open ID consumer. |
Return Fields
openIdConfiguration ProductIntegrationOpenIdConfiguration PREVIEW | The updated bookmark single sign-on configuration within a product integration |
userErrors [UpdateProductIntegrationOpenIdConfigurationError!] PREVIEW | A list of errors |
Interactive example
This is an example mutation query. Use the embedded interactive tool below to edit the query.
Hint: use Ctrl + Space for autocompleting fields.
xxxxxxxxxx
mutation updateProductIntegrationOpenIdConfiguration($input: UpdateProductIntegrationOpenIdConfigurationInput!) {
updateProductIntegrationOpenIdConfiguration(input: $input) {
openIdConfiguration {
loginMethod
loginUrl
realm
}
userErrors
}
}
xxxxxxxxxx
{
"input": {
"integrationConfigurationId": 34827,
"loginMethod": "GET",
"loginUrl": "YOUR_LOGIN_URL",
"realm": "YOUR_REALM"
}
}