### 發起轉賬
+++
get:http://*/index.php?ctl=Api_User_TransferMoney&met=transferMoney&typ=json
*transfer_money_str=默認值#json字符串經過加密編碼后的字符串
<<<
success
{
"status": "200",
"data": {
}
}
+++
APP開發使用
transfer_money_str = [
from_user=>發起轉帳或紅包的人(必填),
to_user=>接收人(必填),
money=>轉了多少錢(必填),
type=> 1紅包 2 轉帳(必填),
txt=>注釋
]
json_encode(transfer_money_str)
### 接受轉賬
+++
get:http://*/index.php?ctl=Api_User_TransferMoney&met=acceptTransfer&typ=json
*transfer_money_str=默認值#json字符串經過加密編碼后的字符串
<<<
success
{
"status": "200",
"data": {
}
}
+++
APP開發使用:
transfer_money_str = [
transfer_money_id=>紅包id(必填)
]
json_encode(transfer_money_str )
### 獲取轉賬狀態
+++
get:http://*/index.php?ctl=Api_User_TransferMoney&met=getTransferMoneyStatus&typ=json
*transfer_money_str=默認值#json字符串經過加密編碼后的字符串
<<<
success
{
"status": "200",
"data": {
}
}
+++
APP開發使用
transfer_money_str = [
transfer_money_id=>紅包id(必填)
]
json_encode(transfer_money_str )