> ## Documentation Index
> Fetch the complete documentation index at: https://developer.payrollintegrations.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Resource Directory

> Returns a directory of available API resources based on the current user and their permissions



## OpenAPI

````yaml GET /
openapi: 3.1.0
info:
  title: Payroll Integrations Public API
  description: Public API for Payroll Integrations platform
  version: '2025-10-28T20:05:03Z'
  license:
    name: MIT
servers:
  - url: https://api.payrollintegrationsapp.com
    description: Prod environment
  - url: https://demo1-api.payrollintegrationsdemo.com
    description: Demo environment
  - url: https://demo2-api.payrollintegrationsdemo.com
    description: Demo environment
  - url: https://demo3-api.payrollintegrationsdemo.com
    description: Demo environment
security:
  - bearerAuth: []
paths:
  /:
    get:
      tags:
        - Meta
      summary: Get resource directory
      description: >-
        Returns a directory of available API resources based on the current user
        and their permissions
      operationId: getResourceDirectory
      responses:
        '200':
          description: Resource directory filtered by user permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceDirectory'
              example:
                resources:
                  - method: GET
                    url: https://api.example.com/v1/employer-identifiers
                  - method: GET
                    url: https://api.example.com/v1/users
                  - method: POST
                    url: https://api.example.com/v1/users
components:
  schemas:
    ResourceDirectory:
      type: object
      required:
        - resources
      properties:
        resources:
          type: array
          description: Sorted list of accessible resources.
          items:
            type: object
            required:
              - method
              - url
            properties:
              method:
                type: string
                enum:
                  - POST
                  - GET
                  - PUT
                  - PATCH
                  - DELETE
                  - OPTIONS
                  - HEAD
              url:
                type: string
                format: uri

````