API Common Parameters
Signer.Digital Webserver uses below common header parameters.
Header
|
Description
|
Authorization
|
"Bearer " + AuthToken (Not required by AuthToken API)
|
TxnID
|
(Optional) Unique Transaction ID. May be used to match Online Api log and Client Application Log.
|
AppVer
|
(Optional) Client Application Version - used for logging only. May be helpful in troubleshooting.
|
Content-Type
|
Value: "application/json; charset=utf-8"
|
Common Error Response Type:
public class TxnResp
{
public bool IsSuccess;
public string ErrorCode;
public string TxnOutcome;
}