**請求方式:** GET
**請求地址:** `/taxi.php/userInfo
`
**參數說明:**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| uuid | String | yes | 登錄返回用戶uuid |
| sign | String | yes | 秘鑰 |
**請求包結構體:**
~~~
{
"uuid ": "905b4d14-4d41-4be0-95e0-4fd039e1879e",
"sign": "FFE3B2F7F6BABFB3ECC224A62B526F46"
}
~~~
**返回信息**
金額以`分`為單位
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| phone| Integer | yes |用戶手機號|
| avatarUrl | String| yes | 用戶圖片url|
| cardBalance | Integer | yes |至尊卡余額|
| tongbaoBalance | Integer| yes |通寶余額|
| tongbaoPlusBalance | Integer | yes |通寶+本金余額|
| tongbaoPlusGiveBalance | Integer | yes |通寶+贈送積分余額|
| order_no| String | yes | 用戶未完成訂單號|
| order_code | Integer | yes | 訂單狀態碼 |
| order_type | Integer | yes | 訂單類型 1 實時單、2預約單 |
**返回示例:**
```
{
"errcode": 0,
"errmsg": "ok",
"data": {
"phone": "15890151986",
"avatarUrl": "https://wx.qlogo.cn/mmopen/vi_32/IewORfOX5GSLVefbHVdAgrCsichO9xibS7ibFKnvdlv53mEGN68lY81V0TF6XNRwea6ibVQqicZqHibefXibiaEqqd9Q/132",
"cardBalance": 7,
"tongbaoBalance": 0,
"tongbaoPlusBalance": "0.00",
"tongbaoPlusGiveBalance": "45989",
"order_no": "20200814679048623",
"order_code":"12",
"order_type":"1",
}
}
```