POST api/Ocr?name={name}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SPImage| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
None. |
|
| image | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"name": "sample string 1",
"image": "QEA="
},
{
"name": "sample string 1",
"image": "QEA="
}
]
application/xml, text/xml
Sample:
<ArrayOfSPImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LoadInvoiceReport.Models">
<SPImage>
<image>QEA=</image>
<name>sample string 1</name>
</SPImage>
<SPImage>
<image>QEA=</image>
<name>sample string 1</name>
</SPImage>
</ArrayOfSPImage>