POST api/photos/process
Request Information
URI Parameters
None.
Body Parameters
PhotoProcessingRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| photoUrls | Collection of string |
None. |
|
| callbackUrl | string |
None. |
|
| IDItem | string |
None. |
|
| HidePlate | boolean |
None. |
|
| BackgroundName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"photoUrls": [
"sample string 1",
"sample string 2"
],
"callbackUrl": "sample string 1",
"IDItem": "sample string 2",
"HidePlate": true,
"BackgroundName": "sample string 3"
}
application/xml, text/xml
Sample:
<PhotoProcessingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhotoProcessingService.Models">
<BackgroundName>sample string 3</BackgroundName>
<CallbackUrl>sample string 1</CallbackUrl>
<HidePlate>true</HidePlate>
<IDItem>sample string 2</IDItem>
<PhotoUrls xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</PhotoUrls>
</PhotoProcessingRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.