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

# Reset a setting

> Forget this place's own value, so the one above it (or the server's) applies again.

Any caller; the scope needed is checked on what it acts on.



## OpenAPI

````yaml /openapi.json delete /api/v1/settings/{key}
openapi: 3.1.0
info:
  title: artbucket
  version: '1'
  description: >-
    Agent-first asset management. The web UI is built on this API and nothing
    else, beside signing in at /api/auth. Send `Authorization: Bearer <key>`: a
    key works in one workspace with one scope, and scopes are a ladder: read <
    propose < write < admin. People signed in to the app carry a session cookie
    instead, and their scope is what their grants add up to: on the
    organization, the workspace, or single collections and assets. A scope shown
    as needed on the workspace is also enough on the one collection or asset a
    route acts on. Agents (MCP at POST /api/v1/mcp) usually get `propose`: what
    they add waits for a human.
servers:
  - url: http://localhost:3000
security:
  - bearer: []
  - session: []
  - {}
paths:
  /api/v1/settings/{key}:
    parameters:
      - name: key
        in: path
        required: true
        description: e.g. email
        schema:
          type: string
    delete:
      summary: Reset a setting
      description: >-
        Forget this place's own value, so the one above it (or the server's)
        applies again.


        Any caller; the scope needed is checked on what it acts on.
      parameters:
        - name: context
          in: query
          schema:
            type: string
            enum:
              - organization
              - workspace
            default: organization
          description: Where
      responses:
        '200':
          description: The setting, as it now applies
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      key:
                        type: string
                        enum:
                          - email
                          - branding
                      label:
                        type: string
                      context:
                        type: string
                        enum:
                          - organization
                          - workspace
                      value:
                        type: object
                        propertyNames:
                          type: string
                        additionalProperties: {}
                        description: As it applies here; secret properties are null
                      secrets:
                        type: object
                        propertyNames:
                          type: string
                        additionalProperties:
                          type: boolean
                        description: Whether each secret property is set
                      source:
                        type: string
                        enum:
                          - workspace
                          - organization
                          - environment
                          - default
                        description: The narrowest place any of it comes from
                      sources:
                        type: object
                        propertyNames:
                          type: string
                        additionalProperties:
                          type: string
                          enum:
                            - workspace
                            - organization
                            - environment
                            - default
                        description: Where each property comes from
                      own:
                        type: boolean
                        description: 'Set here: resetting it lets what is above apply'
                    required:
                      - key
                      - label
                      - context
                      - value
                      - secrets
                      - source
                      - sources
                      - own
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
        default:
          description: An error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      detail: {}
                    required:
                      - code
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: 'An API key: ab_...'
    session:
      type: apiKey
      in: cookie
      name: better-auth.session_token
      description: Signed in, at /api/auth

````