DELETE Authentication

Removes an Authentication definition from Secure External Authentication Server.

This API method requires authentication. The authentication token that is generated at login must be passed in through the "X-Authentication" header.

Table 1. Delete Authentication request details
Method Resource URI Description

DELETE

Authentication

/seasrest/seas/authentication/{AuthName}

Deletes the Authentication name from the IBM SEAS.

Table 2. Delete Authentication URI input parameters
Parameter Required or Optional Description Validation Valid values

AuthName

Required

Removes Authentication definition from SEAS.

Must be a non-empty string

A-Z a-z 0-9 ._-

HTTP Authentication request

The following example shows the HTTP request:

DELETE https://localhost:9080/seasrest/seas/authentication/MyAuth1
“X-Authentication”:“61504f4a524b48532b776a3467643733374b526368513d3d”

XML Authentication response

The following example shows the XML response:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
   <XmlResponse>
   <httpCode>200</httpCode>
   <httpStatus>OK</httpStatus>
   <action>None</action>
   <message>Authentication Profile MyAuth1 deleted successfully.</message>
   <messageLevel>INFO</messageLevel>
   <results/>
   </XmlResponse>