POST Vehicle/getnotowned

Request Information

URI Parameters

None.

Body Parameters

GetNotOwnedRequest
NameDescriptionTypeAdditional information
fromDateUTC

date

Required

token

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "fromDateUTC": "2025-11-29T04:30:48.415984-08:00",
  "token": "e93708f1-211d-441a-a221-afb04b116149"
}

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">e93708f1-211d-441a-a221-afb04b116149</token>
  <fromDateUTC>2025-11-29T04:30:48.415984-08:00</fromDateUTC>
</GetNotOwnedRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetNotOwnedResponse
NameDescriptionTypeAdditional information
code

integer

None.

error

string

None.

VehicleList

Collection of VehicleNotOwned

None.

APIVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "VehicleList": [
    {
      "EntityID": "cc7c4eea-e783-4073-b0e0-6a01052c2cfa",
      "InsertDate": "2025-11-29T04:30:48.5679011-08:00",
      "VIN": "sample string 3",
      "SaleRODate": "2025-11-29T04:30:48.5679011-08:00",
      "IsConquest": true,
      "DMSDealID": "sample string 6"
    },
    {
      "EntityID": "cc7c4eea-e783-4073-b0e0-6a01052c2cfa",
      "InsertDate": "2025-11-29T04:30:48.5679011-08:00",
      "VIN": "sample string 3",
      "SaleRODate": "2025-11-29T04:30:48.5679011-08: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>cc7c4eea-e783-4073-b0e0-6a01052c2cfa</EntityID>
      <InsertDate>2025-11-29T04:30:48.5679011-08:00</InsertDate>
      <IsConquest>true</IsConquest>
      <SaleRODate>2025-11-29T04:30:48.5679011-08:00</SaleRODate>
      <VIN>sample string 3</VIN>
    </VehicleNotOwned>
    <VehicleNotOwned>
      <DMSDealID>sample string 6</DMSDealID>
      <EntityID>cc7c4eea-e783-4073-b0e0-6a01052c2cfa</EntityID>
      <InsertDate>2025-11-29T04:30:48.5679011-08:00</InsertDate>
      <IsConquest>true</IsConquest>
      <SaleRODate>2025-11-29T04:30:48.5679011-08:00</SaleRODate>
      <VIN>sample string 3</VIN>
    </VehicleNotOwned>
  </VehicleList>
</GetNotOwnedResponse>