AuthToken API
Action: Get JWT AuthToken (Validity of JWT AuthToken is configurable by setting 'ApiAuthTokenValidityMins' in minutes in appsettings config file.)
Url: https//<baseurl>/api/AuthTokenV1/AuthToken
HTTP Method: POST
BODY:
{ UserName = "MyUserName", Password = "MyPassword" }
Response:
public class TxnResp
{
public bool IsSuccess;
public string ErrorCode;
public string TxnOutcome;
}
On API Success, TxnOutcome will have JWT AuthToken.
Sample Url: https://webserver.signer.digital/api/AuthTokenV1/AuthToken
-------------