POST api/User/ExamChooseSave

提交学员新的考试选择结果

Request Information

URI Parameters

None.

Body Parameters

考试选择结果提交模型

PM_ExamTypeChoose
NameDescriptionTypeAdditional information
ExamTypeID

考试类型(必填)

Enum_ExamType

None.

AdminZoneId

省级行政区域代码/或面试的行业单位

integer

None.

ExamProject

考试项目(必填)

Enum_ExamProject

None.

UserToken

当前登录用户的UserToken,由服务端在用户登录成功之后生成,并在整个访问过程中回传

string

None.

DomainName

来访域名(用户访问该站点时输入的域名)

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ExamTypeID": 1000,
  "AdminZoneId": 1,
  "ExamProject": 1001,
  "UserToken": "sample string 2",
  "DomainName": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponseModel
NameDescriptionTypeAdditional information
State

执行结果反馈:1表示成功、0表示失败, -1用户Token验证失败, 其它出错类型(值将小于-1)与具体业务关联紧密,详情可见Msg描述内容

integer

None.

Msg

返回的错误或描述信息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "State": 1,
  "Msg": "sample string 2"
}