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

# Server Staff List

> **ENDPOINT DISABLED** - Returns error 500.

Returns list of ER:LC server staff members.




## OpenAPI

````yaml en/openapi/en-erlc-openapi.yaml GET /erlc/server/staff
openapi: 3.1.0
info:
  title: Moscow RolePlay API - ER:LC Endpoints
  description: >
    **ATTENTION: This API v1 version is deprecated!**

    Most endpoints are disabled and return error 500. It is recommended to use
    the newer API version.

    Only endpoint working: `/erlc/server/bans`


    ## Rate Limits


    | Endpoint | Limit |

    |----------|-------|

    | `/erlc/server/*` (except command) | 120 requests/min |

    | `/erlc/server/command` | Queue: 100 commands |


    Returns **HTTP 429** when limit is exceeded.


    ## Error Response Format


    All errors are returned in JSON format with `code` and `message` fields:


    ```json

    {

        "code": 5007,

        "message": "missing_token"

    }

    ```


    ## Error Codes


    ### Authentication and Access Errors


    | Code | Status | Description |

    |-----|--------|----------|

    | 5006 | 401 | invalid_master_key |

    | 5007 | 401 | missing_token |

    | 5008 | 401 | invalid_token |

    | 5009 | 403 | forbidden |

    | 5010 | 403 | api_version_forbidden |

    | 5011 | 403 | query_param_forbidden |


    ### PRC API Errors


    Endpoints use external PRC API and may return errors:


    | PRC Code | Description |

    |---------|----------|

    | 2002 | Invalid or expired server-key |

    | 3002 | Server is offline |

    | 4001 | Rate limited |

    | 9999 | Module out of date |


    When PRC API error occurs, returns:


    ```json

    {

        "code": 5019,

        "message": "prc_api_error",

        "prc_code": 2002,

        "prc_message": "Invalid or expired server-key"

    }

    ```


    Base URL: `https://api.erlcrussia.xyz/v1`
  version: 1.0.0
servers:
  - url: https://api.erlcrussia.xyz/v1
    description: Production
security: []
tags:
  - name: ERLC
    description: ER:LC game server data and management.
paths:
  /erlc/server/staff:
    get:
      tags:
        - ERLC
      summary: Server Staff List
      description: |
        **ENDPOINT DISABLED** - Returns error 500.

        Returns list of ER:LC server staff members.
      responses:
        '500':
          description: Endpoint disabled/deprecated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                code: 5018
                message: Endpoint устарел. Используйте более новую версию API.
      deprecated: true
      security:
        - MRPAPIKey: []
components:
  schemas:
    ErrorResponse:
      type: object
      description: Standard error format.
      required:
        - code
        - message
      properties:
        code:
          type: integer
          description: API error code.
          example: 5007
        message:
          type: string
          description: Error message/identifier.
          example: missing_token
  securitySchemes:
    MRPAPIKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: |
        Standard API key for accessing ER:LC endpoints.

        Passed in `Authorization: Bearer <key>` header.

        REQUIRED FOR ALL ER:LC ENDPOINTS.

````