Skedulo Template API

The Template API from Skedulo — 3 operation(s) for template.

Operations 5

POST /template Create template #
PUT /template/{template_id} Update template #
DELETE /template/{template_id} Delete template #
GET /template/{template_id}/values Template values #
PUT /template/{template_id}/values Update template values #

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/skedulo-template-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

skedulo-template-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Admin Template API
  description: Skedulo Authentication API
  version: 1.0.0
servers:
- url: https://api.skedulo.com/auth
- url: https://api.uk.skedulo.com/auth
- url: https://api.ca.skedulo.com/auth
- url: https://api.au.skedulo.com/auth
tags:
- name: Template
paths:
  /template:
    post:
      security:
      - Authorization: []
      summary: Create template
      description: Create a new template.
      operationId: createTemplate
      responses:
        '200':
          description: The template was created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultOKCreateTemplate'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewTemplate'
        description: New template details.
        required: true
      tags:
      - Template
  /template/{template_id}:
    put:
      security:
      - Authorization: []
      summary: Update template
      description: Update an existing template.
      operationId: updateTemplate
      parameters:
      - name: template_id
        in: path
        description: Identifier of the template to update.
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: The template was updated.
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateTemplate'
        description: Updated template details.
        required: true
      tags:
      - Template
    delete:
      security:
      - Authorization: []
      summary: Delete template
      description: Delete a template.
      operationId: deleteTemplate
      parameters:
      - name: template_id
        in: path
        description: Identifier of the template to delete.
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: The template was deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultOKDeleteTemplate'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - Template
  /template/{template_id}/values:
    get:
      security:
      - Authorization: []
      summary: Template values
      description: Return template values for a template.
      operationId: getValuePairs
      parameters:
      - name: template_id
        in: path
        description: Identifier of the template to retrieve values for.
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultOKTemplateValues'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - Template
    put:
      security:
      - Authorization: []
      summary: Update template values
      description: All existing values will removed and the values provided will be inserted.
      operationId: overrideTemplateValues
      parameters:
      - name: template_id
        in: path
        description: Identifier of the template to add values for.
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: The values were updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultOKTemplateValues'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/NewTemplateValue'
        description: Values to use for the template.
        required: true
      tags:
      - Template
components:
  schemas:
    TemplateValue:
      type: object
      required:
      - id
      - templateId
      - rel
      - field
      - value
      properties:
        id:
          $ref: '#/components/schemas/TemplateValueId'
        templateId:
          $ref: '#/components/schemas/TemplateId'
        rel:
          type: string
        field:
          type: string
        value:
          type: string
    TemplateValueId:
      type: string
      format: uuid
    ResultOKDeleteTemplate:
      type: object
      properties:
        deleted:
          $ref: '#/components/schemas/TemplateId'
    ResultOKTemplateValues:
      type: object
      properties:
        result:
          type: array
          items:
            $ref: '#/components/schemas/TemplateValue'
    NewTemplate:
      type: object
      required:
      - name
      - schemaName
      properties:
        name:
          type: string
        schemaName:
          type: string
    TemplateId:
      type: string
      format: uuid
    UpdateTemplate:
      type: object
      required:
      - name
      properties:
        name:
          type: string
    NewTemplateValue:
      type: object
      required:
      - rel
      - field
      - value
      properties:
        rel:
          type: string
        field:
          type: string
        value:
          type: string
    Template:
      type: object
      required:
      - id
      - name
      - schemaName
      properties:
        id:
          $ref: '#/components/schemas/TemplateId'
        name:
          type: string
        schemaName:
          type: string
    ResultOKCreateTemplate:
      type: object
      properties:
        result:
          type: array
          items:
            $ref: '#/components/schemas/Template'
    Error:
      type: object
      required:
      - errorType
      - message
      properties:
        errorType:
          type: string
        message:
          type: string
        errorId:
          type: string
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      bearerFormat: JWT