PropelAuth Employees API

Inspect PropelAuth dashboard employees (internal team)

OpenAPI Specification

propelauth-employees-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: PropelAuth End-User API Keys Access Tokens Employees API
  description: 'Backend REST API for validating, issuing, listing, and revoking API keys that PropelAuth

    manages on behalf of your end users and tenant organizations. API keys can be scoped to a

    personal user, an organization, or imported from a legacy auth system. All endpoints

    require a PropelAuth Backend Integration API key.

    '
  version: 1.0.0
  contact:
    name: PropelAuth Support
    url: https://www.propelauth.com
    email: support@propelauth.com
  license:
    name: PropelAuth Terms
    url: https://www.propelauth.com/legal/terms-of-service
servers:
- url: https://{authId}.propelauthtest.com
  description: Test environment
  variables:
    authId:
      default: '0000000000'
- url: https://auth.example.com
  description: Production / Staging custom domain
security:
- BackendApiKey: []
tags:
- name: Employees
  description: Inspect PropelAuth dashboard employees (internal team)
paths:
  /api/backend/v1/employee/{employeeId}:
    get:
      summary: Fetch Employee By ID
      description: Look up a PropelAuth dashboard employee (your internal team member) by ID.
      operationId: fetchEmployeeById
      tags:
      - Employees
      parameters:
      - name: employeeId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Employee found
components:
  securitySchemes:
    BackendApiKey:
      type: http
      scheme: bearer