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

# Propose

> Creates one timecheck in the "proposal" state, or modifies this state for an existing timecheck.



## OpenAPI

````yaml preview post /api/timeclock/timechecks.propose
openapi: 3.1.0
info:
  title: tipee
  version: preview
servers: []
security:
  - basicAuth: []
tags:
  - name: Activity
    description: Activity
  - name: Balances
    description: Balances
  - name: Directory
    description: Directory
  - name: Schedule
    description: Schedule
  - name: Timeclock
    description: Timeclock
paths:
  /api/timeclock/timechecks.propose:
    post:
      tags:
        - Timeclock
      summary: Propose
      description: >-
        Creates one timecheck in the "proposal" state, or modifies this state
        for an existing timecheck.
      operationId: post_app_ui_api_timeclock_timeclockcommand_proposetimecheck
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProposeTimecheckCommand'
      responses:
        '201':
          description: Timecheck proposal created
          content:
            application/json:
              schema:
                properties:
                  id:
                    $ref: '#/components/schemas/Snowflake'
                type: object
        '204':
          description: Timecheck proposal updated
components:
  schemas:
    ProposeTimecheckCommand:
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        resource_id:
          $ref: '#/components/schemas/Snowflake'
        in:
          oneOf:
            - $ref: '#/components/schemas/LocalDateTime'
            - type: 'null'
        out:
          oneOf:
            - $ref: '#/components/schemas/LocalDateTime'
            - type: 'null'
        remark:
          type:
            - string
            - 'null'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    LocalDateTime:
      type: string
      format: local-date-time
      example: '2019-11-11T12:34:56'

````