Skip to main content

Get Location Speed Violation Report

POST 

https://stgapi.ctrackcrystal.co.za/api/Vehicle/LocationSpeedViolationReport

Get Location Speed Violation Report

Request

Responses

Success
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://stgapi.ctrackcrystal.co.za/api/Vehicle/LocationSpeedViolationReport");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"ids\": [\n \"string\"\n ],\n \"fromDate\": \"2024-07-29T15:51:28.071Z\",\n \"toDate\": \"2024-07-29T15:51:28.071Z\",\n \"type\": \"Vehicle\"\n}", null, "application/json-patch+json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://stgapi.ctrackcrystal.co.za/api
Parameters
— header
Body
{
  "ids": [
    "string"
  ],
  "fromDate": "2024-07-29T15:51:28.071Z",
  "toDate": "2024-07-29T15:51:28.071Z",
  "type": "Vehicle"
}
ResponseClear

Click the Send API Request button above and see the response here!