POST api/SocialDriver/ProcessNoLocationJourney
Upload the data for a journey without telemetry
Request Information
URI Parameters
None.
Body Parameters
CreateNoLocationJourneyRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| StartTime |
The journey start time |
date |
None. |
| EndTime |
The journey end time |
date |
None. |
| AverageVoltage |
The average voltage across a journey |
decimal number |
None. |
| DistanceTravelled |
The distance traveled in meters |
integer |
None. |
| MilCodes |
A list of milcodes |
Collection of string |
None. |
| RawMilCodeData |
The raw milcode data |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"StartTime": "2025-12-14T06:16:12.0439587+00:00",
"EndTime": "2025-12-14T06:16:12.0439587+00:00",
"AverageVoltage": 3.1,
"DistanceTravelled": 4,
"MilCodes": [
"sample string 1",
"sample string 2"
],
"RawMilCodeData": "sample string 5"
}
application/xml, text/xml
Sample:
<CreateNoLocationJourneyRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<StartTime>2025-12-14T06:16:12.0439587+00:00</StartTime>
<EndTime>2025-12-14T06:16:12.0439587+00:00</EndTime>
<AverageVoltage>3.1</AverageVoltage>
<DistanceTravelled>4</DistanceTravelled>
<MilCodes>
<string>sample string 1</string>
<string>sample string 2</string>
</MilCodes>
<RawMilCodeData>sample string 5</RawMilCodeData>
</CreateNoLocationJourneyRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |