SecurityToken
Defines a security token used to identify a merchant.
Description
This object defines a security token which is used to identify the merchant making the request.
Properties
Type | Name | Description |
---|---|---|
string | UserId | UserId obtained in merchant console. (required) |
string | SecurityId | SecurityId obtained in merchant console. (required) |
string | Password | Password obtained in merchant console. (required) |
Examples
EBizSOAP.SecurityToken SecurityToken = new EBizSOAP.SecurityToken();
SecurityToken.UserId = "00000000-0000-0000-0000-000000000000";
SecurityToken.SecurityId = "00000000-0000-0000-0000-000000000000";
SecurityToken.Password = "00000000";
Updated about 1 year ago