RunWhen sync API

The sync API from RunWhen — 14 operation(s) for sync.

Operations 14

POST /api/v1/workspaces/{workspace_name}/slxs/sync Upsert an SLX #
DELETE /api/v1/workspaces/{workspace_name}/slxs/{name} Soft-delete an SLX #
POST /api/v1/workspaces/{workspace_name}/slxs/reconcile-tasks [dev only] Re-reconcile slx_tasks for a workspace #
POST /api/v1/workspaces/{workspace_name}/slis/sync Upsert an SLI #
DELETE /api/v1/workspaces/{workspace_name}/slis/{slx_name} Soft-delete an SLI by its parent SLX name #
POST /api/v1/workspaces/{workspace_name}/slos/sync Upsert an SLO #
DELETE /api/v1/workspaces/{workspace_name}/slos/{slx_name} Soft-delete an SLO by its parent SLX name #
POST /api/v1/workspaces/{workspace_name}/runbooks/sync Upsert a Runbook #
DELETE /api/v1/workspaces/{workspace_name}/runbooks/{slx_name} Soft-delete a Runbook by its parent SLX name #
POST /api/v1/workspaces/{workspace_name}/personas/sync Upsert a Persona #
DELETE /api/v1/workspaces/{workspace_name}/personas/{name} Soft-delete a Persona #
POST /api/v1/workspaces/{workspace_name}/workflows/sync Upsert a Workflow #
DELETE /api/v1/workspaces/{workspace_name}/workflows/{name} Soft-delete a Workflow #
POST /api/v1/workspaces/{workspace_name}/sync Upsert a Workspace #

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/runwhen-sync-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

runwhen-sync-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: papi alert-query-proxy Sync API
  description: RunWhen Platform API
  version: 2.0.0
servers:
- url: https://papi.beta.runwhen.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: sync
paths:
  /api/v1/workspaces/{workspace_name}/slxs/sync:
    post:
      tags:
      - sync
      summary: Upsert an SLX
      description: Upsert an SLX record using SHA-based deduplication.
      operationId: sync_slx_api_v1_workspaces__workspace_name__slxs_sync_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/slxs/{name}:
    delete:
      tags:
      - sync
      summary: Soft-delete an SLX
      description: Soft-delete an SLX by name.
      operationId: delete_slx_api_v1_workspaces__workspace_name__slxs__name__delete
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      - name: name
        in: path
        required: true
        schema:
          type: string
          title: Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/slxs/reconcile-tasks:
    post:
      tags:
      - sync
      summary: '[dev only] Re-reconcile slx_tasks for a workspace'
      description: 'Re-run the slx_tasks reconcile for every runbook in a workspace.


        Dev-only validation hook: the production trigger is the runbook reconcile

        hook (sync endpoints / workspace-upload pipeline), but seeded/migrated

        workspaces have runbooks without slx_tasks rows until something re-syncs.

        Reconciles from the runbooks'' current resolved_tasks/task_details — no

        robot re-parse — so it works without git access. Returns 404 outside the

        development environment.'
      operationId: reconcile_workspace_tasks_api_v1_workspaces__workspace_name__slxs_reconcile_tasks_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReconcileTasksResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/slis/sync:
    post:
      tags:
      - sync
      summary: Upsert an SLI
      description: Upsert an SLI record.  The slx_id must be present in the payload.
      operationId: sync_sli_api_v1_workspaces__workspace_name__slis_sync_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/slis/{slx_name}:
    delete:
      tags:
      - sync
      summary: Soft-delete an SLI by its parent SLX name
      description: Soft-delete an SLI identified by its parent SLX name.
      operationId: delete_sli_api_v1_workspaces__workspace_name__slis__slx_name__delete
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      - name: slx_name
        in: path
        required: true
        schema:
          type: string
          title: Slx Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/slos/sync:
    post:
      tags:
      - sync
      summary: Upsert an SLO
      description: Upsert an SLO record.  The slx_id must be present in the payload.
      operationId: sync_slo_api_v1_workspaces__workspace_name__slos_sync_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/slos/{slx_name}:
    delete:
      tags:
      - sync
      summary: Soft-delete an SLO by its parent SLX name
      description: Soft-delete an SLO identified by its parent SLX name.
      operationId: delete_slo_api_v1_workspaces__workspace_name__slos__slx_name__delete
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      - name: slx_name
        in: path
        required: true
        schema:
          type: string
          title: Slx Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/runbooks/sync:
    post:
      tags:
      - sync
      summary: Upsert a Runbook
      description: Upsert a Runbook record.  The slx_id must be present in the payload.
      operationId: sync_runbook_api_v1_workspaces__workspace_name__runbooks_sync_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/runbooks/{slx_name}:
    delete:
      tags:
      - sync
      summary: Soft-delete a Runbook by its parent SLX name
      description: Soft-delete a Runbook identified by its parent SLX name.
      operationId: delete_runbook_api_v1_workspaces__workspace_name__runbooks__slx_name__delete
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      - name: slx_name
        in: path
        required: true
        schema:
          type: string
          title: Slx Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/personas/sync:
    post:
      tags:
      - sync
      summary: Upsert a Persona
      description: Upsert a Persona record.
      operationId: sync_persona_api_v1_workspaces__workspace_name__personas_sync_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/personas/{name}:
    delete:
      tags:
      - sync
      summary: Soft-delete a Persona
      description: Soft-delete a Persona by name.
      operationId: delete_persona_api_v1_workspaces__workspace_name__personas__name__delete
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      - name: name
        in: path
        required: true
        schema:
          type: string
          title: Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/workflows/sync:
    post:
      tags:
      - sync
      summary: Upsert a Workflow
      description: Upsert a Workflow record.
      operationId: sync_workflow_api_v1_workspaces__workspace_name__workflows_sync_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/workflows/{name}:
    delete:
      tags:
      - sync
      summary: Soft-delete a Workflow
      description: Soft-delete a Workflow by name.
      operationId: delete_workflow_api_v1_workspaces__workspace_name__workflows__name__delete
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      - name: name
        in: path
        required: true
        schema:
          type: string
          title: Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
  /api/v1/workspaces/{workspace_name}/sync:
    post:
      tags:
      - sync
      summary: Upsert a Workspace
      description: 'Upsert a Workspace record.


        Workspace deletion is handled by the dedicated workspace deletion flow

        and is not exposed here.'
      operationId: sync_workspace_api_v1_workspaces__workspace_name__sync_post
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
          title: Workspace Name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
