POST api/DMS
Request Information
URI Parameters
None.
Body Parameters
DMSImport| Name | Description | Type | Additional information |
|---|---|---|---|
| DealerID | string |
None. |
|
| VIN | string |
None. |
|
| QueueID | integer |
None. |
|
| FullName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DealerID": "sample string 1",
"VIN": "sample string 2",
"QueueID": 3,
"FullName": "sample string 4"
}
application/xml, text/xml
Sample:
<DMSImport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDL_Import.Models"> <DealerID>sample string 1</DealerID> <FullName>sample string 4</FullName> <QueueID>3</QueueID> <VIN>sample string 2</VIN> </DMSImport>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of PostFunctionResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Successful | string |
None. |
|
| ErrorCode | string |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Successful": "sample string 1",
"ErrorCode": "sample string 2",
"ErrorMessage": "sample string 3"
},
{
"Successful": "sample string 1",
"ErrorCode": "sample string 2",
"ErrorMessage": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfPostFunctionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDL_Import.Models">
<PostFunctionResponse>
<ErrorCode>sample string 2</ErrorCode>
<ErrorMessage>sample string 3</ErrorMessage>
<Successful>sample string 1</Successful>
</PostFunctionResponse>
<PostFunctionResponse>
<ErrorCode>sample string 2</ErrorCode>
<ErrorMessage>sample string 3</ErrorMessage>
<Successful>sample string 1</Successful>
</PostFunctionResponse>
</ArrayOfPostFunctionResponse>