Delete an OpenID Connect Profile
DELETE
Delete by ID
https://api.moltin.com/v2/authentication-realms/:realm-id/oidc-profiles/:profile-id
Path Parameters:
Name | Required | Type | Description |
---|---|---|---|
realm-id | Required | string | The ID for the authentication-realm containing the requested OpenID Connect profile. |
profile-id | Required | string | The ID for the requested OpenID Connect profile to delete. |
Headers:
Name | Required | Type | Description |
---|---|---|---|
Authorization | Required | string | The Bearer token to grant access to the API. |
204 No Content
curl -X DELETE https://api.moltin.com/v2/authentication-realms/:realm-id/oidc-profiles/:profile-id \
-H "Authorization: Bearer XXXX"
const MoltinGateway = require('@moltin/sdk').gateway
const Moltin = MoltinGateway({
client_id: 'X'
})
const realmId = 'XXXX'
const profileId = 'XXXX'
Moltin.OidcProfile.Delete({
realmId,
profileId
}
)