Query bank remains
bankRemain
Request Parameter
Parameter | Type | Meaning |
---|---|---|
account | Account | Account |
Result Response
Parameter | Type | Meaning |
---|---|---|
isSuccess | bool | Interface result |
data | Object | BankRemain list is returned |
message | string ? (optional) | isSuccess = False error description is returned |
BankRemain Parameter
Return type : Object
Parameter | Type | Meaning |
---|---|---|
branchNo | string | Branch Number |
account | string | Account |
currency | string | Currency |
balance | int | Balance |
availableBalance | int | Available Balance |
Request Example
sdk.accounting.bankRemain(account)
回傳範例
{
isSuccess: true,
data:{
branch_no: "6460", // Branch Number (string)
account: "26", // Account (string)
currency: "TWD", // Currency (string)
balance: 666666, // Balance (int)
available_balance: 123456 // Available Balance (int)
}
}