Skip to main content

Attendance Search

POST 

/api/v1/attendance/list

Attendance Search

Request

Responses

Attendance List
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://tekdi.github.io/api/v1/attendance/list");
var content = new StringContent("{\n \"limit\": 0,\n \"page\": 0,\n \"filters\": {\n \"fromDate\": \"2024-07-29T15:51:28.071Z\",\n \"toDate\": \"2024-07-29T15:51:28.071Z\",\n \"contextId\": \"string\",\n \"context\": \"string\",\n \"scope\": \"string\",\n \"attendanceDate\": \"yyyy-mm-dd\",\n \"userId\": \"string\"\n },\n \"facets\": [\n \"contextId\",\n \"userId\",\n \"scope\"\n ],\n \"sort\": [\n \"attendanceDate\",\n \"asc\"\n ]\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Parameters
— header
Body required
{
  "limit": 0,
  "page": 0,
  "filters": {
    "fromDate": "2024-07-29T15:51:28.071Z",
    "toDate": "2024-07-29T15:51:28.071Z",
    "contextId": "string",
    "context": "string",
    "scope": "string",
    "attendanceDate": "yyyy-mm-dd",
    "userId": "string"
  },
  "facets": [
    "contextId",
    "userId",
    "scope"
  ],
  "sort": [
    "attendanceDate",
    "asc"
  ]
}
ResponseClear

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