Managed Account Applications
- GET ManagedAccounts/{accountID}/Applications
- POST ManagedAccounts/{accountID}/Applications/{applicationID}
- DELETE ManagedAccounts/{accountID}/Applications/{applicationID}
- DELETE ManagedAccounts/{accountID}/Applications
GET ManagedAccounts/{accountID}/Applications
Returns a list of applications assigned to a managed account.
Password Safe Account Management (Read).
accountID: ID of the managed account.
None.
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 } … ]
200 - Request successful. Applications in response body.
For more information, please see Common Response Codes.
POST ManagedAccounts/{accountID}/Applications/{applicationID}
Assigns an application to a managed account.
Password Safe Account Management (Read/Write).
- accountID: ID of the managed account.
- applicationID: ID of the application.
None.
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 }
201 - Request successful. Application in response body.
For more information, please see Common Response Codes.
DELETE ManagedAccounts/{accountID}/Applications/{applicationID}
Unassigns an application from a managed account by managed account ID and application ID.
Password Safe Account Management (Read/Write).
- accountID: ID of the managed account.
- applicationID: ID of the application.
None.
None.
200 - Request successful.
For more information, please see Common Response Codes.
DELETE ManagedAccounts/{accountID}/Applications
Unassigns all managed account applications by managed account ID.
Password Safe Account Management (Read/Write).
- accountID: ID of the managed account.
- applicationID: ID of the application.
None.
None.
200 - Request successful.
For more information, please see Common Response Codes.