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

# Set member out-of-office

> Creates or updates the out-of-office period for the authenticated member. The path `id` must match the member that owns the API key.



## OpenAPI

````yaml /openapi-2025-01-29.alpha.json put /members/{id}/out-of-office
openapi: 3.0.0
info:
  title: Tomorro API
  description: >
    The Tomorro Public API enables you to programmatically manage contracts,
    members, and counterparties. Build powerful integrations that automate your
    contract management workflows.


    ## API Version: 2025-01-29.alpha


    This documentation is for API version `2025-01-29.alpha`.


    ### Using this version

    ```

    curl -X GET https://api.tomorro.com/members \
      -H "x-api-key: YOUR_API_KEY" \
      -H "tomorro-version: 2025-01-29.alpha"
    ```
  version: 2025-01-29.alpha
  contact: {}
servers:
  - url: https://api.tomorro.com/v2
    description: Production
  - url: https://api.demo.tomorro.com/v2
    description: Demo
  - url: http://localhost:3015
    description: Local Development
security: []
tags: []
paths:
  /members/{id}/out-of-office:
    put:
      tags:
        - Members
      summary: Set member out-of-office
      description: >-
        Creates or updates the out-of-office period for the authenticated
        member. The path `id` must match the member that owns the API key.
      operationId: MemberController_setMemberOutOfOffice
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier (UUID) of the authenticated member
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MemberOutOfOfficeSetDto'
      responses:
        '200':
          description: Updated out-of-office status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberOutOfOfficeResponseDto'
        '400':
          description: Invalid request body
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions
        '429':
          description: Too Many Requests - Rate limit exceeded
      security:
        - X-API-KEY: []
components:
  schemas:
    MemberOutOfOfficeSetDto:
      type: object
      properties:
        startDate:
          type: string
          description: First day of the out-of-office period (calendar date YYYY-MM-DD).
          example: '2026-08-05'
        endDate:
          type: string
          description: >-
            Last day of the out-of-office period, inclusive (calendar date
            YYYY-MM-DD). Omit for open-ended.
          example: '2026-09-03'
          nullable: true
      required:
        - startDate
      additionalProperties: false
    MemberOutOfOfficeResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Computed out-of-office status for the current member.
          enum:
            - none
            - planned
            - active
          example: planned
        startDate:
          type: string
          description: >-
            First day of the out-of-office period (YYYY-MM-DD), or null when
            none is configured.
          example: '2026-08-05'
          nullable: true
        endDate:
          type: string
          description: >-
            Last day of the out-of-office period inclusive (YYYY-MM-DD), or null
            when open-ended/none.
          example: '2026-09-03'
          nullable: true
      required:
        - status
        - startDate
        - endDate
  securitySchemes:
    X-API-KEY:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Get your key at
        https://app.tomorro.com/settings/integrations?integration=api-key

````