---
title: "GET /call/logs"
method: GET
path: "/call/logs"
tags: ["Call Logs"]
---

# GET /call/logs

`GET /call/logs`

Fetches the call logs of a given date (Only allows the past dates). This api returns at max 100 records in one page.

## Query parameters

- `date` string
- `pageNo` number, required
- `processName` string
- `isLatestOnly` boolean

## Response `200`

If the auth token is valid.

- CallLogs — Schema for crm interactions
  - `statusCode` number — Will be 0 in case of success
  - `message` string — Contains the success message or error reason, based on the statusCode
  - `data` object
    - `metadata` object[]
      - `total` number — Total number of call logs for the given date
      - `page` number — Current page no
    - `data` object[]
      - `callId` string — id of the call
      - `callerId` string — User id of the caller
      - `calledBy` string — Name of the caller
      - `name` string — Name of the customer
      - `customerId` string, nullable — Id of the customer
      - `phoneNumber` string — Phone number of the customer with country code
      - `startTime` number — Start epoch of the call (in seconds since 1970)
      - `duration` number — Duration of the call in seconds
      - `type` 'incoming' | 'outgoing' | 'missed' — Type of the call. For outgoing unanswered calls, type will be outgoing and tag will be unanswered
      - `status` string, nullable — Disposition selected by the caller
      - `tag` 'personal' | 'unanswered', nullable — Tag of the call. Personal -> If the call is marked as personal. Unanswered -> If the outgoing call is not answered
      - `createdAt` number — Interaction created at epoch (in seconds since 1970)

## Other responses

- `403` — UnAuthorized.

---

[API](https://skmtc.dev/runo/apis/api-documentation.md) · [All operations](https://skmtc.dev/runo/apis/api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runo/api-documentation/revisions/19460dffac44/schema)
