Skedulo Metadata API

The Metadata API from Skedulo — 1 operation(s) for metadata.

Operations 1

GET /metadata/user Get metadata for the authenticated 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-metadata-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-metadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Admin Metadata 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: Metadata
paths:
  /metadata/user:
    get:
      security:
      - Authorization: []
      summary: Get metadata for the authenticated user
      description: Retrieves metadata including user details, team information, and associated resource data for the currently authenticated user.
      operationId: metadataUser
      responses:
        '200':
          description: The current user's metadata
          content:
            application/json:
              schema:
                type: object
                properties:
                  created:
                    $ref: '#/components/schemas/UserMetadata'
        '412':
          description: The user belongs to a tenant that is not associated with a team
      tags:
      - Metadata
components:
  schemas:
    TeamMetadata:
      type: object
      required:
      - id
      - name
      - description
      - vendor
      - orgId
      properties:
        id:
          type: string
        name:
          description: A valid DNS sub domain
          type: string
        description:
          description: A human friendly name
          type: string
        vendor:
          description: The vendor associated with this organization
          type: string
          enum:
          - salesforce
          - servicenow
          - skedulo
        orgId:
          description: The vendor specific organization ID
          type: string
        customer:
          description: The customer name.
          type: string
    ResourceMetadata:
      type: object
      required:
      - id
      - timezone
      properties:
        id:
          type: string
        category:
          type: string
        employmentType:
          type: string
        address:
          type: string
        latitude:
          type: number
        longitude:
          type: number
        mobilePhone:
          type: string
        timezone:
          type: string
    UserMetadata:
      type: object
      required:
      - id
      - email
      - username
      - fullName
      - lastName
      - team
      properties:
        id:
          type: string
        email:
          type: string
        username:
          type: string
        fullName:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        team:
          $ref: '#/components/schemas/TeamMetadata'
        resource:
          $ref: '#/components/schemas/ResourceMetadata'
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      bearerFormat: JWT