POST {version}/UpdateImportQueue
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
ImportQueue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Status | string |
None. |
|
| FileName | string |
None. |
|
| FilePath | string |
None. |
|
| fileContents | Collection of byte |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "aa66ce45-8785-43e5-be0a-5b3334392116",
"Status": "sample string 2",
"FileName": "sample string 3",
"FilePath": "sample string 4",
"fileContents": "QEA="
}
application/xml, text/xml
Sample:
<ImportQueue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model.CentralOps.ImportQueue"> <FileName>sample string 3</FileName> <FilePath>sample string 4</FilePath> <Id>aa66ce45-8785-43e5-be0a-5b3334392116</Id> <Status>sample string 2</Status> <fileContents>QEA=</fileContents> </ImportQueue>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |