Paragon Permissions API

ReBAC-style access checks over synced objects and subjects.

Operations 5

POST /projects/{projectId}/permissions/check-access Paragon Check Access #
POST /projects/{projectId}/permissions/batch-check-access Paragon Batch Check Access #
POST /projects/{projectId}/permissions/list-users Paragon List Users With Access #
POST /projects/{projectId}/permissions/list-objects Paragon List Objects With Access #
POST /projects/{projectId}/permissions/expand Paragon Expand Permission Relationships #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
JSONLD
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/json-ld/paragon-context.jsonld
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/examples/actionkit-list-actions-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/examples/actionkit-run-action-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/examples/managed-sync-pull-records-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/examples/permissions-check-access-example.json
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-disconnect-integration-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-discover-and-run-action-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-enable-sync-and-pull-records-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-find-and-replay-failed-execution-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-manage-trigger-subscription-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-permissioned-record-retrieval-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-subscribe-to-trigger-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/paragon/refs/heads/main/arazzo/paragon-verify-integration-and-proxy-request-workflow.yml

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/paragon-permissions-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

paragon-permissions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Paragon Managed Sync Permissions API
  description: Managed Sync provides pipelines to sync data from your users' integration sources (File Storage, CRM, Ticketing) into your app or RAG pipeline. The service handles sync scheduling, normalization to standardized schemas, and enforcement of source-system permissions. Managed Sync exposes a Sync API for record ingestion and a Permissions API for ReBAC-style access checks over synced objects.
  version: 1.0.0
  contact:
    name: Paragon
    url: https://www.useparagon.com
  license:
    name: Proprietary
    url: https://www.useparagon.com/terms-of-service
servers:
- url: https://managed-sync.useparagon.com
  description: Paragon Managed Sync API (Cloud)
security:
- bearerAuth: []
tags:
- name: Permissions
  description: ReBAC-style access checks over synced objects and subjects.
paths:
  /projects/{projectId}/permissions/check-access:
    post:
      operationId: checkAccess
      summary: Paragon Check Access
      description: Checks whether a subject (user, group) has a given relation to a synced object (file, contact, ticket). Useful for enforcing source-system permissions in RAG retrieval.
      tags:
      - Permissions
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccessCheck'
      responses:
        '200':
          description: Access decision.
          content:
            application/json:
              schema:
                type: object
                properties:
                  allowed:
                    type: boolean
  /projects/{projectId}/permissions/batch-check-access:
    post:
      operationId: batchCheckAccess
      summary: Paragon Batch Check Access
      description: Performs multiple access checks in a single call.
      tags:
      - Permissions
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                checks:
                  type: array
                  items:
                    $ref: '#/components/schemas/AccessCheck'
      responses:
        '200':
          description: Per-check access decisions.
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        allowed:
                          type: boolean
  /projects/{projectId}/permissions/list-users:
    post:
      operationId: listUsers
      summary: Paragon List Users With Access
      description: Returns the subjects that have access to a given object.
      tags:
      - Permissions
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                object:
                  type: string
                relation:
                  type: string
      responses:
        '200':
          description: Subjects with the requested relation.
  /projects/{projectId}/permissions/list-objects:
    post:
      operationId: listObjects
      summary: Paragon List Objects With Access
      description: Returns the objects a subject has the requested relation to.
      tags:
      - Permissions
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                subject:
                  type: string
                relation:
                  type: string
      responses:
        '200':
          description: Objects with the requested relation.
  /projects/{projectId}/permissions/expand:
    post:
      operationId: expandRelationships
      summary: Paragon Expand Permission Relationships
      description: Expands the relationship tree for a (subject, relation, object) tuple.
      tags:
      - Permissions
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccessCheck'
      responses:
        '200':
          description: Expanded relationship graph.
components:
  schemas:
    AccessCheck:
      type: object
      required:
      - subject
      - relation
      - object
      properties:
        subject:
          type: string
          description: The actor (e.g., user@example.com).
        relation:
          type: string
          description: The relation to check (e.g., viewer, editor, owner).
        object:
          type: string
          description: The object identifier (e.g., file:abc123).
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Paragon User Token (JWT) Bearer.