Flueid Permissions API

The Permissions API from Flueid — 3 operation(s) for permissions.

Business capability
Identity & Access Management BC-620.20

Operations 3

POST /api/Permissions/SaveAndReturnPermission Upsert a single permission for the passed in EntityType and EntityId and returns the effective permission boolean
POST /api/Permissions/GetEntityPermissions Get Permissions for the passed in Entity by Permission Group.
POST /api/Permissions/GetEffectivePermissionsDisplay Gets effective permisison display for a single user and permission name at all entity levels

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/flueid-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

flueid-permissions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flueid Pro Permissions API
  version: '1.0'
servers:
- url: https://api.pro.flueid.com
  description: Flueid Pro production API
tags:
- name: Permissions
paths:
  /api/Permissions/SaveAndReturnPermission:
    post:
      tags:
      - Permissions
      summary: Upsert a single permission for the passed in EntityType and EntityId and returns the effective permission boolean
      parameters:
      - name: api-version
        in: query
        description: The requested API version
        schema:
          type: string
          default: '1.0'
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.UpsertEntityPermissionRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.UpsertEntityPermissionRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.UpsertEntityPermissionRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.UpsertEntityPermissionRequest'
      responses:
        '200':
          description: Success
  /api/Permissions/GetEntityPermissions:
    post:
      tags:
      - Permissions
      summary: Get Permissions for the passed in Entity by Permission Group.
      parameters:
      - name: api-version
        in: query
        description: The requested API version
        schema:
          type: string
          default: '1.0'
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.GetEntityPermissionsRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.GetEntityPermissionsRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.GetEntityPermissionsRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Models.Permissions.GetEntityPermissionsRequest'
        required: true
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Titlefy.Models.Permissions.PermissionDisplay'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Titlefy.Models.Permissions.PermissionDisplay'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Titlefy.Models.Permissions.PermissionDisplay'
  /api/Permissions/GetEffectivePermissionsDisplay:
    post:
      tags:
      - Permissions
      summary: Gets effective permisison display for a single user and permission name at all entity levels
      parameters:
      - name: api-version
        in: query
        description: The requested API version
        schema:
          type: string
          default: '1.0'
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.DTOs.EffectivePermissionRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.DTOs.EffectivePermissionRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.DTOs.EffectivePermissionRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.DTOs.EffectivePermissionRequest'
        required: true
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Titlefy.Models.Permissions.EffectivePermissionDisplay'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Titlefy.Models.Permissions.EffectivePermissionDisplay'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Titlefy.Models.Permissions.EffectivePermissionDisplay'
components:
  schemas:
    Titlefy.Models.Permissions.EffectivePermissionDisplay:
      type: object
      properties:
        entityLevel:
          type:
          - string
          - 'null'
        value:
          type: boolean
        overrideLowerLevels:
          type: boolean
        preventOverrideByHigherLevels:
          type: boolean
      additionalProperties: false
    Titlefy.Models.Permissions.GetEntityPermissionsRequest:
      type: object
      properties:
        entityType:
          type:
          - string
          - 'null'
        entityId:
          type: integer
          format: int32
        targetedPartnerId:
          type: integer
          format: int32
        permissionGroupName:
          type:
          - string
          - 'null'
      additionalProperties: false
    Titlefy.Data.Entities.DTOs.EffectivePermissionRequest:
      type: object
      properties:
        userId:
          type: integer
          format: int32
        targetedPartnerId:
          type: integer
          format: int32
        permissionName:
          type:
          - string
          - 'null'
      additionalProperties: false
    Titlefy.Data.Entities.HierarchySetting:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        value:
          type: boolean
        overrideLowerLevels:
          type: boolean
        preventOverrideByHigherLevels:
          type: boolean
        setByEntityType:
          $ref: '#/components/schemas/Flueid.Pro.Constants.EntityConstants.EntityType'
        setByEntityId:
          type: integer
          format: int32
      additionalProperties: false
    Titlefy.Models.Permissions.UpsertEntityPermissionRequest:
      type: object
      properties:
        entityId:
          type: integer
          format: int32
        entityType:
          $ref: '#/components/schemas/Flueid.Pro.Constants.EntityConstants.EntityType'
        targetedPartnerId:
          type: integer
          format: int32
        permission:
          $ref: '#/components/schemas/Titlefy.Data.Entities.HierarchySetting'
      additionalProperties: false
    Flueid.Pro.Constants.EntityConstants.EntityType:
      enum:
      - 10
      - 20
      - 30
      - 40
      - 50
      - 60
      - 9999
      type: integer
      format: int32
    Titlefy.Models.Permissions.PermissionDisplay:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        value:
          type: boolean
        overrideLowerLevels:
          type: boolean
        preventOverridebyHigherLevels:
          type: boolean
        displayAs:
          type:
          - string
          - 'null'
        helpInfo:
          type:
          - string
          - 'null'
        isEnabled:
          type: boolean
      additionalProperties: false