[关闭]
@chengxuyuan 2019-02-01T04:37:29.000000Z 字数 699 阅读 332

教师课时费相关

橙旭园儿童编程


获取每月课时费流水

Method and URL Structure

Method Resource URL Authorization
POST balance/monthlyrecord/ YES

cURL Example

  1. curl -X POST -H 'Authorization: Token admin123' -d data{...}
  2. localhost:8000/server/balance/monthlyrecord/

Request Data

  1. {
  2. "year": 2018,
  3. "month": 12
  4. }

获取教师账户余额

Method and URL Structure

Method Resource URL Authorization
POST balance/teachers/ YES

cURL Example

  1. curl -X POST -H 'Authorization: Token admin123' -d data{...}
  2. localhost:8000/server/balance/teachers/

Request Data

  1. {
  2. "year": 2018,
  3. "month": 12
  4. }

提现

Method and URL Structure

Method Resource URL Authorization
POST balance/withdraw/ YES
  1. curl -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'
  2. http://localhost/balance/withdraw/

Request Data

  1. {
  2. "extra": "xx月提现", //备注
  3. "amount": 100 //提现金额不大于余额
  4. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注