Zoho Ticket Approvals API

The TicketApprovals API from Zoho — 2 operation(s) for ticketapprovals.

Operations 4

GET /api/v1/tickets/{ticketId}/approvals List approvals #
POST /api/v1/tickets/{ticketId}/approvals Create approval #
GET /api/v1/tickets/{ticketId}/approvals/{approvalId} Get approval #
PATCH /api/v1/tickets/{ticketId}/approvals/{approvalId} Update approval #

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-ticketapprovals-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-ticketapprovals-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Helpcenter Ticket Approvals API
  version: 1.0.0
tags:
- name: TicketApprovals
paths:
  /api/v1/tickets/{ticketId}/approvals:
    get:
      tags:
      - TicketApprovals
      summary: List approvals
      description: This API lists the approvals submitted in your help desk.
      operationId: getTicketApprovals
      parameters:
      - $ref: '#/components/parameters/ticketId'
      - $ref: ./Common.json#/components/parameters/orgId
      responses:
        '422':
          $ref: ./Common.json#/components/responses/multipleUnprocessEntityResponse
        '200':
          $ref: '#/components/responses/listApprovalsResponse'
      security:
      - iam-oauth2-schema:
        - Desk.tickets.READ
      x-audience:
      - external-public
    post:
      tags:
      - TicketApprovals
      summary: Create approval
      description: This API creates an approval in your help desk.
      operationId: createTicketApproval
      parameters:
      - $ref: '#/components/parameters/ticketId'
      - $ref: ./Common.json#/components/parameters/orgId
      requestBody:
        $ref: '#/components/requestBodies/addApproval'
      responses:
        '422':
          $ref: ./Common.json#/components/responses/multipleUnprocessEntityResponse
        '200':
          $ref: '#/components/responses/addApprovalResponse'
      security:
      - iam-oauth2-schema:
        - Desk.tickets.CREATE
      x-audience:
      - external-public
  /api/v1/tickets/{ticketId}/approvals/{approvalId}:
    get:
      tags:
      - TicketApprovals
      summary: Get approval
      description: This API fetches the details of an approval.
      operationId: getTicketApproval
      parameters:
      - $ref: '#/components/parameters/approvalId'
      - $ref: '#/components/parameters/ticketId'
      - $ref: ./Common.json#/components/parameters/orgId
      responses:
        '200':
          $ref: '#/components/responses/getApprovalResponse'
      security:
      - iam-oauth2-schema:
        - Desk.tickets.READ
      x-audience:
      - external-public
    patch:
      tags:
      - TicketApprovals
      summary: Update approval
      description: This API updates the details of an existing ticket approval.
      operationId: updateTicketApproval
      parameters:
      - $ref: '#/components/parameters/approvalId'
      - $ref: '#/components/parameters/ticketId'
      - $ref: ./Common.json#/components/parameters/orgId
      requestBody:
        $ref: '#/components/requestBodies/updateApproval'
      responses:
        '422':
          $ref: ./Common.json#/components/responses/multipleUnprocessEntityResponse
        '500':
          $ref: ./Common.json#/components/responses/internalErrorResponse
        '200':
          $ref: '#/components/responses/updateApprovalResponse'
      security:
      - iam-oauth2-schema:
        - Desk.tickets.UPDATE
      x-audience:
      - external-public
