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

# Get discharge

> Retrieves a specific discharge record for a guild

### Required Scopes

```
guild:read
```

### Rate Limit

10 requests per second


## OpenAPI

````yaml GET /guild/discharges/{dischargeId}
openapi: 3.1.0
info:
  title: Multex Discord Bot API
  version: 1.0.0
  description: API documentation for Multex Discord bot
servers:
  - url: https://api.multex.tech
    description: Development server
security: []
paths:
  /guild/discharges/{dischargeId}:
    get:
      tags:
        - Guild Management
      summary: Get Single Discharge
      description: Retrieves a specific discharge record for a guild
      parameters:
        - name: dischargeId
          in: path
          required: true
          schema:
            type: string
          description: Discharge record ID
      responses:
        '200':
          description: Discharge record retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      guildId:
                        type: string
                      discordId:
                        type: string
                      robloxId:
                        type: string
                      name:
                        type: string
                      reason:
                        type: string
                      date:
                        type: string
                      type:
                        type: string
                      from:
                        type: string
                      signed:
                        type: string
        '400':
          description: Bad request - missing required parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Bad request - missing required parameters
        '401':
          description: Unauthorized - invalid API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Unauthorized - invalid API key
        '404':
          description: Discharge not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Discharge not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for accessing protected guild endpoints

````