Skedulo Link Resource API

The Link Resource API from Skedulo — 1 operation(s) for link resource.

Operations 2

POST /link_resource Create link between resource and user #
DELETE /link_resource Remove link between resource and user #

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-link-resource-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-link-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Admin Link Resource 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: Link Resource
paths:
  /link_resource:
    post:
      security:
      - Authorization: []
      summary: Create link between resource and user
      description: Links (assigns) a resource to a user by their respective Ids.
      operationId: linkResource
      responses:
        '200':
          description: User and resource were successfully linked.
        '403':
          description: The user does not have permission to perform this action.
        '404':
          description: No user found for the given id.
          content:
            '*/*':
              schema:
                type: object
                example:
                  errorType: not_found
                  message: Could not find user with vendor user id 1234
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - userId
              - resourceId
              properties:
                userId:
                  type: string
                  description: The user id of the user to be linked to given resource
                resourceId:
                  type: string
                  description: The resource id of the resource to be linked to given user
        required: true
      tags:
      - Link Resource
    delete:
      security:
      - Authorization: []
      summary: Remove link between resource and user
      description: Unlinked a resource to a user by their respective Ids.
      operationId: unlinkResource
      responses:
        '200':
          description: successful result
        '403':
          description: The user does not have permission to perform this action.
        '404':
          description: No user found for the given id.
          content:
            '*/*':
              schema:
                type: object
                example:
                  errorType: not_found
                  message: Could not find user with vendor user id 1234
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - user_id
              - resource_id
              properties:
                user_id:
                  type: string
                  description: The user id of the user to be linked to given resource
                resource_id:
                  type: string
                  description: The resource id of the resource to be linked to given user
        required: true
      tags:
      - Link Resource
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      bearerFormat: JWT