Retrieve tripTemplate count

get

/fleetMonitoring/clientapi/v2/tripTemplates/count

This operation returns the count of all the trip templates that are filtered by a query.

Request

Query Parameters

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : Count_receive
Type: object
Show Source

401 Response

Unauthorized. The request requires user authentication.

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.

Examples

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

Example of Response Body

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


{
"count":2
}



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/count



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.