Delete LST Entry from specified filename.

delete

/rest/{version}/configuration/lst/lstentry

Deletes a saved lst entry from specified filename. It takes in two query parameters. 'key' specifies user name to be removed and 'filename' specifies to be the LST XMl file from which the entry needs to be removed. This is applied only to ECB.

Request

Path Parameters
Query Parameters
  • Specifies the LST XML file from which entry has to be deleted. This parameter must specify a valid LST XML file located in the /code/lst directory. The value should be the filename only; specifying a path in the filename results in an error.
  • Specifies the username to be removed.
Header Parameters
  • The value in the Authorization header must be the string "Bearer {access token}", where {access token} is a valid, unexpired token received in response to a prior /rest/{version}/auth/token request.
Back to Top

Response

204 Response

Successful deletion of the requested instance. There is no response body for a successful delete.

400 Response

The request is malformed in some way or is missing required information and therefore cannot be processed.

401 Response

Unauthorized - Request lacks valid authentication credentials.

404 Response

Unsupported versionId in URI, or requested element type not supported, or element instance specified by key attribute(s) not found
Back to Top