Tricentis V2 Application Information API

Application Information V2 APIs

Operations 6

GET /sessions/{sessionId}/app-infos Get a list of application information of a session by session Id
POST /sessions/{sessionId}/app-infos Create an application information for a session by session Id
PUT /sessions/{sessionId}/app-infos Update list of application information for a session by session Id
DELETE /sessions/{sessionId}/app-infos/{appInfoId} Delete an application information of a session by session Id
GET /sessions/{sessionId}/app-infos/{appInfoId} Get an application information of a session by session Id
PUT /sessions/{sessionId}/app-infos/{appInfoId} update an application information of a session by session Id

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-v2-application-information-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-v2-application-information-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: qTest Explorer | Sessions V2 Application Information API
  version: 1.0.0
  description: "These APIs are for internal reference by Tricentis development team only. They are not intended to be used publicly by any qTest or non-qTest users and so there is no support provided by Tricentis at any level. If you want to access these APIs, please send a support ticket to \tsupport@tricentis.com."
servers:
- url: https://session-js.qtestnet.com/
tags:
- name: v2-application-information
  description: Application Information V2 APIs
paths:
  /sessions/{sessionId}/app-infos:
    get:
      tags:
      - v2-application-information
      summary: Get a list of application information of a session by session Id
      parameters:
      - name: sessionId
        in: path
        description: Id of session to get application information list
        required: true
        schema:
          type: number
      responses:
        200:
          description: Application information list
          content:
            application/json:
              schema:
                type: object
                properties:
                  app_infos:
                    $ref: '#/components/schemas/AppInfos'
                  links:
                    $ref: '#/components/schemas/Links'
                  total:
                    type: number
        401:
          description: Unauthorized
        404:
          description: Not Found
        403:
          description: Forbidden
        500:
          description: Server error
      security:
      - v2_auth: []
      x-swagger-router-controller: api.applicationInformation
    post:
      tags:
      - v2-application-information
      summary: Create an application information for a session by session Id
      parameters:
      - name: sessionId
        in: path
        description: Id of session
        required: true
        schema:
          type: number
      responses:
        201:
          description: aplication information is created successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  links:
                    $ref: '#/components/schemas/Links'
                  id:
                    type: number
        401:
          description: Unauthorized
        404:
          description: Not Found
        403:
          description: Forbidden
        500:
          description: Server error
      security:
      - v2_auth: []
      x-swagger-router-controller: api.applicationInformation
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppInfo'
        description: Application information object
        required: true
    put:
      tags:
      - v2-application-information
      summary: Update list of application information for a session by session Id
      parameters:
      - name: sessionId
        in: path
        description: Id of session
        required: true
        schema:
          type: number
      responses:
        200:
          description: OK
        401:
          description: Unauthorized
        404:
          description: Not Found
        403:
          description: Forbidden
        500:
          description: Server error
      security:
      - v2_auth: []
      x-swagger-router-controller: api.applicationInformation
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppInfos'
        description: List of application information object
        required: true
  /sessions/{sessionId}/app-infos/{appInfoId}:
    delete:
      tags:
      - v2-application-information
      summary: Delete an application information of a session by session Id
      parameters:
      - name: sessionId
        in: path
        description: Id of session
        required: true
        schema:
          type: number
      - name: appInfoId
        in: path
        description: application information Id
        required: true
        schema:
          type: number
      responses:
        200:
          description: Operation successful
        401:
          description: Unauthorized
        404:
          description: Not Found
        403:
          description: Forbidden
        500:
          description: Server error
      security:
      - v2_auth: []
      x-swagger-router-controller: api.applicationInformation
    get:
      tags:
      - v2-application-information
      summary: Get an application information of a session by session Id
      parameters:
      - name: sessionId
        in: path
        description: Id of session
        required: true
        schema:
          type: number
      - name: appInfoId
        in: path
        description: application information Id
        required: true
        schema:
          type: number
      responses:
        200:
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Links'
        401:
          description: Unauthorized
        404:
          description: Not Found
        403:
          description: Forbidden
        500:
          description: Server error
      security:
      - v2_auth: []
      x-swagger-router-controller: api.applicationInformation
    put:
      tags:
      - v2-application-information
      summary: update an application information of a session by session Id
      parameters:
      - name: sessionId
        in: path
        description: Id of session
        required: true
        schema:
          type: number
      - name: appInfoId
        in: path
        description: application information Id
        required: true
        schema:
          type: number
      responses:
        200:
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Links'
        401:
          description: Unauthorized
        404:
          description: Not Found
        403:
          description: Forbidden
        500:
          description: Server error
      security:
      - v2_auth: []
      x-swagger-router-controller: api.applicationInformation
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppInfo'
        required: true
components:
  schemas:
    Links:
      type: array
      items:
        $ref: '#/components/schemas/Link'
    AppInfo:
      type: object
      required:
      - name
      - first_action_time
      properties:
        id:
          type: string
        name:
          type: string
        file_size:
          type: string
        file_version:
          type: string
        path:
          type: string
        version:
          type: string
        first_action_time:
          type: string
        file_last_modified:
          type: string
        created_date:
          type: string
        modified_date:
          type: string
        incl_file_last_modified:
          type: boolean
        incl_file_size:
          type: boolean
        incl_file_version:
          type: boolean
        incl_path:
          type: boolean
        incl_version:
          type: boolean
        session_id:
          type: string
        links:
          $ref: '#/components/schemas/Links'
    AppInfos:
      type: array
      items:
        $ref: '#/components/schemas/AppInfo'
    Link:
      type: object
      properties:
        rel:
          type: string
        href:
          type: string
  securitySchemes:
    v2_auth:
      type: apiKey
      name: Authorization
      in: header
    v3_auth:
      type: apiKey
      name: Authorization
      in: header