components:
  responses:
    getApprovalResponse:
      description: getApprovalResponse template definitions
      content:
        application/json:
          schema:
            oneOf:
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                approver:
                  $ref: ./TicketApprovals.json#/components/schemas/approvalActor
                requester:
                  $ref: ./TicketApprovals.json#/components/schemas/approvalActor
                requestedTime:
                  type:
                  - string
                  - 'null'
                  maxLength: 100
                  minLength: 0
                  pattern: '[a-zA-Z_/\-\+0-9]*'
                subject:
                  type:
                  - string
                  - 'null'
                  maxLength: 1000
                  minLength: 0
                description:
                  type:
                  - string
                  - 'null'
                  maxLength: 65535
                  minLength: 0
                id:
                  type:
                  - string
                  - 'null'
                  - integer
                  format: int64
                  pattern: ([0-9]+)
                status:
                  type:
                  - string
                  - 'null'
                  enum:
                  - Approved
                  - Rejected
                  - Pending
                  maxLength: 100
                  minLength: 0
                processedTime:
                  type:
                  - string
                  - 'null'
                  maxLength: 100
                  minLength: 0
                  pattern: '[a-zA-Z_/\-\+0-9]*'
              required:
              - approver
              - description
              - id
              - processedTime
              - requestedTime
              - requester
              - status
              - subject
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                errorCode:
                  type:
                  - string
                  - 'null'
                  enum:
                  - URL_NOT_FOUND
                  - UNAUTHORIZED
                  - INVALID_OAUTH
                  - SCOPE_MISMATCH
                  - FORBIDDEN
                  - LICENSE_ACCESS_LIMITED
                  - METHOD_NOT_ALLOWED
                  - RESOURCE_SIZE_EXCEEDED
                  - UNSUPPORTED_MEDIA_TYPE
                  - INVALID_DATA
                  - UNPROCESSABLE_ENTITY
                  - ONLY_LIVECHAT_USER
                  - INTEGRATION_ADMIN_ERROR
                  - THRESHOLD_EXCEEDED
                  - INTERNAL_SERVER_ERROR
                  - EMPTY_PAYLOAD
                  maxLength: 100
                  minLength: 0
                message:
                  type:
                  - string
                  - 'null'
                  maxLength: 255
                  minLength: 0
              required:
              - errorCode
              - message
          examples:
            Valid responses Definitions:
              value:
                approver:
                  firstName: saran
                  lastName: raj
                  photoUrl: https://desk.zoho.com/api/v1/agent/4000000015001/photo
                  id: '4000000015001'
                  email: null
                requester:
                  firstName: aravind
                  lastName: a
                  photoUrl: https://desk.zoho.com/api/v1/agent/4000000012629/photo
                  id: '4000000012629'
                  email: null
                requestedTime: 1466514974000
                subject: Testing
                'processedTime ': 1517998355000
                description: testing
                id: '1892000001054081'
                status: Rejected
    addApprovalResponse:
      description: addApprovalResponse template definitions
      content:
        application/json:
          schema:
            oneOf:
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                approvals:
                  $ref: ./TicketApprovals.json#/components/schemas/listApprovalsData
              required:
              - approvals
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                errorCode:
                  type:
                  - string
                  - 'null'
                  enum:
                  - URL_NOT_FOUND
                  - UNAUTHORIZED
                  - INVALID_OAUTH
                  - SCOPE_MISMATCH
                  - FORBIDDEN
                  - LICENSE_ACCESS_LIMITED
                  - METHOD_NOT_ALLOWED
                  - RESOURCE_SIZE_EXCEEDED
                  - UNSUPPORTED_MEDIA_TYPE
                  - INVALID_DATA
                  - UNPROCESSABLE_ENTITY
                  - ONLY_LIVECHAT_USER
                  - INTEGRATION_ADMIN_ERROR
                  - THRESHOLD_EXCEEDED
                  - INTERNAL_SERVER_ERROR
                  - EMPTY_PAYLOAD
                  maxLength: 100
                  minLength: 0
                message:
                  type:
                  - string
                  - 'null'
                  maxLength: 255
                  minLength: 0
              required:
              - errorCode
              - message
          examples:
            Valid responses Definitions:
              value:
                approvals:
                - approver:
                    firstName: saran
                    lastName: raj
                    photoUrl: https://desk.zoho.com/api/v1/agent/4000000015001/photo
                    id: '4000000015001'
                    email: null
                  requester:
                    firstName: aravind
                    lastName: a
                    photoUrl: https://desk.zoho.com/api/v1/agent/4000000012629/photo
                    id: '4000000012629'
                    email: null
                  requestedTime: 1466514974000
                  subject: Testing
                  description: testing
                  id: '1892000001054081'
                  status: PENDING
                  processedTime: null
    updateApprovalResponse:
      description: updateApprovalResponse template definitions
      content:
        application/json:
          schema:
            oneOf:
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                approver:
                  $ref: ./TicketApprovals.json#/components/schemas/approvalActor
                requester:
                  $ref: ./TicketApprovals.json#/components/schemas/approvalActor
                requestedTime:
                  type:
                  - string
                  - 'null'
                  maxLength: 100
                  minLength: 0
                  pattern: '[a-zA-Z_/\-\+0-9]*'
                subject:
                  type:
                  - string
                  - 'null'
                  maxLength: 1000
                  minLength: 0
                description:
                  type:
                  - string
                  - 'null'
                  maxLength: 65535
                  minLength: 0
                id:
                  type:
                  - string
                  - 'null'
                  - integer
                  format: int64
                  pattern: ([0-9]+)
                status:
                  type:
                  - string
                  - 'null'
                  enum:
                  - Approved
                  - Rejected
                  - Pending
                  maxLength: 100
                  minLength: 0
                processedTime:
                  type:
                  - string
                  - 'null'
                  maxLength: 100
                  minLength: 0
                  pattern: '[a-zA-Z_/\-\+0-9]*'
              required:
              - approver
              - description
              - id
              - processedTime
              - requestedTime
              - requester
              - status
              - subject
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                errorCode:
                  type:
                  - string
                  - 'null'
                  enum:
                  - URL_NOT_FOUND
                  - UNAUTHORIZED
                  - INVALID_OAUTH
                  - SCOPE_MISMATCH
                  - FORBIDDEN
                  - LICENSE_ACCESS_LIMITED
                  - METHOD_NOT_ALLOWED
                  - RESOURCE_SIZE_EXCEEDED
                  - UNSUPPORTED_MEDIA_TYPE
                  - INVALID_DATA
                  - UNPROCESSABLE_ENTITY
                  - ONLY_LIVECHAT_USER
                  - INTEGRATION_ADMIN_ERROR
                  - THRESHOLD_EXCEEDED
                  - INTERNAL_SERVER_ERROR
                  - EMPTY_PAYLOAD
                  maxLength: 100
                  minLength: 0
                message:
                  type:
                  - string
                  - 'null'
                  maxLength: 255
                  minLength: 0
              required:
              - errorCode
              - message
          examples:
            Valid responses Definitions:
              value:
                approver:
                  firstName: saran
                  lastName: raj
                  photoUrl: https://desk.zoho.com/api/v1/agent/4000000015001/photo
                  id: '4000000015001'
                  email: null
                requester:
                  firstName: aravind
                  lastName: a
                  photoUrl: https://desk.zoho.com/api/v1/agent/4000000012629/photo
                  id: '4000000012629'
                  email: null
                requesterId: '1892000000042001'
                requestedTime: 1466514974000
                approverId: '1892000000042001'
                subject: Testing
                description: testing
                id: '1892000001054081'
                status: Approved
                processedTime: 1517998355000
    listApprovalsResponse:
      description: listApprovalsResponse template definitions
      content:
        application/json:
          schema:
            oneOf:
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                data:
                  $ref: ./TicketApprovals.json#/components/schemas/listApprovalsData
              required:
              - data
            - type:
              - 'null'
              - object
              additionalProperties: false
              properties:
                errorCode:
                  type:
                  - string
                  - 'null'
                  enum:
                  - URL_NOT_FOUND
                  - UNAUTHORIZED
                  - INVALID_OAUTH
                  - SCOPE_MISMATCH
                  - FORBIDDEN
                  - LICENSE_ACCESS_LIMITED
                  - METHOD_NOT_ALLOWED
                  - RESOURCE_SIZE_EXCEEDED
                  - UNSUPPORTED_MEDIA_TYPE
                  - INVALID_DATA
                  - UNPROCESSABLE_ENTITY
                  - ONLY_LIVECHAT_USER
                  - INTEGRATION_ADMIN_ERROR
                  - THRESHOLD_EXCEEDED
                  - INTERNAL_SERVER_ERROR
                  - EMPTY_PAYLOAD
                  maxLength: 100
                  minLength: 0
                message:
                  type:
                  - string
                  - 'null'
                  maxLength: 255
                  minLength: 0
              required:
              - errorCode
              - message
          examples:
            Valid responses Definitions:
              value:
                data:
                - approver:
                    firstName: ''
                    lastName: raj
                    photoUrl: https://desk.zoho.com/api/v1/agent/4000000015001/photo
                    id: '4000000015001'
                    email: carol@zylker.com
                  requester:
                    firstName: ''
                    lastName: saran
                    photoUrl: https://desk.zoho.com/api/v1/agent/4000000012629/photo
                    id: '4000000012629'
                    email: carol@zylker.com
                  requestedTime: 1466514974000
                  subject: Testing
                  description: testing
                  id: '1892000001054081'
                  status: Approved
                  processedTime: 1517998355000
  requestBodies:
    addApproval:
      content:
        application/json:
          schema:
            type:
            - 'null'
            - object
            additionalProperties: false
            properties:
              approverIds:
                type:
                - 'null'
                - array
                items:
                  type:
                  - string
                  - 'null'
                  - integer
                  format: int64
                  pattern: ([0-9]+)
                uniqueItems: true
              subject:
                type:
                - string
                - 'null'
                maxLength: 1000
                minLength: 0
              description:
                type:
                - string
                - 'null'
                maxLength: 65535
                minLength: 0
            required:
            - approverIds
            - subject
          examples:
            Valid requestBody Definitions:
              value:
                approverIds:
                - '1892000000042001'
                subject: New approval
                description: new app desc
    updateApproval:
      content:
        application/json:
          schema:
            type:
            - 'null'
            - object
            additionalProperties: false
            properties:
              status:
                type:
                - string
                - 'null'
                enum:
                - Approved
                - Rejected
                maxLength: 100
                minLength: 0
            required:
            - status
          examples:
            Valid requestBody Definitions:
              value:
                status: Approved/Rejected
  parameters:
    ticketId:
      name: ticketId
      in: path
      required: true
      style: simple
      explode: false
      schema:
        type:
        - string
        - 'null'
        - integer
        format: int64
        pattern: ([0-9]+)
    approvalId:
      name: approvalId
      in: path
      required: true
      style: simple
      explode: false
      schema:
        type:
        - string
        - 'null'
        - integer
        format: int64
        pattern: ([0-9]+)
  securitySchemes:
    iam-oauth2-schema:
      $ref: ./Common.json#/components/securitySchemes/iam-oauth2-schema
x-entity: Helpcenter