Jotform Label API

The Label API from Jotform — 4 operation(s) for label.

Operations 5

POST /label Create a label #
PUT /label/{labelID} Update a label #
DELETE /label/{labelID} Delete a label #
PUT /label/{labelID}/add-resources Attach resources (forms, submissions) to a label #
PUT /label/{labelID}/remove-resources Remove resources from a label #

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/jotform-label-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

jotform-label-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jotform REST Folder Label API
  description: 'Jotform is an online form builder. The REST API exposes forms,

    submissions, reports, folders, users, files, system, labels and webhooks.

    Authentication is performed with an API key sent either as the APIKEY

    HTTP header or the apiKey query string parameter. The API is available on

    three regional/compliance hostnames: standard (api.jotform.com), EU

    (eu-api.jotform.com), and HIPAA (hipaa-api.jotform.com).

    '
  version: 1.0.0
  contact:
    name: Jotform API Documentation
    url: https://api.jotform.com/docs/
servers:
- url: https://api.jotform.com
  description: Standard (US)
- url: https://eu-api.jotform.com
  description: EU
- url: https://hipaa-api.jotform.com
  description: HIPAA
security:
- ApiKeyHeader: []
- ApiKeyQuery: []
tags:
- name: Label
paths:
  /label:
    post:
      tags:
      - Label
      summary: Create a label
      operationId: createLabel
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                color:
                  type: string
      responses:
        '200':
          description: Newly created label.
  /label/{labelID}:
    put:
      tags:
      - Label
      summary: Update a label
      operationId: updateLabel
      parameters:
      - $ref: '#/components/parameters/LabelID'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                color:
                  type: string
      responses:
        '200':
          description: Updated label.
    delete:
      tags:
      - Label
      summary: Delete a label
      operationId: deleteLabel
      parameters:
      - $ref: '#/components/parameters/LabelID'
      responses:
        '200':
          description: Deletion result.
  /label/{labelID}/add-resources:
    put:
      tags:
      - Label
      summary: Attach resources (forms, submissions) to a label
      operationId: addLabelResources
      parameters:
      - $ref: '#/components/parameters/LabelID'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                resources:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Updated label.
  /label/{labelID}/remove-resources:
    put:
      tags:
      - Label
      summary: Remove resources from a label
      operationId: removeLabelResources
      parameters:
      - $ref: '#/components/parameters/LabelID'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                resources:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Updated label.
components:
  parameters:
    LabelID:
      in: path
      name: labelID
      required: true
      schema:
        type: string
      description: Identifier of the label.
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: APIKEY
    ApiKeyQuery:
      type: apiKey
      in: query
      name: apiKey