Teammates Assignment API

The Assignment API from Teammates — 1 operation(s) for assignment.

Operations 1

GET /assignment Get assignment 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/teammates-assignment-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

teammates-assignment-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Teammates SmartTools Assign Assignment API
  version: '0.1'
  description: API for agents to operate SaaS software with natural language
servers:
- url: https://api.teammates.work/v1
  description: Production API server
tags:
- name: Assignment
paths:
  /assignment:
    get:
      summary: Get assignment result
      description: Retrieves the current status or result of an assignment
      parameters:
      - $ref: '#/components/parameters/AssignmentId'
      responses:
        '200':
          $ref: '#/components/responses/AssignmentResult'
      tags:
      - Assignment
components:
  parameters:
    AssignmentId:
      name: assignment_id
      in: query
      required: true
      schema:
        type: string
        format: uuid
      description: The ID of the assignment to check
      example: 87fb989d-46dc-4a5c-af5d-de772f8e9ebc
  schemas:
    AssignmentResultResponse:
      type: object
      required:
      - status
      - duration
      properties:
        status:
          type: string
          enum:
          - complete
          - unstarted
          - in_progress
          - failed
          - waiting_for_others
          - canceled
          - clarification_required
          description: Current status of the assignment
        duration:
          type: integer
          description: Duration of the assignment execution in seconds
        result:
          type: string
          description: JSON string containing the result data (only present when status is complete)
          format: json
        details:
          type: object
          description: Additional details about the assignment execution
          example:
            steps_completed: 3
            last_action: Updated cell F3 with new value
            affected_items:
            - Sheet1!F3
            tool_specific_info:
              spreadsheet_name: Q4 Planning
              worksheet: Budget
  responses:
    AssignmentResult:
      description: Assignment status or result
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AssignmentResultResponse'