Tricentis Tasks API

Tasks public APIs

Operations 2

GET /api/v1/tasks/{id}
GET /api/v1/tasks/{id}/result

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/tricentis-tasks-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

tricentis-tasks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: qTest Parameters Tasks API
  version: '2025.2'
  description: qTest Parameters API documentation
servers:
- url: https://parameter-1.qtestnet.com/
security:
- token: []
tags:
- name: Tasks
  description: Tasks public APIs
paths:
  /api/v1/tasks/{id}:
    get:
      description: Get a task by id
      tags:
      - Tasks
      parameters:
      - name: id
        in: path
        description: task id
        required: true
        schema:
          type: number
      responses:
        200:
          description: The operation was successful and task object is returned (if found)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskModel'
        400:
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        401:
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        404:
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        500:
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
  /api/v1/tasks/{id}/result:
    get:
      description: Get task result
      tags:
      - Tasks
      parameters:
      - name: id
        in: path
        description: id of the task to get result
        required: true
        schema:
          type: string
      responses:
        200:
          description: The operation is successful and returns a task result object
          content:
            application/json:
              schema:
                type: object
        400:
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        401:
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        404:
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        500:
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
components:
  schemas:
    TaskModel:
      type: object
      properties:
        id:
          type: number
          description: task id
          example: 1
        name:
          type: string
          description: task name
          example: ImportParameter
        status:
          type: string
          description: task status
          enum:
          - NEW
          - IN_PROGRESS
          - SUCCESS
          - FAIL
          - AV_SCANNING
          - AV_CLEAN
          - AV_INFECTED
          - AV_CANCEL
          - AV_ERROR
        input:
          type: string
          description: task input
        output:
          type: string
          description: task output
  securitySchemes:
    token:
      name: x-access-token
      type: apiKey
      in: header