Zoho Task Timer API

The TaskTimer API from Zoho — 3 operation(s) for tasktimer.

Operations 3

GET /api/v1/tasks/{activityId}/timer Get Task Timer #
POST /api/v1/tasks/{taskId}/timer Performs Task Timer actions #
GET /api/v1/tasks/{entityId}/activeTimer List task timers #

Documentation

Specifications

Code Examples

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/zoho-tasktimer-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zoho-tasktimer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Helpcenter Task Timer API
  version: 1.0.0
tags:
- name: TaskTimer
paths:
  /api/v1/tasks/{activityId}/timer:
    get:
      tags:
      - TaskTimer
      summary: Get Task Timer
      description: This API fetches the time elapsed in the task timer, along with the current state
      operationId: getTaskTimer
      parameters:
      - name: activityId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type:
          - string
          - 'null'
          - integer
          format: int64
          pattern: ([0-9]+)
      - $ref: ./Common.json#/components/parameters/orgId
      responses:
        '200':
          $ref: '#/components/responses/taskTimerJson'
      security:
      - iam-oauth2-schema:
        - Desk.activities.tasks.READ
        - Desk.tasks.READ
      x-audience:
      - external-public
  /api/v1/tasks/{taskId}/timer:
    post:
      tags:
      - TaskTimer
      summary: Performs Task Timer actions
      description: This API performs timer-related actions, such as START, STOP, PAUSE and RESUME
      operationId: updateTaskTimerState
      parameters:
      - name: action
        in: query
        description: ' Action of the timer.Supported actions are  @START@, @STOP@, @PAUSE@ and @RESUME@'
        required: true
        style: form
        explode: true
        schema:
          type:
          - string
          - 'null'
          description: ' Action of the timer.Supported actions are  @START@, @STOP@, @PAUSE@ and @RESUME@'
          enum:
          - START
          maxLength: 100
          minLength: 0
      - name: taskId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type:
          - string
          - 'null'
          - integer
          format: int64
          pattern: ([0-9]+)
      - $ref: ./Common.json#/components/parameters/orgId
      responses:
        '422':
          $ref: ./Common.json#/components/responses/multipleUnprocessEntityResponse
        '200':
          $ref: '#/components/responses/taskTimerJson'
      security:
      - iam-oauth2-schema:
        - Desk.activities.tasks.UPDATE
        - Desk.tasks.UPDATE
      x-audience:
      - external-public
  /api/v1/tasks/{entityId}/activeTimer:
    get:
      tags:
      - TaskTimer
      summary: List task timers
      description: This API fetches the details of timers currently active in a task.
      operationId: getActiveTimersForTask
      parameters:
      - name: include
        in: query
        description: Secondary information related to the timers. Value supported is @owner@.
        required: false
        style: form
        explode: true
        schema:
          type:
          - string
          - 'null'
          description: Secondary information related to the timers. Value supported is @owner@.
          enum:
          - owner
          maxLength: 100
          minLength: 0
      - name: limit
        in: query
        description: Number of timers to fetch
        required: false
        style: form
        explode: true
        schema:
          type:
          - string
          - 'null'
          - integer
          format: int32
          description: Number of timers to fetch
          pattern: ([0-9]+)
      - name: from
        in: query
        description: Index number, starting from which the timers must be fetched
        required: false
        style: form
        explode: true
        schema:
          type:
          - string
          - 'null'
          - integer
          format: int32
          description: Index number, starting from which the timers must be fetched
          pattern: ([0-9]+)
      - name: entityId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type:
          - string
          - 'null'
          - integer
          format: int64
          pattern: ([0-9]+)
      - $ref: ./Common.json#/components/parameters/orgId
      responses:
        '204':
          $ref: ./Common.json#/components/responses/emptyResponse
        '200':
          $ref: '#/components/responses/getActiveTimerForEntity'
      security:
      - iam-oauth2-schema:
        - Desk.activities.tasks.READ
        - Desk.tasks.READ
      x-audience:
      - external-public
components:
  responses:
    getActiveTimerForEntity:
      description: getActiveTimerForEntity template definitions
      content:
        application/json:
          schema:
            allOf:
            - type: object
              properties:
                owner:
                  type:
                  - 'null'
                  - object
                  additionalProperties: false
                  maxProperties: 5
                  minProperties: 5
                  properties:
                    photoURL:
                      type:
                      - string
                      - 'null'
                      maxLength: 100
                      minLength: 0
                      pattern: ([0-9a-zA-Z_\-\.\$@\?\,\:\'\/\!\P{InBasicLatin}\s])+
                    firstName:
                      type:
                      - string
                      - 'null'
                      maxLength: 50
                      minLength: 0
                    lastName:
                      type:
                      - string
                      - 'null'
                      maxLength: 50
                      minLength: 0
                    name:
                      type:
                      - string
                      - 'null'
                      maxLength: 50
                      minLength: 0
                    id:
                      type:
                      - string
                      - 'null'
                      - integer
                      format: int64
                      pattern: ([0-9]+)
                  required:
                  - firstName
                  - id
                  - lastName
                  - name
                  - photoURL
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                data:
                  $ref: ./TaskTimer.json#/components/schemas/data
              required:
              - data
          examples:
            Valid responses Definitions:
              value:
                data:
                - owner:
                    firstName: Sam
                    lastName: Jones
                    photoURL: https://contacts.zoho.com/file?t=user&fs=thumb&ID=56934690&nps=404&exp=20
                    name: Sam Jones
                    id: '7000000020001'
                  timer:
                    hours: 93
                    seconds: 9
                    minutes: 6
                    state: Running
                  userId: '7000000020001'
                - owner:
                    firstName: Robert
                    lastName: Downey
                    photoURL: https://contacts.zoho.com/file?t=user&fs=thumb&ID=56934690&nps=404&exp=20
                    name: Robert Downey
                    id: '7000000030001'
                  timer:
                    hours: 19
                    seconds: 24
                    minutes: 9
                    state: Paused
                  userId: '7000000030001'
    taskTimerJson:
      description: taskTimerJson template definitions
      content:
        application/json:
          schema:
            type:
            - 'null'
            - object
            additionalProperties: false
            properties:
              hours:
                type:
                - string
                - 'null'
                - integer
                format: int32
                pattern: ([0-9]+)
              seconds:
                type:
                - string
                - 'null'
                - integer
                format: int32
                pattern: ([0-9]+)
              minutes:
                type:
                - string
                - 'null'
                - integer
                format: int32
                pattern: ([0-9]+)
              state:
                type:
                - string
                - 'null'
                enum:
                - RUNNING
                - PAUSED
                - INIT
                maxLength: 100
                minLength: 0
            required:
            - hours
            - minutes
            - seconds
            - state
          examples:
            Valid responses Definitions:
              value:
                hours: 0
                seconds: 0
                minutes: 0
                state: RUNNING
  securitySchemes:
    iam-oauth2-schema:
      $ref: ./Common.json#/components/securitySchemes/iam-oauth2-schema
x-entity: Helpcenter