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

# PATCH /servers/{guild_id}/config/logging/settings



## OpenAPI

````yaml /api-reference/openapi.json patch /servers/{guild_id}/config/logging/settings
openapi: 3.1.0
info:
  title: Quark API
  version: 1.0.0
servers:
  - url: https://quark.bot/api
security:
  - bearerAuth: []
paths:
  /servers/{guild_id}/config/logging/settings:
    patch:
      tags:
        - Config
      summary: PATCH /servers/{guild_id}/config/logging/settings
      parameters:
        - name: guild_id
          in: path
          required: true
          schema:
            type: string
          description: The guild_id.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                spoilers:
                  type: boolean
                  description: Whether to log messages with spoilers hidden.
                pluralkit_integration:
                  type: boolean
                  description: Whether PluralKit integration is enabled.
                ignore_bot_targets:
                  type: boolean
                  description: Whether to ignore actions that target bots.
                ignore_bot_executors:
                  type: boolean
                  description: Whether to ignore actions executed by bots.
                format_type:
                  type: integer
                  description: The log formatting type. Requires Pro or Pro Lite.
                buttons:
                  type: array
                  items:
                    type: string
                  description: The list of buttons attached to logs.
                active_ignore:
                  type: boolean
                  description: Whether active ignore is enabled.
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````