Retrieve tripTemplate details

get

/fleetMonitoring/clientapi/v2/tripTemplates/{tripTemplateId}

This operation returns the details of a trip template that is specified by its ID.

Request

Path Parameters
Query Parameters
  • The list of fields to be expanded in the result. Use 'all' to expand all expandable fields in result.
  • The comma-separated list of fields to be shown in response. By default all response object fields will be present.
Header Parameters
  • To allow targeting requests to different organizations. The header value should contain the organization identifier(orgId). This header is optional, if not provided orgId will be ORA_DEFAULT_ORG
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : TripTemplate_receive
Type: object
Show Source
Nested Schema : TripStop_receive
Type: object
Show Source
Nested Schema : stops
Type: array
List of stops that are part of TripTemplate
Show Source
Nested Schema : GeoPosition_receive
Type: object
Show Source
Nested Schema : additionalElements
Type: array
Property description was not set
Show Source

401 Response

Unauthorized. The request requires user authentication.

404 Response

Not Found. The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.

406 Response

Not Acceptable. The resource identified by the request is only capable of generating response entities which have content characteristics not acceptable according to the accept headers sent in the request.
Back to Top

Examples

curl -X GET 
   -u <username>:<password>
   -H 'Accept: application/json'
   https://iotserver/fleetMonitoring/clientapi/v2/tripTemplates/{tripTemplateId}

Example of Response Body

The following example shows the content of the response body in JSON format:


{
"tripLength":0.0,
"totalStops":12345,
"name":"TripTemplate name",
"destination":{
"estimatedTimeToNextStop":1469184297746,
"distanceToNextStop":0.0,
"country":"Name of country",
"stopSequence":12345,
"address":"Unified full address, e.g. 500 Oracle Parkway::Redwood City::CA::US::94065 . Must be provided if geoLocation is not specified.",
"geoLocation":[longitude,latitude],
"city":"Name of City",
"street":"Name of Street",
"postalCode":"Postal/Zip code",
"expectedDurationFromStart":12345,
"state":"Name of State"
},
"stopsClassification":"One of [SINGLE_STOP, DUAL_STOP, TRIPLE_STOP, MULTI_STOP, NON_STOP].",
"tripLengthClassification":"One of [SHORT, MEDIUM, LONG].",
"id":"4ad632ec5bb6-3f54",
"source":{
"estimatedTimeToNextStop":1469184297746,
"distanceToNextStop":0.0,
"country":"Name of country",
"stopSequence":12345,
"address":"Unified full address, e.g. 500 Oracle Parkway::Redwood City::CA::US::94065 . Must be provided if geoLocation is not specified.",
"geoLocation":[longitude,latitude],
"city":"Name of City",
"street":"Name of Street",
"postalCode":"Postal/Zip code",
"expectedDurationFromStart":12345,
"state":"Name of State"
},
"stops":[
{
"estimatedTimeToNextStop":1469184297746,
"distanceToNextStop":0.0,
"country":"Name of country",
"stopSequence":12345,
"address":"Unified full address, e.g. 500 Oracle Parkway::Redwood City::CA::US::94065 . Must be provided if geoLocation is not specified.",
"geoLocation":[longitude,latitude],
"city":"Name of City",
"street":"Name of Street",
"postalCode":"Postal/Zip code",
"expectedDurationFromStart":12345,
"state":"Name of State"
}
],
"expectedDuration":12345
}



Complete cURL Example

The following example shows the complete cURL command that can be used to perform the described operation:

curl -X GET 
   -u <username>:<password>
   -H 'Accept: application/json'
   https://iotserver/fleetMonitoring/clientapi/v2/tripTemplates/{tripTemplateId}



Note that in the request, https://iotserver will be replaced by the name and port of your assigned IoT Cloud Service instance. The format of the Cloud Service instance is https://myinstance-myidentitydomain.iot.us.oraclecloud.com and the default port is 443.
Back to Top