Transfer
JDB 平台 API
免费场次相关
Action 73:终止免费场次

Action 73:终止免费场次

功能说明

  • 终止免费场次

参数

参数格式强制说明
actionIntegerY73
tsLongY当前系统时间
parentString(50)Y代理账号
eventIdLongY免费场次识别代号

Example

{
  "action": 73,
  "ts": 1711555200000,
  "parent": "testag",
  "eventId": 12345
}

返回结果

参数格式说明
statusString(4)成功:0000

错误:参照附录 错误代码
err_textString(255)错误讯息

操作范例

// Http Request
http://{API_Address}/apiRequest.do?dc=jb1&x=y1wayxScczy6ABfElfaVwb5CdfHxBN_JGtxyBSvpohLQakP8M2QSetJNojJBzvnrVChhq8YWWgBTdGeXFTH4vSNQQ66epf4NqYeQ-6bJ15pvHctQjQevulv7GHqOifuju_gY0H54FfVdQc9D5tKh1AZ-9KDh9dwcGSszZxU7JOOoHdYITlCO5LhvGmHxPBwZ
 
// Http Response (success)
{
    "status": "0000"
}
 
// Http Response (failed)
1. 若输入参数有误,我方会回传:
{
    "status": "8000",
    "err_text": "The parameter of input error, please check your parameter is correct or not. parameter:eventId is required"
}
 
2. 若免费场次不存在,我方会回传:
{
    "status": "9998",
    "err_text": "Event not exist."
}
 
3. 若免费场次不允许此操作,我方会回传:
{
    "status": "9998",
    "err_text": "This action cannot be executed as the event status is TERMINATED."
}