Skedulo Whoami API

The Whoami API from Skedulo — 1 operation(s) for whoami.

Operations 1

GET /whoami Whoami #

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-whoami-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-whoami-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Admin Whoami 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: Whoami
paths:
  /whoami:
    get:
      security:
      - Authorization: []
      summary: Whoami
      description: Return the current user's authentication information
      operationId: whoami
      parameters:
      - name: access_token
        in: query
        description: 'Access token. This is an alternative to passing the Authorization: `Bearer` header'
        required: false
        schema:
          type: string
      responses:
        '200':
          description: The current users authentication information was returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultOKUserInfo'
      tags:
      - Whoami
components:
  schemas:
    UserInfo:
      type: object
      required:
      - username
      - userId
      - tenantId
      - roles
      - vendorInfo
      properties:
        username:
          type: string
        userId:
          type: string
        tenantId:
          type: string
        roles:
          $ref: '#/components/schemas/Roles'
        resourceId:
          type: string
        vendorInfo:
          $ref: '#/components/schemas/VendorInfo'
        permissions:
          $ref: '#/components/schemas/Permissions'
    Roles:
      type: array
      items:
        type: string
        enum:
        - administrator
        - scheduler
        - resource
    Permissions:
      description: The permissions for the user. Only present if the useNewPermissions feature flag is enabled.
      type: array
      items:
        description: Permission keys assigned to the user
        type: string
    ResultOKUserInfo:
      type: object
      properties:
        result:
          $ref: '#/components/schemas/UserInfo'
    VendorInfo:
      oneOf:
      - type: object
        required:
        - vendor
        - env
        properties:
          vendor:
            type: string
            example: salesforce
          env:
            type: string
            enum:
            - salesforce
            - salesforce-sandbox
          communityId:
            type: string
            description: community ID for this user if this user belongs to one
          vendorUserId:
            type: string
            description: Salesforce user ID of this user
      - type: object
        required:
        - vendor
        properties:
          vendor:
            type: string
            example: skedulo
          vendorUserId:
            type: string
            description: Skedulo user ID of this user
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      bearerFormat: JWT