POST api/BankCase/AssignCase

Request Information

URI Parameters

None.

Body Parameters

Collection of SubAssignInfo
NameDescriptionTypeAdditional information
CaseIds

string

None.

EmployeId

integer

None.

OperatorID

integer

None.

OperatorName

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "CaseIds": "sample string 1",
    "EmployeId": 2,
    "OperatorID": 3,
    "OperatorName": "sample string 4"
  },
  {
    "CaseIds": "sample string 1",
    "EmployeId": 2,
    "OperatorID": 3,
    "OperatorName": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSubAssignInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViewModel.Request">
  <SubAssignInfo>
    <CaseIds>sample string 1</CaseIds>
    <EmployeId>2</EmployeId>
    <OperatorID>3</OperatorID>
    <OperatorName>sample string 4</OperatorName>
  </SubAssignInfo>
  <SubAssignInfo>
    <CaseIds>sample string 1</CaseIds>
    <EmployeId>2</EmployeId>
    <OperatorID>3</OperatorID>
    <OperatorName>sample string 4</OperatorName>
  </SubAssignInfo>
</ArrayOfSubAssignInfo>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.