Reclaim.ai account-time-schemes API

The account-time-schemes API from Reclaim.ai — 2 operation(s) for account-time-schemes.

Operations 3

GET /api/account-time-schemes #
POST /api/account-time-schemes #
PATCH /api/account-time-schemes/{accountTimeSchemeId} #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/reclaim-ai-account-time-schemes-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

reclaim-ai-account-time-schemes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reclaim Account Time Schemes API
  description: Reclaim's awesome API
  contact:
    name: Reclaim.ai Inc.
    url: http://reclaim.ai
    email: info@reclaim.ai
  license:
    name: Reclaim 9.9
    url: http://reclaim.ai
  version: '0.1'
servers:
- url: https://api.app.reclaim.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: account-time-schemes
paths:
  /api/account-time-schemes:
    get:
      tags:
      - account-time-schemes
      operationId: fetchAccountTimeSchemes
      responses:
        '200':
          description: fetchAccountTimeSchemes 200 response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AccountTimeSchemeView'
      security:
      - Authorization: []
    post:
      tags:
      - account-time-schemes
      operationId: createAccountTimeScheme
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccountTimeSchemeCreateRequest'
        required: true
      responses:
        '200':
          description: createAccountTimeScheme 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountTimeSchemeView'
      security:
      - Authorization: []
  /api/account-time-schemes/{accountTimeSchemeId}:
    patch:
      tags:
      - account-time-schemes
      operationId: patchAccountTimeScheme
      parameters:
      - name: accountTimeSchemeId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccountTimeSchemePatchRequest'
        required: true
      responses:
        '200':
          description: patchAccountTimeScheme 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountTimeSchemeView'
      security:
      - Authorization: []
components:
  schemas:
    LocalTimeInterval:
      required:
      - end
      - start
      type: object
      properties:
        start:
          type: string
          format: partial-time
        end:
          type: string
          format: partial-time
        duration:
          type: string
    DayOfWeek:
      type: string
      enum:
      - MONDAY
      - TUESDAY
      - WEDNESDAY
      - THURSDAY
      - FRIDAY
      - SATURDAY
      - SUNDAY
    EntityType:
      type: string
      enum:
      - ACCOUNT_INVITATION
      - ACCOUNT_TIME_SCHEMES
      - WEBHOOKS_CONFIG
      - WEBHOOKS_ASSOCIATION
      - SMART_HABIT_TEMPLATES
      - TEAM
    AccountTimeSchemePatchRequest:
      type: object
      properties:
        title:
          type: string
        description:
          type: string
        policy:
          $ref: '#/components/schemas/TimePolicy'
    TimePolicy:
      required:
      - dayHours
      type: object
      properties:
        startOfWeek:
          $ref: '#/components/schemas/DayOfWeek'
        endOfWeek:
          $ref: '#/components/schemas/DayOfWeek'
        dayHours:
          properties:
            MONDAY:
              $ref: '#/components/schemas/DayHours'
            TUESDAY:
              $ref: '#/components/schemas/DayHours'
            WEDNESDAY:
              $ref: '#/components/schemas/DayHours'
            THURSDAY:
              $ref: '#/components/schemas/DayHours'
            FRIDAY:
              $ref: '#/components/schemas/DayHours'
            SATURDAY:
              $ref: '#/components/schemas/DayHours'
            SUNDAY:
              $ref: '#/components/schemas/DayHours'
    EntityTypeAccessView:
      required:
      - permissions
      type: object
      properties:
        permissions:
          $ref: '#/components/schemas/EntityTypePermissionsView'
    TimePolicyType:
      type: string
      enum:
      - WORK
      - PERSONAL
      - MEETING
      - ONE_OFF
      - INHERITED
      - CUSTOM
    AccountTimeSchemeView:
      required:
      - accountId
      - entityType
      - id
      - policy
      - policyType
      - title
      type: object
      properties:
        id:
          type: string
        accountId:
          type: integer
          format: int64
        policyType:
          $ref: '#/components/schemas/TimePolicyType'
        policy:
          $ref: '#/components/schemas/TimePolicy'
        title:
          type: string
        description:
          type:
          - string
          - 'null'
        entityType:
          $ref: '#/components/schemas/EntityTypeView'
    EntityTypePermissionsView:
      required:
      - permissions
      - type
      type: object
      properties:
        type:
          $ref: '#/components/schemas/EntityType'
        permissions:
          $ref: '#/components/schemas/EntityTypePermissions'
    DayHours:
      required:
      - intervals
      type: object
      properties:
        intervals:
          type: array
          items:
            $ref: '#/components/schemas/LocalTimeInterval'
        startOfDay:
          type:
          - string
          - 'null'
          format: partial-time
        endOfDay:
          type:
          - string
          - 'null'
          format: partial-time
    AccountTimeSchemeCreateRequest:
      required:
      - policy
      - policyType
      - title
      type: object
      properties:
        policyType:
          $ref: '#/components/schemas/TimePolicyType'
        policy:
          $ref: '#/components/schemas/TimePolicy'
        title:
          minLength: 1
          type: string
        description:
          type: string
    EntityTypeView:
      required:
      - access
      type: object
      properties:
        access:
          $ref: '#/components/schemas/EntityTypeAccessView'
    EntityTypePermissions:
      required:
      - canCreate
      - canView
      type: object
      properties:
        canView:
          type: boolean
        canCreate:
          type: boolean
  securitySchemes:
    Authorization:
      type: oauth2