Skip to main content
DELETE
/
v1
/
regions
/
global
/
iam
/
providers
/
{id}
Delete identity provider
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.k0rdent.ai/v1/regions/global/iam/providers/{id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "error": {
    "code": 123,
    "message": "<string>",
    "details": [
      {}
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication using OAuth2/OIDC tokens

Path Parameters

id
string
required

Unique identity provider identifier

Response

Identity provider successfully deleted