Delete a User Authentication OpenID Connect Profile Info
DELETE Delete by ID
https://useast.api.elasticpath.com/v2/authentication-realms/:realm-id/user-authentication-info/:user-authentication-info-id/user-authentication-oidc-profile-info/:user-authentication-oidc-profile-info-id
Parameters
Path parameters
| Name | Required | Type | Description | 
|---|---|---|---|
| realm-id | Required | string | The ID for the authentication-realm containing the requested user-authentication-oidc-profile-infoobject. | 
| user-authentication-info-id | Required | string | The ID for the user-authentication-infoobject containing the requesteduser-authentication-oidc-profile-infoobject. | 
| user-authentication-oidc-profile-info-id | Required | string | The ID for the requested user-authentication-oidc-profile-infoobject. | 
Headers
| Name | Required | Type | Description | 
|---|---|---|---|
| Authorization | Required | string | The Bearer token required to get access to the API. | 
Request Examples
Curl
curl -X DELETE https://useast.api.elasticpath.com/v2/authentication-realms/:realm-id/user-authentication-info/:id2/user-authentication-oidc-profile-info/:id3 \
     -H "Authorization: Bearer XXXX"
JavaScript SDK
const MoltinGateway = require('@moltin/sdk').gateway
const Moltin = MoltinGateway({
  client_id: 'X'
})
const realmId = 'XXXX'
const userAuthenticationInfoId = 'XXXX'
const userAuthenticationOidcProfileId = 'XXXX'
Moltin.UserAuthenticationOidcProfileInfo.Delete({
      realmId,
      userAuthenticationInfoId,
      userAuthenticationOidcProfileId
    }
  )
Response Example
204 No Content