Delete an oidc configuration

Permanently deletes an oidc configuration. It cannot be undone.

DELETE/v3/accounts/{id}/oidc-configuration
JWT
account:write

Parameters

NameTypeInDescription
id*stringpathUnique identifier for the oidc configuration.
Triggers webhook: oidcConfiguration.deleted
POST <your-webhook-url>
{
  "event": "oidcConfiguration.deleted",
  "data": {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "issuerUrl": "string",
    "clientId": "string",
    "additionalClientIds": [
      "string"
    ],
    "enabled": true,
    "defaultRole": "string",
    "autoProvisionUsers": true,
    "roleMappings": [
      {
        "id": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "serviceProviderRole": "string",
        "identityProviderRole": "string"
      }
    ],
    "claimMapping": {
      "name": [
        "string"
      ],
      "email": [
        "string"
      ],
      "role": [
        "string"
      ]
    }
  },
  "triggeredAt": "string"
}

Responses

204 No Content