POST api/v1/uvun/alert

Request Information

URI Parameters

None.

Body Parameters

AutoUVUNRequest
NameDescriptionTypeAdditional information
vin

string

Required

tconnectid

string

String length: inclusive between 0 and 50

timestamp

string

Required

latitude

decimal number

Required

Range: inclusive between -90 and 90

longitude

decimal number

Required

Range: inclusive between -180 and 180

notificationType

string

Required

Matching regular expression pattern: ^[CN]$

Request Formats

application/json, text/json

Sample:
{
  "vin": "sample string 1",
  "tconnectid": "sample string 2",
  "timestamp": "sample string 3",
  "latitude": 1.1,
  "longitude": 1.1,
  "notificationType": "sample string 4"
}

application/xml, text/xml

Sample:
<AutoUVUNRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LDCM.MyServices.Models">
  <Latitude>1.1</Latitude>
  <Logitude>1.1</Logitude>
  <NotificationType>sample string 4</NotificationType>
  <TConnectId>sample string 2</TConnectId>
  <TimeStamp>sample string 3</TimeStamp>
  <Vin>sample string 1</Vin>
</AutoUVUNRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.