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

# Set/clear the org-level current-time context configuration



## OpenAPI

````yaml /api-reference/openapi.json put /v1/assistants/current-time
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/assistants/current-time:
    put:
      tags:
        - assistants
      summary: Set/clear the org-level current-time context configuration
      operationId: setAssistantOrgCurrentTime
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CurrentTimeSettingsUpdate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CurrentTimeConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    CurrentTimeSettingsUpdate:
      properties:
        enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Enabled
        timezone:
          anyOf:
            - type: string
            - type: 'null'
          title: Timezone
      additionalProperties: false
      type: object
      title: CurrentTimeSettingsUpdate
      description: >-
        Full replacement for one current-time configuration tier.


        Omitted/null fields inherit. Sending ``{}`` therefore clears both
        overrides at this tier.
    CurrentTimeConfigResponse:
      properties:
        enabled:
          type: boolean
          title: Enabled
        timezone:
          type: string
          title: Timezone
        enabled_source:
          type: string
          enum:
            - revision
            - organization
            - default
          title: Enabled Source
        timezone_source:
          type: string
          enum:
            - revision
            - organization
            - default
          title: Timezone Source
        organization:
          $ref: '#/components/schemas/CurrentTimeSettings'
        revision:
          anyOf:
            - $ref: '#/components/schemas/CurrentTimeSettings'
            - type: 'null'
      type: object
      required:
        - enabled
        - timezone
        - enabled_source
        - timezone_source
      title: CurrentTimeConfigResponse
      description: Effective clock settings, per-field provenance, and raw tier overrides.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CurrentTimeSettings:
      properties:
        enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Enabled
        timezone:
          anyOf:
            - type: string
            - type: 'null'
          title: Timezone
      additionalProperties: false
      type: object
      title: CurrentTimeSettings
      description: >-
        One tier's optional current-time overrides.


        ``None`` means inherit for that field. An empty object therefore clears
        the tier and inherits

        both values. The API stores only non-null fields.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````