Zoho BugInteg API

The BugInteg API from Zoho — 1 operation(s) for buginteg.

Documentation

Specifications

Code Examples

Other Resources

OpenAPI Specification

zoho-buginteg-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Helpcenter BugInteg API
  version: 1.0.0
tags:
- name: BugInteg
paths:
  /api/v1/bug/{bugId}/tickets:
    get:
      tags:
      - BugInteg
      summary: Get Linked Tickets by Bug Id
      description: This API fetches support tickets associated with the Bug Id specified in the API request.
      operationId: getBugLinkedTicketDetails
      parameters:
      - name: bugId
        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/ticketJsonResponse'
        '500':
          $ref: ./Common.json#/components/responses/internalErrorResponse
        '204':
          $ref: ./Common.json#/components/responses/emptyResponse
        '403':
          $ref: ./Common.json#/components/responses/forbiddenErrorResponse
      security:
      - iam-oauth2-schema:
        - Desk.tickets.READ
      x-audience:
      - external-public
components:
  responses:
    ticketJsonResponse:
      description: ticketJsonResponse template definitions
      content:
        application/json:
          schema:
            type:
            - 'null'
            - object
            additionalProperties: false
            properties:
              data:
                $ref: '#/components/schemas/ticketJsonResponseArr'
            required:
            - data
          examples:
            Valid responses Definitions:
              value:
                data:
                - ticketNumber: '123'
                  subject: Hi. There is a sudden delay in the processing of the orders. Check this with high priority
                  dueDate: 1529597776000
                  id: '104202000003153007'
                  status: Open
                  commentCount: '5'
                - ticketNumber: '456'
                  subject: Problem while reset password.
                  dueDate: 1532189776000
                  id: '104202000003153015'
                  priority: High
                  status: Closed
                  commentCount: '3'
  schemas:
    ticketJson:
      type:
      - 'null'
      - object
      additionalProperties: false
      properties:
        ticketNumber:
          type:
          - string
          - 'null'
          - integer
          format: int32
          pattern: ([0-9]+)
        subject:
          type:
          - string
          - 'null'
          maxLength: 1000
          minLength: 0
        dueDate:
          type:
          - string
          - 'null'
          maxLength: 100
          minLength: 0
          pattern: (((19|20)\d\d)[-/.]{1}(0?[1-9]|1[012])[-/.]{1}(0?[1-9]|[12][0-9]|3[01])(T)([01]?[0-9]|2[0-3]):[0-5]?[0-9]:[0-5]?[0-9]([/.][\d]{0,3})?(Z))
        id:
          type:
          - string
          - 'null'
          - integer
          format: int64
          pattern: ([0-9]+)
        status:
          type:
          - string
          - 'null'
          x-dynamic-enum: true
        commentCount:
          type:
          - string
          - 'null'
          - integer
          format: int64
          pattern: ([0-9]+)
      required:
      - commentCount
      - dueDate
      - id
      - status
      - subject
      - ticketNumber
    ticketJsonResponseArr:
      type:
      - 'null'
      - array
      items:
        $ref: '#/components/schemas/ticketJson'
  securitySchemes:
    iam-oauth2-schema:
      $ref: ./Common.json#/components/securitySchemes/iam-oauth2-schema
x-entity: Helpcenter