Login
login
Request Parameter
Parameter | Type | Meaning |
---|---|---|
ID | String | Login ID |
Password | String | Login Password |
Cert Path | String | Certification Path |
Cert Password | String | Certification password |
Result Reponse
Parameter | Type | Meaning |
---|---|---|
isSuccess | bool | Interface result |
data | List | Account list is returned |
message | string | isSuccess = False error description is returned |
Account Parameter
Return type : Object
Parameter | Type | Meaning |
---|---|---|
name | String | Account Name |
account | String | Account Number |
branchNo | String | Branch Number |
accountType | String | Account Type: value in Stock and futopt |
Request Example
using FubonNeo.Sdk;
var sdk = new FubonSDK();
var result = sdk.Login("Your ID", "Your Password","Your Cert Path","Your Cert Password");
Response Example
{
isSuccess = True,
message = ,
data = Account{
name = 富邦Bill, // Account Name (string)
account = 28, // Account Number (string)
branchNo = 6460, // Branch Number (string)
accountType = stock // Account Type (string)
}
}