Smartcat AssignmentTemplates API

The AssignmentTemplates API from Smartcat — 2 operation(s) for assignmenttemplates.

Operations 2

GET /api/integration/v1/assignment-templates/project/{projectId} Get a list of available assignment templates
POST /api/integration/v1/assignment-templates/{assignmentTemplateId}/project/{projectId} Apply an assignment template to the project

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/smartcat-assignmenttemplates-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

smartcat-assignmenttemplates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Assignment Templates API
  version: v1
servers:
- url: /
tags:
- name: AssignmentTemplates
paths:
  /api/integration/v1/assignment-templates/project/{projectId}:
    get:
      tags:
      - AssignmentTemplates
      summary: Get a list of available assignment templates
      parameters:
      - name: projectId
        in: path
        description: project ID
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssignmentTemplateModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssignmentTemplateModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssignmentTemplateModel'
        '403':
          description: Project tasks are not available for this project
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: Project not found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /api/integration/v1/assignment-templates/{assignmentTemplateId}/project/{projectId}:
    post:
      tags:
      - AssignmentTemplates
      summary: Apply an assignment template to the project
      parameters:
      - name: assignmentTemplateId
        in: path
        description: assignment template ID
        required: true
        schema:
          type: string
          format: uuid
      - name: projectId
        in: path
        description: project ID
        required: true
        schema:
          type: string
          format: uuid
      - name: deadlineHours
        in: query
        description: set a deadline in hours
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AssignmentTemplateApplicationResultModel'
            application/json:
              schema:
                $ref: '#/components/schemas/AssignmentTemplateApplicationResultModel'
            text/json:
              schema:
                $ref: '#/components/schemas/AssignmentTemplateApplicationResultModel'
        '402':
          description: Assignment is not completed due to enabled prepayment mode
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: 'Returns if:


            - Project tasks are not available for this project

            - There is an incomplete ''Source layout check'' stage for some project documents

            - Documents are being added to project tasks'
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: 'Returns if:


            - Project not found

            - Assignment template not found'
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
    AssignmentTemplateModel:
      type: object
      properties:
        id:
          type: string
          description: ID
          format: uuid
        name:
          type:
          - string
          - 'null'
          description: Name
        projectTasksCoveragePercent:
          type: number
          description: The percentage of tasks without assignments and invitations in the project to which the template will be applied
          format: double
      additionalProperties: false
      description: Assignment template information for external systems
    AssignmentTemplateApplicationResultModel:
      type: object
      properties:
        assignedCount:
          type: integer
          description: Number of assigned project tasks
          format: int32
        unassignedCount:
          type: integer
          description: Number of unassigned project tasks
          format: int32
      additionalProperties: false
      description: Assignment template application result information for external systems