POST api/EasyFace/CamCapture
Request Information
URI Parameters
None.
Body Parameters
CamCaptureRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceId | string |
None. |
|
| ImageBase64 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeviceId": "sample string 1",
"ImageBase64": "sample string 2"
}
application/xml, text/xml
Sample:
<CamCaptureRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ReconocimientoFacial.Models"> <DeviceId>sample string 1</DeviceId> <ImageBase64>sample string 2</ImageBase64> </CamCaptureRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CamCaptureResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Result | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Result": true
}
application/xml, text/xml
Sample:
<CamCaptureResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ReconocimientoFacial.Models"> <Message>sample string 1</Message> <Result>true</Result> </CamCaptureResponse>