GET api/PAVReview?projectRuntimeID={projectRuntimeID}&assetID={assetID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectRuntimeID

globally unique identifier

Required

assetID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

PAVResponses
NameDescriptionTypeAdditional information
ClientAssessmentResponseMasterID

globally unique identifier

None.

AssetID

globally unique identifier

None.

ProjectRuntimeID

globally unique identifier

None.

NewCarCount

integer

None.

TestDriveCarCount

integer

None.

Company

string

None.

Model

string

None.

Variant

string

None.

Dealer

string

None.

Location

string

None.

ResponseStatus

string

None.

Responses

Collection of PAVResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "ClientAssessmentResponseMasterID": "07e98356-0473-4859-b664-a2c6b71f3725",
  "AssetID": "7a134d3a-5f61-4d1d-91de-87f9870a5f5d",
  "ProjectRuntimeID": "43c694b8-f316-4558-9d76-cd52c21e6c78",
  "NewCarCount": 4,
  "TestDriveCarCount": 5,
  "Company": "sample string 6",
  "Model": "sample string 7",
  "Variant": "sample string 8",
  "Dealer": "sample string 9",
  "Location": "sample string 10",
  "ResponseStatus": "sample string 11",
  "Responses": [
    {
      "VIN": "sample string 1",
      "GPSLatitude": "sample string 2",
      "GPSLongtitude": "sample string 3",
      "Comments": "sample string 4",
      "Attachment1": "sample string 5",
      "Attachment2": "sample string 6",
      "Attachment3": "sample string 7",
      "Attachment4": "sample string 8",
      "Attachment5": "sample string 9",
      "DateTimeStamp": "sample string 10",
      "StockType": "sample string 11",
      "ResponseSet": 12,
      "ItemStatus": "sample string 13",
      "ApproverComment": "sample string 14"
    },
    {
      "VIN": "sample string 1",
      "GPSLatitude": "sample string 2",
      "GPSLongtitude": "sample string 3",
      "Comments": "sample string 4",
      "Attachment1": "sample string 5",
      "Attachment2": "sample string 6",
      "Attachment3": "sample string 7",
      "Attachment4": "sample string 8",
      "Attachment5": "sample string 9",
      "DateTimeStamp": "sample string 10",
      "StockType": "sample string 11",
      "ResponseSet": 12,
      "ItemStatus": "sample string 13",
      "ApproverComment": "sample string 14"
    }
  ]
}

application/xml, text/xml

Sample:
<PAVResponses xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel">
  <AssetID>7a134d3a-5f61-4d1d-91de-87f9870a5f5d</AssetID>
  <ClientAssessmentResponseMasterID>07e98356-0473-4859-b664-a2c6b71f3725</ClientAssessmentResponseMasterID>
  <Company>sample string 6</Company>
  <Dealer>sample string 9</Dealer>
  <Location>sample string 10</Location>
  <Model>sample string 7</Model>
  <NewCarCount>4</NewCarCount>
  <ProjectRuntimeID>43c694b8-f316-4558-9d76-cd52c21e6c78</ProjectRuntimeID>
  <ResponseStatus>sample string 11</ResponseStatus>
  <Responses>
    <PAVResponse>
      <ApproverComment>sample string 14</ApproverComment>
      <Attachment1>sample string 5</Attachment1>
      <Attachment2>sample string 6</Attachment2>
      <Attachment3>sample string 7</Attachment3>
      <Attachment4>sample string 8</Attachment4>
      <Attachment5>sample string 9</Attachment5>
      <Comments>sample string 4</Comments>
      <DateTimeStamp>sample string 10</DateTimeStamp>
      <GPSLatitude>sample string 2</GPSLatitude>
      <GPSLongtitude>sample string 3</GPSLongtitude>
      <ItemStatus>sample string 13</ItemStatus>
      <ResponseSet>12</ResponseSet>
      <StockType>sample string 11</StockType>
      <VIN>sample string 1</VIN>
    </PAVResponse>
    <PAVResponse>
      <ApproverComment>sample string 14</ApproverComment>
      <Attachment1>sample string 5</Attachment1>
      <Attachment2>sample string 6</Attachment2>
      <Attachment3>sample string 7</Attachment3>
      <Attachment4>sample string 8</Attachment4>
      <Attachment5>sample string 9</Attachment5>
      <Comments>sample string 4</Comments>
      <DateTimeStamp>sample string 10</DateTimeStamp>
      <GPSLatitude>sample string 2</GPSLatitude>
      <GPSLongtitude>sample string 3</GPSLongtitude>
      <ItemStatus>sample string 13</ItemStatus>
      <ResponseSet>12</ResponseSet>
      <StockType>sample string 11</StockType>
      <VIN>sample string 1</VIN>
    </PAVResponse>
  </Responses>
  <TestDriveCarCount>5</TestDriveCarCount>
  <Variant>sample string 8</Variant>
</PAVResponses>