POST api/Scan/ProcessScan?EmployeeID={EmployeeID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeID | integer |
Required |
Body Parameters
ScanRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | string |
None. |
|
| Input | ScanInputResult |
None. |
Request Formats
application/json, text/json
Sample:
{
"Content": "sample string 1",
"Input": {
"ID": "sample string 1",
"Input": "sample string 2"
}
}
application/xml, text/xml
Sample:
<ScanRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrowsNest.Api">
<Content>sample string 1</Content>
<Input>
<ID>sample string 1</ID>
<Input>sample string 2</Input>
</Input>
</ScanRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ScanResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Result | string |
None. |
|
| InputRequest | ScanInputRequest |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.