Applications method

This method retrieves a list of the available applications.

Request

Method URL
GET

/<IIS_Application>/api/v2.0/Applications?username=<username>&password=<password>

Parameter Type Value
Accept HEAD application/json

Where application is the application to connect to.

<username> URL_PARAM String specifying the user name.
<password> URL_PARAM String specifying the password.

Response

Status Response
200 The response is an array containing the list of applications (object). Each item in the response array has the following structure:
{
   "uniqueName": "<application>",
   "caption": "ApplicationCaption"
}

For example:

[
   {
       "uniqueName": "Application_1",
       "caption": "AppCaption"
   },
   {
      "uniqueName": "Application_2",
      "caption": "AppCaption"
   }
]
500

{"message":"Login credentials are required."}

500

{"message":"Repository not found."}

500

{"message":"The username or password is incorrect."}