components:
  schemas:
    ReconcileTasksResponse:
      properties:
        workspace:
          type: string
          title: Workspace
        slx_count:
          type: integer
          title: Slx Count
        task_upserted:
          type: integer
          title: Task Upserted
        task_soft_deleted:
          type: integer
          title: Task Soft Deleted
      type: object
      required:
      - workspace
      - slx_count
      - task_upserted
      - task_soft_deleted
      title: ReconcileTasksResponse
      description: Response for the dev-only slx_tasks reconcile trigger.
    SyncRequest:
      properties:
        last_synced_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Last Synced At
          description: Timestamp from upload task.
        payload:
          additionalProperties: true
          type: object
          title: Payload
          description: Full model payload.
      additionalProperties: false
      type: object
      required:
      - payload
      title: SyncRequest
      description: 'Request body for a sync (upsert) operation.


        ``modified_by`` is *not* accepted from the request body — the server

        derives the writer identity from the JWT via

        :func:`shared.auth.dependencies.get_effective_modifier`. ``extra="forbid"``

        ensures any caller still sending ``modified_by`` (or any other unknown

        key) sees HTTP 422 rather than a silent drop. See RW-998 / the

        ``modified_by`` field removal for rationale.'
    SyncResponse:
      properties:
        status:
          type: string
          title: Status
        name:
          type: string
          title: Name
        resource_id:
          anyOf:
          - type: integer
          - type: 'null'
          title: Resource Id
      type: object
      required:
      - status
      - name
      title: SyncResponse
      description: Response for a sync (upsert) operation.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DeleteResponse:
      properties:
        status:
          type: string
          title: Status
        name:
          type: string
          title: Name
        resource_id:
          anyOf:
          - type: integer
          - type: 'null'
          title: Resource Id
      type: object
      required:
      - status
      - name
      title: DeleteResponse
      description: Response for a soft-delete operation.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT access token from /api/v3/token/ or Auth0 login