校园卡挂失 - GdeiAssistant/GdeiAssistant GitHub Wiki

校园卡挂失

Web API

  • 提交校园卡挂失请求
接口地址:/api/cardlost
请求方法:POST

请求参数说明:

参数 可选 说明
cardPassword 校园卡查询密码

返回示例,正确的JSON返回结果如下:

{
"success":true,
"code":null,
"message":null
}

Restful API

  • 提交校园卡挂失请求
接口地址:/rest/cardlost
请求方法:POST

请求参数说明:

参数 可选 说明
cardPassword 校园卡查询密码
token 登录凭证签名

返回示例,正确的JSON返回结果如下:

{
"success":true,
"code":null,
"message":null
}