Tricentis Test Runs Fields API

The Test Runs Fields API from Tricentis — 2 operation(s) for test runs fields.

Operations 2

POST /v1/test-runs/scheme/{schemeName}/allowed-values Add allowed value to scheme.
DELETE /v1/test-runs/scheme/{schemeName}/allowed-values/{allowedValueName} Delete allowed value from scheme.

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-test-runs-fields-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-test-runs-fields-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TTM for Jira Test Runs Fields API
  description: Tricentis Test Management for Jira
  version: 1.0.0
  termsOfService: https://www.tricentis.com/legal-information/general-terms-of-use/
servers:
- url: https://api.ttm4j.tricentis.com
security:
- api_key: []
tags:
- name: Test Runs Fields
paths:
  /v1/test-runs/scheme/{schemeName}/allowed-values:
    post:
      tags:
      - Test Runs Fields
      summary: Add allowed value to scheme.
      description: "## Add allowed value to scheme.\n##### Note: Allowed Scheme names: Environments, Builds.\n##### In case of trying to add existing allowed value, it will be ignored (duplicates are not allowed) and the response will be 200.\n            \n#### Body fields:\n* **allowedValues** _(mandatory)_: Provide a list of allowed values, with each value having the following fields:\n    * **name** _(mandatory)_: name of the allowed value.\n    * **description** _(optional)_: allowed value description."
      parameters:
      - name: schemeName
        in: path
        description: The scheme name (Environments, Builds).
        required: true
        schema:
          type: string
      requestBody:
        description: allowedValueApiData.
        content:
          application/json:
            schema:
              type: array
              items:
                type: object
                properties:
                  name:
                    type:
                    - string
                    - 'null'
                  description:
                    type:
                    - string
                    - 'null'
                additionalProperties: false
      responses:
        '400':
          description: '`Invalid parameters`.'
        '401':
          description: Unauthorized
        '404':
          description: '`Not Found`.'
      security:
      - api_key: []
  /v1/test-runs/scheme/{schemeName}/allowed-values/{allowedValueName}:
    delete:
      tags:
      - Test Runs Fields
      summary: Delete allowed value from scheme.
      description: '## Delete allowed value from scheme.

        ##### Note: Allowed Scheme names: Environments, Builds.'
      parameters:
      - name: schemeName
        in: path
        description: The scheme name (Environments, Builds).
        required: true
        schema:
          type: string
      - name: allowedValueName
        in: path
        description: allowedValueName.
        required: true
        schema:
          type: string
      responses:
        '400':
          description: '`Invalid parameters`.'
        '401':
          description: Unauthorized
        '404':
          description: '`Not Found`.'
      security:
      - api_key: []
components:
  securitySchemes:
    api_key:
      type: apiKey
      description: TTM4J API Key
      name: Authorization
      in: header
externalDocs:
  description: Documentation
  url: https://documentation.tricentis.com/tricentis_test_management_for_jira/content/cover_web.htm