Applications

Quick Navigation

GET Applications

Purpose

Returns a list of applications.

Required Permissions

Password Safe Account Management (Read).

Request Body

None.

Response Body

Content-Type: application/json

[
    {
        ApplicationID : int,
        Name : string,
        DisplayName : string,
        Version : string,
        Command : string,
        Parameters : string,
        Publisher : string,
        ApplicationType : string,
        FunctionalAccountID : int, // can be null
        ManagedSystemID : int, // can be null
        IsActive : bool,
     SmartRuleID : int // can be null
    }
    …
]

Response Codes

200 - Request successful. Applications in response body.

For more information, please see Common Response Codes.

GET Applications/{id}

Purpose

Returns an application by ID.

Required Permissions

Password Safe Account Management (Read).

URL Parameters

id: ID of the application.

Request Body

None.

Response Body

Content-Type: application/json

{
    ApplicationID : int,
    Name : string,
    DisplayName : string,
    Version : string,
    Command : string,
    Parameters : string,
    Publisher : string,
    ApplicationType : string,
    FunctionalAccountID : int, // can be null
    ManagedSystemID : int, // can be null
    IsActive : bool,
    SmartRuleID : int // can be null        
}

Response Codes

200 - Request successful. Application in response body.

For more information, please see Common Response Codes.