POST api/Valuation

Request a new valuation for a customer using their details

Request Information

Parameters

NameDescriptionAdditional information
appointmentRequest
Request object encapsulating the required data for a new valuation

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Brand": "sample string 1",
  "Title": "sample string 2",
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "PhoneNumber": "sample string 5",
  "MobileNumber": "sample string 6",
  "Email": "sample string 7",
  "HouseNoOrName": "sample string 8",
  "Street": "sample string 9",
  "Town": "sample string 10",
  "County": "sample string 11",
  "Postcode": "sample string 12",
  "Message": "sample string 13"
}

application/xml, text/xml

Sample:
<ValuationAppointmentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Spicerhaart.RedWebAPI.Controllers">
  <Brand>sample string 1</Brand>
  <County>sample string 11</County>
  <Email>sample string 7</Email>
  <FirstName>sample string 3</FirstName>
  <HouseNoOrName>sample string 8</HouseNoOrName>
  <LastName>sample string 4</LastName>
  <Message>sample string 13</Message>
  <MobileNumber>sample string 6</MobileNumber>
  <PhoneNumber>sample string 5</PhoneNumber>
  <Postcode>sample string 12</Postcode>
  <Street>sample string 9</Street>
  <Title>sample string 2</Title>
  <Town>sample string 10</Town>
</ValuationAppointmentRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.