POST api/RedisBankCase/ReturnCasePool
Request Information
URI Parameters
None.
Body Parameters
RedisBankCaseVm| Name | Description | Type | Additional information |
|---|---|---|---|
| CaseInfos | Collection of RedisCaseInfo |
None. |
|
| IsLeave | integer |
None. |
|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CaseInfos": [
{
"IdCard": "sample string 1",
"CaseId": "sample string 2",
"PoolId": 3
},
{
"IdCard": "sample string 1",
"CaseId": "sample string 2",
"PoolId": 3
}
],
"IsLeave": 1,
"UserId": 2
}
application/xml, text/xml
Sample:
<RedisBankCaseVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViewModel.API">
<CaseInfos>
<RedisCaseInfo>
<CaseId>sample string 2</CaseId>
<IdCard>sample string 1</IdCard>
<PoolId>3</PoolId>
</RedisCaseInfo>
<RedisCaseInfo>
<CaseId>sample string 2</CaseId>
<IdCard>sample string 1</IdCard>
<PoolId>3</PoolId>
</RedisCaseInfo>
</CaseInfos>
<IsLeave>1</IsLeave>
<UserId>2</UserId>
</RedisBankCaseVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |