Nexthink Handoff API API

The Handoff API API from Nexthink — 1 operation(s) for handoff api.

Operations 1

POST /api/v1/spark/handoff Hand off a conversation to Spark #

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/nexthink-handoff-api-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

nexthink-handoff-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Campaigns Handoff API
  version: 1.0.0
servers:
- url: https://{instance}.api.{region}.nexthink.cloud
  description: Nexthink Infinity instance API host
  variables:
    instance:
      default: instance
      description: Your Nexthink instance name
    region:
      default: us
      enum:
      - us
      - eu
      - pac
      - meta
      description: Nexthink cloud region
security:
- bearerAuth: []
tags:
- name: Handoff API
paths:
  /api/v1/spark/handoff:
    post:
      tags:
      - Handoff API
      summary: Hand off a conversation to Spark
      description: 'Handles user message requests for which responses will be redirected to Spark MS Teams.

        '
      operationId: handleHandoffRequest
      parameters:
      - name: Authorization
        in: header
        description: Authorization part for this request
        required: true
        schema:
          type: string
      - name: Timezone
        in: header
        description: Timezone to be used for this request
        required: false
        schema:
          type: string
      - name: User-Principal-Name
        in: header
        description: UPN to be used for this request
        required: true
        schema:
          type: string
      requestBody:
        description: Handoff conversation request containing user message
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HandoffConversationMessageRequest'
        required: true
      responses:
        '204':
          description: Request successful
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
        '502':
          description: Bad gateway
        '503':
          description: Service unavailable
components:
  schemas:
    FilePartByContent:
      required:
      - mimeType
      - fileContent
      type: object
      properties:
        fileContent:
          type: string
        mimeType:
          minLength: 1
          type: string
    MessageDTO:
      required:
      - parts
      type: object
      properties:
        parts:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/PartDTO'
    HandoffConversationMessageRequest:
      required:
      - message
      type: object
      properties:
        metadata:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
          description: Optional metadata that will be passed through the request flow
        message:
          $ref: '#/components/schemas/MessageDTO'
    PartDTO:
      type: object
      required:
      - type
      properties:
        type:
          $ref: '#/components/schemas/PartType'
      discriminator:
        propertyName: type
        mapping:
          TEXT: '#/components/schemas/TextPartDTO'
          FILE: '#/components/schemas/FilePartByContent'
      oneOf:
      - $ref: '#/components/schemas/TextPartDTO'
      - $ref: '#/components/schemas/FilePartByContent'
    TextPartDTO:
      required:
      - text
      type: object
      properties:
        text:
          minLength: 1
          type: string
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
    PartType:
      type: string
      enum:
      - TEXT
      - FILE
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: jwt
x-apievangelist-source: https://docs.nexthink.com/api/llms.txt
x-apievangelist-method: searched
x-apievangelist-generated: '2026-07-20'