Klaus PubImportApi API

The PubImportApi API from Klaus — 3 operation(s) for pubimportapi.

Operations 4

DELETE /api/import/tickets #
POST /api/import/tickets #
GET /api/import/tickets/{ticketExternalId} #
POST /api/import/users #

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/klaus-pubimportapi-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 email required.

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

OpenAPI Specification

klaus-pubimportapi-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Public Export Pub Import API
  description: 'Export data from Zendesk QA.


    ### Rate Limits:


    - API request limit: **1,500 requests per minute per IP**'
  version: '1.0'
servers:
- url: https://yoursubdomain.zendesk.com/qa
security:
- ApiKeyAuth: []
tags:
- name: PubImportApi
paths:
  /api/import/tickets:
    delete:
      operationId: PubImportApi_DeleteImportedTicket
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                type: object
                properties: {}
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: ticketExternalIds
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      tags:
      - PubImportApi
    post:
      operationId: PubImportApi_ImportTickets
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                type: object
                properties: {}
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      tags:
      - PubImportApi
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/protoPubTicketImportRequest'
        required: true
  /api/import/tickets/{ticketExternalId}:
    get:
      operationId: PubImportApi_GetImportedTicket
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/protoPubImportedTicket'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: ticketExternalId
        in: path
        required: true
        schema:
          type: string
      tags:
      - PubImportApi
  /api/import/users:
    post:
      operationId: PubImportApi_ImportUsers
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                type: object
                properties: {}
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      tags:
      - PubImportApi
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/protoPubUserImportRequest'
        required: true
components:
  schemas:
    protoPubTicketImport:
      type: object
      properties:
        id:
          type: string
        assigneeEmail:
          type: string
        assigneeName:
          type: string
        description:
          type: string
        subject:
          type: string
        created:
          type: string
        updated:
          type: string
        status:
          type: string
        customerName:
          type: string
        customerEmail:
          type: string
        comments:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protoPubCommentImport'
        ticketFields:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protoPubTicketField'
        channel:
          type: string
        type:
          type: string
        satisfactionScore:
          type: string
        satisfactionComment:
          type: string
        closed:
          type: string
        url:
          type: string
        tags:
          type: array
          items:
            type: string
    protoPubTicketFieldValue:
      type: object
      properties:
        label:
          type: string
        value:
          type: string
    rpcStatus:
      type: object
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protobufAny'
    protoPubImportedComment:
      type: object
      properties:
        externalId:
          type: string
        internalId:
          type: string
          format: int64
        authorName:
          type: string
        authorEmail:
          type: string
        public:
          type: boolean
        comment:
          type: string
        created:
          type: string
        updated:
          type: string
        imported:
          type: string
        recordingUrl:
          type: string
        attachmentUrl:
          type: string
        attachmentName:
          type: string
        callDuration:
          type: string
          format: int64
    protoPubImportedTicket:
      type: object
      properties:
        externalId:
          type: string
        internalId:
          type: string
          format: int64
        assigneeEmail:
          type: string
        assigneeName:
          type: string
        description:
          type: string
        subject:
          type: string
        created:
          type: string
        updated:
          type: string
        imported:
          type: string
        status:
          type: string
        customerName:
          type: string
        customerEmail:
          type: string
        comments:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protoPubImportedComment'
        ticketFields:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protoPubTicketField'
        url:
          type: string
        tags:
          type: array
          items:
            type: string
    protobufAny:
      type: object
      properties:
        '@type':
          type: string
      additionalProperties: {}
    protoPubCommentImport:
      type: object
      properties:
        id:
          type: string
        authorName:
          type: string
        authorEmail:
          type: string
        authorIsNotClient:
          type: boolean
        public:
          type: boolean
        comment:
          type: string
        created:
          type: string
        updated:
          type: string
        recordingUrl:
          type: string
        attachmentUrl:
          type: string
        attachmentName:
          type: string
        callDuration:
          type: string
          format: int64
        callDirection:
          type: string
        isBucketKey:
          type: boolean
    protoPubUserImportRequest:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protoPubUserImport'
    protoPubTicketField:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        updated:
          type: string
        values:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protoPubTicketFieldValue'
    protoPubUserImport:
      type: object
      properties:
        userEmail:
          type: string
        userName:
          type: string
    protoPubTicketImportRequest:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protoPubTicketImport'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: Enter the token with the "Bearer " prefix
      name: Authorization
      in: header