POST forms/submitImageRequest
Request Information
URI Parameters
None.
Body Parameters
ImageRequestForm| Name | Description | Type | Additional information |
|---|---|---|---|
| station | string |
None. |
|
| fileType | string |
None. |
|
| fileContent | string |
None. |
|
| fileName | string |
None. |
|
| fileExtension | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Station": "sample string 1",
"FileType": "sample string 2",
"FileContent": "sample string 3",
"FileName": "sample string 4",
"FileExtension": "sample string 5"
}
application/xml, text/xml
Sample:
<ImageRequestForm xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Station>sample string 1</Station> <FileType>sample string 2</FileType> <FileContent>sample string 3</FileContent> <FileName>sample string 4</FileName> <FileExtension>sample string 5</FileExtension> </ImageRequestForm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PilotWWWResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsError | boolean |
None. |
|
| Result | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsError": true,
"Result": true,
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<PilotWWWResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IsError>true</IsError> <Result>true</Result> <Message>sample string 3</Message> </PilotWWWResult>