DELETE IdP Configuration

The Delete IdP Configuration API is used to remove a IdP configuration entry.

Method URI

DELETE

/cdwebconsole/svc/idp

Table 1. Input Parameters:
Parameter Name Required/Optional Description Valid values

idPName

Required

Specifies the name of the IdP configuration.

 
The following example shows the Command:
curl -X 'DELETE' \
      'https://172.20.186.67:9447/cdwebconsole/svc/idp' \
      -H 'Authorization: eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJjOWY4MThhZS05OWRlLTQxZmEtOWIxMS0zYjcwYWNmY2Q5NzAiLCJleHAiOjE3MzExMjk1NDJ9.q0Esy40DY3nGQj32DDlPUgh--Gqo3Y8iFPGcyYhBCCzcsFxJlmXaJVN_ohAQ4bhV' \
      -H 'Content-Type: application/json' \
      -H 'X-XSRF-TOKEN: d11cfa18-5cae-4b95-9f2e-37fb4673c99a' \
      -d '[{"idPName":"test"}]'
The following example shows the Sample Response:
[
  {
    "messageCode": 200,
    "message": "IdP profile(s) successfully removed"
  }
]