Signer.Digital
User guide (Under Construction)
×
Menu
Index
TxnLog API
 
Action:
 
Url: https//<baseurl>/api/WebServerApiTxnV1/DailyTxn
 
HTTP Method: GET
 
 
Query Parameters:
Parameter
Description
FromDate
Api transaction logs from the date.
ToDate
Api transaction logs upto and including the date.
Action
OPTIONAL. Puts filter on Action if parameter has value, else will return all actions.
UserName
OPTIONAL. The parameter is ignored for non Admin users. For Admin users, puts filter on UserName if parameter has value, else will return all users' transactions.
 
Response:
 
On API Success, response will be of type DailyApiTxnLog (as shown below);
On API Error, response will be of Type TxnResp.  TxnOutcome property will have Error Message.
 
   class DailyApiTxnLog
   {
       public bool IsSuccess;
       public List<DailyApiTxn> DailyTxns;
   }
 
    public class DailyApiTxn  
    {
        public int SrNo;
        public DateTime TxnDateTime;
        public string UserName;
        public string AppProfileName;
        public string CertProfileName;
        public string ApiAction;
        public byte Status_CD;
        public int HttpSatusCode;
        public string ErrorCode;
        public int RespTime;
        public string TxnId;
        public string IPAddr;
    }
 
 
Sample Url: https://webserver.signer.digital/api/WebServerApiTxnV1/DailyTxn
 
 
---------------