POST api/SocialDriver/UpdateJourneysRange

Set a range of journeys to be private or business

Request Information

URI Parameters

None.

Body Parameters

UpdateJourneyRangeRequest

UpdateJourneyRangeRequest
NameDescriptionTypeAdditional information
StartDate

The start date being updated

date

None.

EndDate

The end date being updated

date

None.

PrivateJourney

Indicates if the journeys should be flagged as private

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "StartDate": "2025-04-27T15:43:06.766006+00:00",
  "EndDate": "2025-04-27T15:43:06.766006+00:00",
  "PrivateJourney": true
}

application/xml, text/xml

Sample:
<UpdateJourneyRangeRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <StartDate>2025-04-27T15:43:06.766006+00:00</StartDate>
  <EndDate>2025-04-27T15:43:06.766006+00:00</EndDate>
  <PrivateJourney>true</PrivateJourney>
</UpdateJourneyRangeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.