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

# Update Tool

> Patch fields on an organisation tool draft. Curated tools are read-only and return 403. Typed (non-code) tools reject code_src, declared_secrets, and dependencies. The tool_type is immutable, and a name already used by another tool returns 409.



## OpenAPI

````yaml /api-reference/agents/shared-resources.oas.yaml patch /v1/agents/tools/{tool_id}
openapi: 3.1.0
info:
  title: SLNG Agent Resources API
  version: 1.0.0
  description: >-
    Public control-plane API for agent resources: tools, MCP servers, Vault
    secrets and variables, and client models.
servers:
  - url: https://api.agents.slng.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Tools
    description: Create, test, publish, version, and attach agent tools.
    x-page-icon: wrench
  - name: MCP servers
    description: Configure MCP servers and refresh their live capabilities.
    x-page-icon: plug
  - name: Vault
    description: >-
      Store organisation secrets and readable variables without exposing secret
      values.
    x-page-icon: key
  - name: Client models
    description: Manage bring-your-own LLM provider credentials.
    x-page-icon: brain
paths:
  /v1/agents/tools/{tool_id}:
    patch:
      tags:
        - Tools
      summary: Update Tool
      description: >-
        Patch fields on an organisation tool draft. Curated tools are read-only
        and return 403. Typed (non-code) tools reject code_src,
        declared_secrets, and dependencies. The tool_type is immutable, and a
        name already used by another tool returns 409.
      operationId: updateTool
      parameters:
        - name: tool_id
          in: path
          required: true
          description: >-
            The tool UUID. Curated tools are visible but read-only, and a tool
            owned by another organisation returns 404.
          schema:
            type: string
            format: uuid
            title: Tool Id
      requestBody:
        required: true
        description: The fields to change on the tool draft.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ToolUpdate'
            examples:
              Rename:
                summary: Rename a tool draft
                value:
                  name: lookup_customer_v2
              Update description:
                summary: Update the description only
                value:
                  description: Look up a customer by id and region
              Set argument defaults:
                summary: Set argument defaults
                value:
                  argument_defaults:
                    region: '{{$DEFAULT_REGION}}'
      responses:
        '200':
          description: The updated tool.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tool'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '409':
          $ref: '#/components/responses/ConflictError'
        '422':
          $ref: '#/components/responses/ValidationError'
        '429':
          $ref: '#/components/responses/RateLimitError'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    ToolUpdate:
      properties:
        name:
          anyOf:
            - type: string
              maxLength: 200
              minLength: 1
              pattern: ^[A-Za-z0-9_-]+$
            - type: 'null'
          title: Name
        config:
          anyOf:
            - oneOf:
                - $ref: '#/components/schemas/CodeConfig'
                - $ref: '#/components/schemas/ApiRequestConfig'
                - $ref: '#/components/schemas/EndCallConfig'
                - $ref: '#/components/schemas/VoicemailDetectionConfig'
                - $ref: '#/components/schemas/TransferCallConfig'
                - $ref: '#/components/schemas/SendSmsConfig'
                - $ref: '#/components/schemas/CurrentDatetimeConfig'
                - $ref: '#/components/schemas/UserPhoneNumberConfig'
              discriminator:
                propertyName: type
                mapping:
                  api_request:
                    $ref: '#/components/schemas/ApiRequestConfig'
                  code:
                    $ref: '#/components/schemas/CodeConfig'
                  current_datetime:
                    $ref: '#/components/schemas/CurrentDatetimeConfig'
                  end_call:
                    $ref: '#/components/schemas/EndCallConfig'
                  send_sms:
                    $ref: '#/components/schemas/SendSmsConfig'
                  transfer_call:
                    $ref: '#/components/schemas/TransferCallConfig'
                  user_phone_number:
                    $ref: '#/components/schemas/UserPhoneNumberConfig'
                  voicemail_detection:
                    $ref: '#/components/schemas/VoicemailDetectionConfig'
            - type: 'null'
          title: Config
        description:
          anyOf:
            - type: string
              maxLength: 2000
            - type: 'null'
          title: Description
        code_src:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            Replacement Python source for a Custom Code tool. Rejected for typed
            tools. Custom Code runs sandboxed with no internet access.
          title: Code Src
        declared_secrets:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          description: >-
            Replacement list of Vault secret names the code may read. Rejected
            for typed tools.
          title: Declared Secrets
        dependencies:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          description: >-
            Replacement pinned Python package dependencies for the code.
            Rejected for typed tools.
          title: Dependencies
        argument_defaults:
          anyOf:
            - type: object
              additionalProperties: true
            - type: 'null'
          description: >-
            Replacement default values, keyed by argument name. Each value is a
            literal (string, number, or boolean) or a Vault variable reference
            using the {{$NAME}} syntax.
          title: Argument Defaults
      additionalProperties: false
      type: object
      title: ToolUpdate
      description: >-
        Fields to patch on an organisation tool draft. Omitted fields are left
        unchanged.
      example:
        description: Look up a customer by id and region
        argument_defaults:
          region: '{{$DEFAULT_REGION}}'
    Tool:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        organisation_id:
          type: string
          format: uuid
          title: Organisation Id
        name:
          type: string
          title: Name
        tool_type:
          type: string
          enum:
            - code
            - api_request
            - end_call
            - voicemail_detection
            - transfer_call
            - send_sms
            - current_datetime
            - user_phone_number
          title: Tool Type
          default: code
        config:
          anyOf:
            - oneOf:
                - $ref: '#/components/schemas/CodeConfig'
                - $ref: '#/components/schemas/ApiRequestConfig'
                - $ref: '#/components/schemas/EndCallConfig'
                - $ref: '#/components/schemas/VoicemailDetectionConfig'
                - $ref: '#/components/schemas/TransferCallConfig'
                - $ref: '#/components/schemas/SendSmsConfig'
                - $ref: '#/components/schemas/CurrentDatetimeConfig'
                - $ref: '#/components/schemas/UserPhoneNumberConfig'
              discriminator:
                propertyName: type
                mapping:
                  api_request:
                    $ref: '#/components/schemas/ApiRequestConfig'
                  code:
                    $ref: '#/components/schemas/CodeConfig'
                  current_datetime:
                    $ref: '#/components/schemas/CurrentDatetimeConfig'
                  end_call:
                    $ref: '#/components/schemas/EndCallConfig'
                  send_sms:
                    $ref: '#/components/schemas/SendSmsConfig'
                  transfer_call:
                    $ref: '#/components/schemas/TransferCallConfig'
                  user_phone_number:
                    $ref: '#/components/schemas/UserPhoneNumberConfig'
                  voicemail_detection:
                    $ref: '#/components/schemas/VoicemailDetectionConfig'
            - type: 'null'
          title: Config
        description:
          type: string
          title: Description
        declared_secrets:
          items:
            type: string
          type: array
          description: Vault secret names this tool is allowed to read at runtime.
          title: Declared Secrets
        dependencies:
          items:
            type: string
          type: array
          description: Pinned Python package dependencies installed for this tool.
          title: Dependencies
        argument_defaults:
          additionalProperties: true
          type: object
          description: >-
            Current default values for the tool arguments, keyed by argument
            name. Each value is a literal (string, number, or boolean) or a
            Vault variable reference using the {{$NAME}} syntax. Applied when a
            caller does not supply that argument.
          title: Argument Defaults
        code_src:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            Current Python source for the tool, populated for Custom Code tools
            only. Custom Code runs sandboxed with no internet access.
          title: Code Src
        last_run_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Run Status
        source:
          type: string
          enum:
            - curated
            - org
          description: >-
            `curated` tools are built in and maintained by SLNG; `org` tools
            were created by your organisation.
          title: Source
        latest_version:
          anyOf:
            - type: integer
            - type: 'null'
          title: Latest Version
        content_hash:
          type: string
          title: Content Hash
        is_current_hash_green:
          type: boolean
          title: Is Current Hash Green
        is_current_version:
          type: boolean
          title: Is Current Version
        schema_stale:
          type: boolean
          title: Schema Stale
        arg_schema:
          anyOf:
            - type: object
              additionalProperties: true
            - type: 'null'
          title: Arg Schema
        gate_status:
          $ref: '#/components/schemas/GateStatus'
      type: object
      required:
        - id
        - organisation_id
        - name
        - description
        - declared_secrets
        - dependencies
        - source
        - content_hash
        - is_current_hash_green
        - is_current_version
        - schema_stale
        - gate_status
      title: Tool
      description: >-
        A tool and its current draft state, including config, publish gates, and
        version info.
      example:
        id: 7b2a1c34-5d6e-4f70-8a90-1b2c3d4e5f60
        organisation_id: 0a1b2c3d-4e5f-6071-8293-a4b5c6d7e8f9
        name: lookup_customer
        tool_type: api_request
        config:
          type: api_request
          url: https://api.example.com/lookup
          http_method: POST
        description: Look up a customer by id
        declared_secrets: []
        dependencies: []
        argument_defaults: {}
        code_src: null
        last_run_status: succeeded
        source: org
        latest_version: 3
        content_hash: 3f1ab2c4d5e6f708
        is_current_hash_green: true
        is_current_version: true
        schema_stale: false
        gate_status:
          static:
            config_valid:
              passed: true
            secrets_exist:
              passed: true
            name_unique:
              passed: true
          green_run:
            passed: true
    CodeConfig:
      properties:
        type:
          type: string
          const: code
          title: Type
          default: code
        import_probes:
          items:
            type: string
          type: array
          maxItems: 100
          title: Import Probes
        egress:
          additionalProperties: true
          type: object
          title: Egress
          description: Historical compatibility only. Custom code has no internet access.
      additionalProperties: false
      type: object
      title: CodeConfig
      description: >-
        Configuration for a Custom Code tool. Custom code runs sandboxed with no
        internet access.
    ApiRequestConfig:
      properties:
        type:
          type: string
          const: api_request
          title: Type
          default: api_request
        url:
          type: string
          maxLength: 2000
          title: Url
          default: ''
        http_method:
          type: string
          enum:
            - GET
            - POST
            - PUT
            - PATCH
            - DELETE
          title: Http Method
          default: POST
        auth:
          $ref: '#/components/schemas/ApiRequestAuth'
        headers:
          items:
            $ref: '#/components/schemas/ApiRequestHeader'
          type: array
          maxItems: 64
          description: >-
            Extra request headers sent to the MCP server; each is a literal
            value or resolved from a Vault secret.
          title: Headers
        parameters:
          additionalProperties: true
          type: object
          title: Parameters
        strict:
          type: boolean
          title: Strict
          default: true
        webhook_format:
          type: string
          enum:
            - envelope
            - raw
          description: >-
            How the API-request tool formats its outgoing request body
            (`envelope` or `raw`). Defaults to `envelope`.
          title: Webhook Format
          default: envelope
        timeout_seconds:
          type: number
          maximum: 60
          minimum: 1
          title: Timeout Seconds
          default: 10
        wait_for_response:
          type: boolean
          title: Wait For Response
          default: true
        response:
          $ref: '#/components/schemas/ApiRequestResponsePolicy'
      additionalProperties: false
      type: object
      title: ApiRequestConfig
      description: >-
        Request settings for an API Request tool, covering URL, method, auth,
        headers, and response handling.
    EndCallConfig:
      properties:
        type:
          type: string
          const: end_call
          title: Type
          default: end_call
        goodbye_message:
          anyOf:
            - $ref: '#/components/schemas/TemplateStringExpression'
            - type: 'null'
        wait_for_completion:
          type: boolean
          title: Wait For Completion
          default: true
      additionalProperties: false
      type: object
      title: EndCallConfig
      description: >-
        Configuration for an End Call tool, including an optional goodbye
        message.
    VoicemailDetectionConfig:
      properties:
        type:
          type: string
          const: voicemail_detection
          title: Type
          default: voicemail_detection
        prompt:
          anyOf:
            - $ref: '#/components/schemas/TemplateStringExpression'
            - type: 'null'
      additionalProperties: false
      type: object
      title: VoicemailDetectionConfig
      description: Configuration for a Voicemail Detection tool.
    TransferCallConfig:
      properties:
        type:
          type: string
          const: transfer_call
          title: Type
          default: transfer_call
        destination:
          anyOf:
            - type: string
            - type: boolean
            - type: integer
            - type: number
            - type: 'null'
          title: Destination
      additionalProperties: false
      type: object
      title: TransferCallConfig
      description: >-
        Configuration for a Transfer Call tool, including the destination
        number.
    SendSmsConfig:
      properties:
        type:
          type: string
          const: send_sms
          title: Type
          default: send_sms
        recipient:
          anyOf:
            - type: string
            - type: boolean
            - type: integer
            - type: number
            - type: 'null'
          title: Recipient
        body:
          anyOf:
            - $ref: '#/components/schemas/TemplateStringExpression'
            - type: 'null'
        from_number:
          anyOf:
            - type: string
            - type: boolean
            - type: integer
            - type: number
            - type: 'null'
          title: From Number
      additionalProperties: false
      type: object
      title: SendSmsConfig
      description: >-
        Managed SMS capability; recipient/body/from-number are attachment
        values.
    CurrentDatetimeConfig:
      properties:
        type:
          type: string
          const: current_datetime
          title: Type
          default: current_datetime
        timezone:
          type: string
          title: Timezone
          default: UTC
        prompt:
          anyOf:
            - $ref: '#/components/schemas/TemplateStringExpression'
            - type: 'null'
      additionalProperties: false
      type: object
      title: CurrentDatetimeConfig
      description: >-
        Configuration for a Current Date and Time tool, including the IANA
        timezone.
    UserPhoneNumberConfig:
      properties:
        type:
          type: string
          const: user_phone_number
          title: Type
          default: user_phone_number
        prompt:
          anyOf:
            - $ref: '#/components/schemas/TemplateStringExpression'
            - type: 'null'
      additionalProperties: false
      type: object
      title: UserPhoneNumberConfig
      description: Configuration for a User Phone Number tool.
    GateStatus:
      properties:
        static:
          anyOf:
            - $ref: '#/components/schemas/StaticGate'
            - $ref: '#/components/schemas/TypedStaticGate'
            - type: 'null'
          title: Static
        green_run:
          anyOf:
            - $ref: '#/components/schemas/GreenRun'
            - type: 'null'
        config_valid:
          anyOf:
            - $ref: '#/components/schemas/CheckResult'
            - type: 'null'
        code_environment:
          anyOf:
            - $ref: '#/components/schemas/CheckResult'
            - type: 'null'
        content_current:
          anyOf:
            - $ref: '#/components/schemas/CheckResult'
            - type: 'null'
      type: object
      title: GateStatus
      description: |-
        Gate set is selected by tool_type (V2): data → static + green_run;
        code also reports config_valid; ctx-bound → config_valid ONLY.
    ApiErrorResponse:
      type: object
      description: Standard error envelope returned for failed requests.
      required:
        - detail
        - error
      properties:
        detail:
          type: string
          description: Short human-readable summary of the error.
        error:
          $ref: '#/components/schemas/ApiErrorDetail'
      example:
        detail: A shared secret or variable named 'STRIPE_KEY' already exists
        error:
          code: RESOURCE_CONFLICT
          message: A shared secret or variable named 'STRIPE_KEY' already exists
          request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
    ApiRequestAuth:
      properties:
        type:
          type: string
          enum:
            - none
            - bearer
            - hmac
          description: >-
            Authentication for the outgoing API request: `none`, `bearer` for a
            bearer token, or `hmac` for HMAC request signing.
          title: Type
          default: none
        secret_name:
          anyOf:
            - type: string
              maxLength: 200
              minLength: 1
            - type: 'null'
          title: Secret Name
      additionalProperties: false
      type: object
      title: API request authentication
      description: How the outgoing API request is authenticated.
    ApiRequestHeader:
      properties:
        name:
          type: string
          maxLength: 200
          minLength: 1
          title: Name
        value:
          anyOf:
            - type: string
            - type: boolean
            - type: integer
            - type: number
            - type: 'null'
          title: Value
        secret_name:
          anyOf:
            - type: string
              maxLength: 200
              minLength: 1
            - type: 'null'
          title: Secret Name
      additionalProperties: false
      type: object
      required:
        - name
      title: API request header
      description: A header sent with the outgoing API request.
    ApiRequestResponsePolicy:
      properties:
        show_to_llm:
          type: boolean
          title: Show To Llm
          default: true
        instructions:
          anyOf:
            - type: string
              maxLength: 2000
            - type: 'null'
          title: Instructions
      additionalProperties: false
      type: object
      title: API response handling
      description: How the upstream API response is processed and returned to the agent.
    TemplateStringExpression:
      properties:
        segments:
          items:
            oneOf:
              - $ref: '#/components/schemas/TemplateStringLiteralSegment'
              - $ref: '#/components/schemas/TemplateStringValueSegment'
            discriminator:
              propertyName: type
              mapping:
                expression:
                  $ref: '#/components/schemas/TemplateStringValueSegment'
                literal:
                  $ref: '#/components/schemas/TemplateStringLiteralSegment'
          type: array
          maxItems: 64
          minItems: 1
          title: Segments
      additionalProperties: false
      type: object
      required:
        - segments
      title: TemplateStringExpression
      description: A string built from literal and expression segments resolved at runtime.
    StaticGate:
      properties:
        parse:
          $ref: '#/components/schemas/CheckResult'
        models:
          $ref: '#/components/schemas/CheckResult'
        schema:
          $ref: '#/components/schemas/CheckResult'
        secrets_exist:
          $ref: '#/components/schemas/CheckResult'
        name_unique:
          $ref: '#/components/schemas/CheckResult'
      type: object
      required:
        - parse
        - models
        - schema
        - secrets_exist
        - name_unique
      title: Static gate
      description: A publish readiness gate evaluated from static analysis.
    TypedStaticGate:
      properties:
        config_valid:
          $ref: '#/components/schemas/CheckResult'
        secrets_exist:
          $ref: '#/components/schemas/CheckResult'
        name_unique:
          $ref: '#/components/schemas/CheckResult'
      type: object
      required:
        - config_valid
        - secrets_exist
        - name_unique
      title: Typed static gate
      description: A typed publish readiness gate evaluated from static analysis.
    GreenRun:
      properties:
        passed:
          type: boolean
          title: Passed
        proven_hash:
          anyOf:
            - type: string
            - type: 'null'
          title: Proven Hash
      type: object
      required:
        - passed
      title: GreenRun
      description: >-
        Result of the green-run gate, with the hash proven by a successful test
        run.
    CheckResult:
      properties:
        passed:
          type: boolean
          title: Passed
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      required:
        - passed
      title: CheckResult
      description: >-
        Result of one publish readiness check, with a pass flag and optional
        detail.
    ApiErrorDetail:
      type: object
      description: Structured error detail carried inside an error response.
      required:
        - code
        - message
      properties:
        code:
          type: string
          description: Stable machine-readable error code.
          example: RESOURCE_CONFLICT
        message:
          type: string
          description: Human-readable explanation of the error.
          example: A shared secret or variable named STRIPE_KEY already exists
        request_id:
          type:
            - string
            - 'null'
          description: Identifier for this request, useful when contacting support.
          example: req_01H8XY7Z9QEXAMPLE
        retryable:
          type: boolean
          description: Whether retrying the same request may succeed.
          example: false
        fields:
          type: array
          description: >-
            Per-field validation problems, when the error relates to specific
            request fields.
          items:
            type: object
            additionalProperties: true
          example: []
      example:
        code: PUBLIC_SHARED_RESOURCES_DISABLED
        message: Public shared resources are disabled for this organisation
        request_id: req_01H8XY7Z9QEXAMPLE
        retryable: false
    TemplateStringLiteralSegment:
      properties:
        type:
          type: string
          const: literal
          title: Type
        value:
          type: string
          maxLength: 2000
          title: Value
      additionalProperties: false
      type: object
      required:
        - type
        - value
      title: Literal text
      description: A fixed span of text in the template.
    TemplateStringValueSegment:
      properties:
        type:
          type: string
          const: expression
          title: Type
        expression:
          type: string
          title: Expression
      additionalProperties: false
      type: object
      required:
        - type
        - expression
      title: Expression
      description: An expression span resolved at runtime to a value.
  responses:
    UnauthorizedError:
      description: The API key is missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorResponse'
          example:
            detail: Invalid API key
            error:
              code: AUTH_REQUIRED
              message: Invalid API key
              request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
              retryable: false
    ForbiddenError:
      description: >-
        The caller lacks permission, or the public shared-resource API is
        disabled for the organisation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorResponse'
          examples:
            permission_denied:
              summary: Owner or admin access required
              value:
                detail: Organisation owner or admin access required
                error:
                  code: PERMISSION_DENIED
                  message: Organisation owner or admin access required
                  request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
                  retryable: false
            api_disabled:
              summary: Public shared-resource API disabled for the organisation
              value:
                detail: >-
                  Public shared-resource API access is disabled for this
                  organisation
                error:
                  code: PUBLIC_SHARED_RESOURCES_DISABLED
                  message: >-
                    Public shared-resource API access is disabled for this
                    organisation
                  request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
                  retryable: false
    NotFoundError:
      description: The requested resource does not exist for this organisation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorResponse'
          example:
            detail: The requested resource was not found.
            error:
              code: RESOURCE_NOT_FOUND
              message: The requested resource was not found.
              request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
    ConflictError:
      description: The request conflicts with the current state of the resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorResponse'
          example:
            detail: The request conflicts with the current state of the resource.
            error:
              code: RESOURCE_CONFLICT
              message: The request conflicts with the current state of the resource.
              request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
    ValidationError:
      description: Request validation failed. See error.fields for the offending fields.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorResponse'
          example:
            detail: >-
              Request validation failed. Fix the highlighted fields and try
              again.
            error:
              code: VALIDATION_FAILED
              message: >-
                Request validation failed. Fix the highlighted fields and try
                again.
              request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
              retryable: false
              fields:
                - path: name
                  message: >-
                    Name must be SCREAMING_SNAKE_CASE: start with a letter, then
                    letters, digits, or underscores (e.g. STRIPE_API_KEY)
    RateLimitError:
      description: >-
        The organisation exceeded its request rate limit. Retry after the window
        resets.
      headers:
        Retry-After:
          schema:
            type: integer
        X-RateLimit-Limit:
          schema:
            type: integer
        X-RateLimit-Remaining:
          schema:
            type: integer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorResponse'
          example:
            detail: Rate limit exceeded. Maximum 60 requests per 60 seconds.
            error:
              code: INTERNAL_ERROR
              message: Rate limit exceeded. Maximum 60 requests per 60 seconds.
              request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
              retryable: false
    InternalServerError:
      description: The request failed unexpectedly. Secret values are never exposed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorResponse'
          example:
            detail: An unexpected error occurred.
            error:
              code: INTERNAL_ERROR
              message: An unexpected error occurred.
              request_id: 018f9b2c-7e4a-7c3d-9a1b-2c3d4e5f6a7b
              retryable: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: SLNG API key
      description: Your SLNG consumer API key.

````