POST api/System/PushStudyCustomerCert
推送学习用户获得的证书
Request Information
URI Parameters
None.
Body Parameters
Collection of StudyCustomerCertRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerCode |
用户编号 (用户编号+证书编号 唯一) |
string |
None. |
| CertCode |
证书编号 |
string |
None. |
| Status |
状态 1-获取,0-未获取 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"customerCode": "sample string 1",
"certCode": "sample string 2",
"status": 3
},
{
"customerCode": "sample string 1",
"certCode": "sample string 2",
"status": 3
}
]
Response Information
Resource Description
推送学习用户获得的证书
Collection of StudyCustomerCertResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerCode |
用户编号 (用户编号+证书编号 唯一) |
string |
None. |
| CertCode |
证书编号 |
string |
None. |
| Result |
结果 true-成功,false-失败 |
boolean |
None. |
| ErrorMsg |
错误原因 |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"customerCode": "sample string 1",
"certCode": "sample string 2",
"result": true,
"errorMsg": "sample string 4"
},
{
"customerCode": "sample string 1",
"certCode": "sample string 2",
"result": true,
"errorMsg": "sample string 4"
}
]