教师课时费相关
橙旭园儿童编程
获取每月课时费流水
Method and URL Structure
| Method |
Resource URL |
Authorization |
| POST |
balance/monthlyrecord/ |
YES |
cURL Example
curl -X POST -H 'Authorization: Token admin123' -d data{...}localhost:8000/server/balance/monthlyrecord/
Request Data
{ "year": 2018, "month": 12}
获取教师账户余额
Method and URL Structure
| Method |
Resource URL |
Authorization |
| POST |
balance/teachers/ |
YES |
cURL Example
curl -X POST -H 'Authorization: Token admin123' -d data{...}localhost:8000/server/balance/teachers/
Request Data
{ "year": 2018, "month": 12}
提现
Method and URL Structure
| Method |
Resource URL |
Authorization |
| POST |
balance/withdraw/ |
YES |
curl -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'http://localhost/balance/withdraw/
Request Data
{ "extra": "xx月提现", //备注 "amount": 100 //提现金额不大于余额}