Login API

Response CodeResponse Description
0Success
407Secret key is required
402PartnerId is required
403Device Id is required!
500Internal error (When exception occurs) with exception message
405Invalid Checksum
406Failure in getting Session token

📘

CheckSum Logic

checksum = partnerSessionID +“|”+ partnerID +”|”+ userID +”|”+ Secret Key
To be dynamic on a daily basis, add dates before and after this combination.

Please find the below format to generate the checksum.

  • checksum = “2021”+”|”+ partnerSessionID +“|”+ partnerID +”|”+ userID +”|”+ Secret Key+”|”+MM(12)dd(16)
  • string checksumData = DateTime.Now.Year + "|" + partnerSessionId + "|" + partnerId + "|" + userId + "|" + secretKey + "|" + DateTime.Now.Month + DateTime.Now.Day;

string hashString = BitConverter.ToString(new SHA512CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(checksumData))).Replace("-", "").ToLower();

ChannelType
8Web
1Mobile
Language
Credentials
Click Try It! to start a request and see the response here!