Methods / Administrative Service |
REST
GET
Retrieves the database information of the current server configuration.
https://[domain]:[port]/AgilePointServer/Admin/GetDatabaseInfo
https://[domain]:[port]/AgilePointService/Admin/GetDatabaseInfo
Name | Description |
---|---|
None | Not Applicable |
$("#btnGetDatabaseInfo").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/GetDatabaseInfo", type: "GET" }); });
public String GetDatabaseInformation() { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetDatabaseInfo"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetDatabaseInfo() { string URI = "http://mydomain:9011/AgilePointServer/Admin/GetDatabaseInfo"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URI); }
A DatabaseInfo object that represents the database information of the system.
{ "GetDatabaseInfoResult": { "Connstr": "application name= Mycompany Server; connection lifetime=5; min pool size=10; server=DMEO3; database=APDB50R2; trusted_Connection=yes" "Provider": null "Vendor": "MSSQLDatabase" } }
AgilePoint BPMS v5.0 R2 and higher