1.2 Credentials

The table below showing the credentials that needs to pass into the API. The system need to authenticate the valid user before it can proceed to the next step. Thus, this field is mandatory to all API calling.

No. Parameter Data Type Length Mandatory Description
1 UserName String 256 Yes Login UserName
2 Password String 256 Yes Login Password
3 CultureType Enum Yes Used to tell API return message in selected language
1 2 3 4 5 6 7
// Values of CultureType
// If you are using SOAP, use enumeration as value. 
// If you are using JSON, use numeric number as value.
public enum CultureType {
  English = 0, 
  ChineseSimplify = 1
}

Example:

1 2 3 4
ShipmentsCredentials _cred = new ShipmentsCredentials();
_cred.UserName = "username";
_cred.Password = "password";
_cred.CultureType = CultureType.English;
Copyright © 2018 Unixus Solutions Sdn. Bhd. All rights reserved.