Skedulo api-controller API

The api-controller API from Skedulo — 5 operation(s) for api-controller.

Operations 5

GET /transactions/simple Get record change transactions (simple) #
GET /transactions Get record change transactions #
GET /changes/{tenantId}/simple Get record changes for a tenant (simple) #
GET /changes/simple Get record changes (simple) #
GET /changes Get record changes #

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-api-controller-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-api-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Admin API Controller 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: api-controller
paths:
  /transactions/simple:
    get:
      tags:
      - api-controller
      summary: Get record change transactions (simple)
      description: Return data changes for the current tenant and search parameters, grouped by transaction, in a simple format.
      operationId: transactionsSimple
      parameters:
      - name: cursor
        in: query
        description: An opaque cursor representing a position in the stream of transactions. Provide this to return all transactions after this position. Returned in the nextCursor property of a transactions result.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Filter transactions after this timestamp (UTC) inclusive
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: end
        in: query
        description: Filter transactions before this timestamp (UTC)
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: userIds
        in: query
        description: Filter transactions by user ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: aea7174c-b0d2-4aa0-bc4b-e59e7e441eab
      - name: entityTypes
        in: query
        description: Filter transactions by entity types
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: Job
      - name: entityIds
        in: query
        description: Filter transactions by entity ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: b4eeb467-3db6-44cf-a691-01205341b0dd
      - name: operations
        in: query
        description: Filter transactions by operations
        required: false
        schema:
          maxItems: 3
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: INSERT
            enum:
            - INSERT
            - UPDATE
            - DELETE
      - name: limit
        in: query
        description: Number of results to return
        required: false
        schema:
          maximum: 50
          minimum: 1
          type: string
      - name: sortOrder
        in: query
        description: Order in which to sort results (by event timestamp)
        required: false
        schema:
          pattern: (?i)asc|desc
          type: string
          enum:
          - asc
          - desc
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionsFetchResultSimple'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
      security:
      - ApiKeyAuth: []
  /transactions:
    get:
      tags:
      - api-controller
      summary: Get record change transactions
      description: Return data changes for the current tenant and search parameters, grouped by transaction.
      operationId: transactions
      parameters:
      - name: cursor
        in: query
        description: An opaque cursor representing a position in the stream of transactions. Provide this to return all transactions after this position. Returned in the nextCursor property of a transactions result.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Filter transactions after this timestamp (UTC) inclusive
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: end
        in: query
        description: Filter transactions before this timestamp (UTC)
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: userIds
        in: query
        description: Filter transactions by user ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: aea7174c-b0d2-4aa0-bc4b-e59e7e441eab
      - name: entityTypes
        in: query
        description: Filter transactions by entity types
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: Job
      - name: entityIds
        in: query
        description: Filter transactions by entity ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: b4eeb467-3db6-44cf-a691-01205341b0dd
      - name: operations
        in: query
        description: Filter transactions by operations
        required: false
        schema:
          maxItems: 3
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: INSERT
            enum:
            - INSERT
            - UPDATE
            - DELETE
      - name: limit
        in: query
        description: Number of results to return
        required: false
        schema:
          maximum: 50
          minimum: 1
          type: string
      - name: sortOrder
        in: query
        description: Order in which to sort results (by event timestamp)
        required: false
        schema:
          pattern: (?i)asc|desc
          type: string
          enum:
          - asc
          - desc
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionsFetchResult'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
      security:
      - ApiKeyAuth: []
  /changes/{tenantId}/simple:
    get:
      tags:
      - api-controller
      summary: Get record changes for a tenant (simple)
      description: Return data changes (simple format) for the given tenant and search parameters. Requires an internal admin token.
      operationId: recordChangesForTenantSimple
      parameters:
      - name: tenantId
        in: path
        description: 'The tenant id to retrieve changes for. Only supported for internal admin tokens. '
        required: true
        schema:
          type: string
        example: sk_d9778d81d2e94e428984a85278b266fb
      - name: cursor
        in: query
        description: An opaque cursor representing a position in the stream of changes. Provide this to return all changes after this position. Returned in the nextCursor property of a changes result.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Filter changes after this timestamp (UTC) inclusive
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: end
        in: query
        description: Filter changes before this timestamp (UTC)
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: userIds
        in: query
        description: Filter changes by user ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: aea7174c-b0d2-4aa0-bc4b-e59e7e441eab
      - name: entityTypes
        in: query
        description: Filter changes by entity types
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: Job
      - name: entityIds
        in: query
        description: Filter changes by entity ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: b4eeb467-3db6-44cf-a691-01205341b0dd
      - name: operations
        in: query
        description: Filter changes by operations
        required: false
        schema:
          maxItems: 3
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: INSERT
            enum:
            - INSERT
            - UPDATE
            - DELETE
      - name: limit
        in: query
        description: Number of results to return
        required: false
        schema:
          maximum: 500
          minimum: 1
          type: string
      - name: sortOrder
        in: query
        description: Order in which to sort results (by event timestamp)
        required: false
        schema:
          pattern: (?i)asc|desc
          type: string
          enum:
          - asc
          - desc
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordChangeFetchResultSimple'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
      security:
      - ApiKeyAuth: []
  /changes/simple:
    get:
      tags:
      - api-controller
      summary: Get record changes (simple)
      description: Return data changes (simple format) for the current tenant and search parameters.
      operationId: recordChangesSimple
      parameters:
      - name: cursor
        in: query
        description: An opaque cursor representing a position in the stream of changes. Provide this to return all changes after this position. Returned in the nextCursor property of a changes result.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Filter changes after this timestamp (UTC) inclusive
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: end
        in: query
        description: Filter changes before this timestamp (UTC)
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: userIds
        in: query
        description: Filter changes by user ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: aea7174c-b0d2-4aa0-bc4b-e59e7e441eab
      - name: entityTypes
        in: query
        description: Filter changes by entity types
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: Job
      - name: entityIds
        in: query
        description: Filter changes by entity ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: b4eeb467-3db6-44cf-a691-01205341b0dd
      - name: operations
        in: query
        description: Filter changes by operations
        required: false
        schema:
          maxItems: 3
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: INSERT
            enum:
            - INSERT
            - UPDATE
            - DELETE
      - name: limit
        in: query
        description: Number of results to return
        required: false
        schema:
          maximum: 500
          minimum: 1
          type: string
      - name: sortOrder
        in: query
        description: Order in which to sort results (by event timestamp)
        required: false
        schema:
          pattern: (?i)asc|desc
          type: string
          enum:
          - asc
          - desc
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordChangeFetchResultSimple'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
      security:
      - ApiKeyAuth: []
  /changes:
    get:
      tags:
      - api-controller
      summary: Get record changes
      description: Return data changes for the current tenant and search parameters.
      operationId: recordChanges
      parameters:
      - name: cursor
        in: query
        description: An opaque cursor representing a position in the stream of changes. Provide this to return all changes after this position. Returned in the nextCursor property of a changes result.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Filter changes after this timestamp (UTC) inclusive
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: end
        in: query
        description: Filter changes before this timestamp (UTC)
        required: false
        schema:
          type: string
          format: date-time
        example: '2021-12-24T00:00:00Z'
      - name: userIds
        in: query
        description: Filter changes by user ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: aea7174c-b0d2-4aa0-bc4b-e59e7e441eab
      - name: entityTypes
        in: query
        description: Filter changes by entity types
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: Job
      - name: entityIds
        in: query
        description: Filter changes by entity ids
        required: false
        schema:
          maxItems: 50
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: b4eeb467-3db6-44cf-a691-01205341b0dd
      - name: operations
        in: query
        description: Filter changes by operations
        required: false
        schema:
          maxItems: 3
          minItems: 1
          uniqueItems: true
          type: array
          items:
            type: string
            example: INSERT
            enum:
            - INSERT
            - UPDATE
            - DELETE
      - name: limit
        in: query
        description: Number of results to return
        required: false
        schema:
          maximum: 500
          minimum: 1
          type: string
      - name: sortOrder
        in: query
        description: Order in which to sort results (by event timestamp)
        required: false
        schema:
          pattern: (?i)asc|desc
          type: string
          enum:
          - asc
          - desc
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordChangeFetchResult'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetails'
      security:
      - ApiKeyAuth: []
