POST Vehicle/getnotowned

Get a list of all vehicles marked as no longer owned by the customer.

Request Information

URI Parameters

None.

Body Parameters

GetNotOwnedRequest
NameDescriptionTypeAdditional information
fromDateUTC

Date/time to filter requests

date

Required

token

API access token

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "fromDateUTC": "2024-10-23T06:46:07.386713-07:00",
  "token": "d5462b31-6b15-41c3-841a-d8f4f83bcc2c"
}

application/xml, text/xml

Sample:
<GetNotOwnedRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Vehicle">
  <token xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">d5462b31-6b15-41c3-841a-d8f4f83bcc2c</token>
  <fromDateUTC>2024-10-23T06:46:07.386713-07:00</fromDateUTC>
</GetNotOwnedRequest>

Response Information

Resource Description

GetNotOwnedResponse
NameDescriptionTypeAdditional information
code

API result code

integer

None.

error

API error message

string

None.

VehicleList

Vehicles not owned list

Collection of VehicleNotOwned

None.

APIVersion

API Version

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "VehicleList": [
    {
      "EntityID": "bdc1745a-6bba-4710-b5f9-93979439d1b5",
      "InsertDate": "2024-10-23T06:46:07.3887143-07:00",
      "VIN": "sample string 3",
      "SaleRODate": "2024-10-23T06:46:07.3887143-07:00",
      "IsConquest": true,
      "DMSDealID": "sample string 6"
    },
    {
      "EntityID": "bdc1745a-6bba-4710-b5f9-93979439d1b5",
      "InsertDate": "2024-10-23T06:46:07.3887143-07:00",
      "VIN": "sample string 3",
      "SaleRODate": "2024-10-23T06:46:07.3887143-07:00",
      "IsConquest": true,
      "DMSDealID": "sample string 6"
    }
  ],
  "APIVersion": 1,
  "code": 200,
  "error": "sample string 1"
}

application/xml, text/xml

Sample:
<GetNotOwnedResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Vehicle">
  <APIVersion xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">1</APIVersion>
  <error xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">sample string 1</error>
  <VehicleList>
    <VehicleNotOwned>
      <DMSDealID>sample string 6</DMSDealID>
      <EntityID>bdc1745a-6bba-4710-b5f9-93979439d1b5</EntityID>
      <InsertDate>2024-10-23T06:46:07.3887143-07:00</InsertDate>
      <IsConquest>true</IsConquest>
      <SaleRODate>2024-10-23T06:46:07.3887143-07:00</SaleRODate>
      <VIN>sample string 3</VIN>
    </VehicleNotOwned>
    <VehicleNotOwned>
      <DMSDealID>sample string 6</DMSDealID>
      <EntityID>bdc1745a-6bba-4710-b5f9-93979439d1b5</EntityID>
      <InsertDate>2024-10-23T06:46:07.3887143-07:00</InsertDate>
      <IsConquest>true</IsConquest>
      <SaleRODate>2024-10-23T06:46:07.3887143-07:00</SaleRODate>
      <VIN>sample string 3</VIN>
    </VehicleNotOwned>
  </VehicleList>
</GetNotOwnedResponse>