查询剩余点数
curl --request POST \
--url https://alb.neural4d.com:3000/api/queryPointsInfo \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://alb.neural4d.com:3000/api/queryPointsInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alb.neural4d.com:3000/api/queryPointsInfo"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"statusType": 0,
"data": {
"total_points": 54335,
"monthly_bonus_points": 0,
"permanent_points": 54335,
"year_points": 0,
"expiration_day": null
},
"message": "Get the points info successfully"
}账户与校验
查询剩余点数
查询后续操作可用的剩余点数。
POST
/
api
/
queryPointsInfo
查询剩余点数
curl --request POST \
--url https://alb.neural4d.com:3000/api/queryPointsInfo \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://alb.neural4d.com:3000/api/queryPointsInfo', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alb.neural4d.com:3000/api/queryPointsInfo"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"statusType": 0,
"data": {
"total_points": 54335,
"monthly_bonus_points": 0,
"permanent_points": 54335,
"year_points": 0,
"expiration_day": null
},
"message": "Get the points info successfully"
}⌘I