components:
  schemas:
    TransactionsFetchResult:
      required:
      - result
      type: object
      properties:
        nextCursor:
          type: string
          description: An opaque cursor representing the current position in the stream of changes.  This can be supplied to the next fetch invocation to obtain the next page of results.
        result:
          type: array
          description: The list of changes grouped by transaction.
          items:
            $ref: '#/components/schemas/Transaction'
    TransactionSimple:
      required:
      - changes
      - transactionId
      type: object
      properties:
        transactionId:
          type: string
        changes:
          type: array
          items:
            $ref: '#/components/schemas/TenantRecordChangeLogSimple'
      description: A single transaction containing multiple tenant data changes in a simple format
    TransactionsFetchResultSimple:
      required:
      - result
      type: object
      properties:
        nextCursor:
          type: string
          description: An opaque cursor representing the current position in the stream of changes.  This can be supplied to the next fetch invocation to obtain the next page of results.
        result:
          type: array
          description: The list of changes grouped by transaction in a simple format.
          items:
            $ref: '#/components/schemas/TransactionSimple'
      description: A series of transactions for a tenant in a simple format
    TenantRecordChangeLogSimple:
      required:
      - entityId
      - entityType
      - occurredAt
      - operation
      - userId
      type: object
      properties:
        occurredAt:
          type: string
          format: date-time
        userId:
          type: string
        entityType:
          type: string
        entityId:
          type: string
        operation:
          type: string
      description: A slim version of TenantRecordChangeLog omitting heavy data fields.
    Transaction:
      required:
      - changes
      - transactionId
      type: object
      properties:
        transactionId:
          type: string
        changes:
          type: array
          items:
            $ref: '#/components/schemas/TenantRecordChangeLog'
      description: A single transaction containing multiple tenant data changes
    TenantRecordChangeLog:
      required:
      - data
      - entityId
      - entityType
      - occurredAt
      - operation
      - userId
      type: object
      properties:
        occurredAt:
          type: string
          format: date-time
        userId:
          type: string
        entityType:
          type: string
        entityId:
          type: string
        operation:
          type: string
        data:
          type: object
        previous:
          type: object
        metadata:
          type: object
      description: Describes a single change to a piece of tenant data.
    RecordChangeFetchResult:
      required:
      - result
      type: object
      properties:
        nextCursor:
          type: string
          description: An opaque cursor representing the current position in the stream of changes.  This can be supplied to the next fetch invocation to obtain the next page of results.
        result:
          type: array
          description: The list of changes.
          items:
            $ref: '#/components/schemas/TenantRecordChangeLog'
      description: A series of record changes for a tenant
    ErrorDetails:
      type: object
      properties:
        errorType:
          type: string
        message:
          type: string
    RecordChangeFetchResultSimple:
      required:
      - result
      type: object
      properties:
        nextCursor:
          type: string
          description: An opaque cursor representing the current position in the stream of changes.  This can be supplied to the next fetch invocation to obtain the next page of results.
        result:
          type: array
          description: The list of changes.
          items:
            $ref: '#/components/schemas/TenantRecordChangeLogSimple'
      description: A series of record changes for a tenant in a simple format
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      bearerFormat: JWT