Get a list of LSF configurations in the database (GET)

Description

URL

scheme://domain:port/platform/ws/lsfconfig

Description

Gets a list of LSF configurations that exist in the database. This list contains the following information:

  • Configuration ID
  • In Use status
  • Configuration name
  • Last modified time
  • Last applied time

HTTP Method

GET

Parameters

None

Request

Request-Method

GET

Request-URI

/platform/ws/lsfconfig

Response-Header

Name Value

Accept

application/xml or application/json

Message-body

empty

Response

Response-Code

  • 200 Successful: Request was successful.
  • 403 Forbidden: Access restricted by role-based access control permissions.
  • 404 Not Found: No LSF configurations exist in the database.
  • 500 Internal Server Error: Exception occurred.

Response-Header

Name Value

Content-Type

application/xml or application/json

Message-body

Success Message

If successful, returns a list of LSF configurations in the database.

For additional information, refer to the schema files ./schemas/lsfconfig/lsfConfigInfoList.xsd and ./schemas/lsfconfig/lsfConfigInfo.xsd.


<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<lsfConfigInfoList>
    <lsfConfigInfo configId="%s" name="%s" inUse="%s" lastModifiedTime="%s"/>
    <lsfConfigInfo configId="%s" name="%s" inUse="%s" lastModifiedTime="%s"/>
	...
</lsfConfigInfoList>

Failure Message

If not successful, returns an error message.

For additional information, refer to the schema file ./schemas/error/error.xsd

<error>
  <message>
     %s
  </message>
</error>