Reclaim.ai ooo-calendars API

The ooo-calendars API from Reclaim.ai — 5 operation(s) for ooo-calendars.

Operations 8

GET /api/team/ooo-calendars #
POST /api/team/ooo-calendars #
GET /api/team/ooo-calendars/available #
GET /api/team/ooo-calendars/{id} #
DELETE /api/team/ooo-calendars/{id} #
PATCH /api/team/ooo-calendars/{id} #
POST /api/team/ooo-calendars/{id}/link-calendar #
POST /api/team/ooo-calendars/{id}/reconcile #

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-ooo-calendars-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-ooo-calendars-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reclaim account-time-schemes Ooo Calendars 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: ooo-calendars
paths:
  /api/team/ooo-calendars:
    get:
      tags:
      - ooo-calendars
      operationId: listOOOCalendars
      responses:
        '200':
          description: listOOOCalendars 200 response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TeamOOOCalendarView'
      security:
      - Authorization: []
    post:
      tags:
      - ooo-calendars
      operationId: createOOOCalendar
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamOOOCalendarCreateRequest'
        required: true
      responses:
        '200':
          description: createOOOCalendar 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamOOOCalendarView'
      security:
      - Authorization: []
  /api/team/ooo-calendars/available:
    get:
      tags:
      - ooo-calendars
      operationId: getAvailableOOOCalendars
      responses:
        '200':
          description: getAvailableOOOCalendars 200 response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CalendarView'
      security:
      - Authorization: []
  /api/team/ooo-calendars/{id}:
    get:
      tags:
      - ooo-calendars
      operationId: getOOOCalendar
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: getOOOCalendar 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamOOOCalendarDetailedView'
      security:
      - Authorization: []
    delete:
      tags:
      - ooo-calendars
      operationId: deleteOOOCalendar
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: deleteOOOCalendar 200 response
          content:
            application/json:
              schema:
                type: object
      security:
      - Authorization: []
    patch:
      tags:
      - ooo-calendars
      operationId: updateOOOCalendar
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamOOOCalendarViewUpdateRequest'
        required: true
      responses:
        '200':
          description: updateOOOCalendar 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamOOOCalendarView'
      security:
      - Authorization: []
  /api/team/ooo-calendars/{id}/link-calendar:
    post:
      tags:
      - ooo-calendars
      operationId: linkCalendar
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamOOOCalendarLinkRequest'
        required: true
      responses:
        '200':
          description: linkCalendar 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamOOOCalendarDetailedView'
      security:
      - Authorization: []
  /api/team/ooo-calendars/{id}/reconcile:
    post:
      tags:
      - ooo-calendars
      operationId: reconcileOOOCalendar
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: reconcileOOOCalendar 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamOOOCalendarDetailedView'
      security:
      - Authorization: []
components:
  schemas:
    TeamOOOCalendarCreateRequest:
      required:
      - name
      type: object
      properties:
        name:
          type: string
        ownerUserId:
          type:
          - string
          - 'null'
    Reminder:
      required:
      - minutes
      - reminderType
      type: object
      properties:
        reminderType:
          $ref: '#/components/schemas/ReminderType'
        minutes:
          type: integer
          format: int32
    TeamOOOCalendarDetailedView:
      required:
      - canManage
      - createdAt
      - id
      - memberCount
      - members
      - name
      - status
      - type
      - updatedAt
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        calendarId:
          type:
          - string
          - 'null'
        calendarName:
          type:
          - string
          - 'null'
        ownerUserId:
          type:
          - string
          - 'null'
        ownerEmail:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/TeamOOOCalendarType'
        status:
          $ref: '#/components/schemas/TeamOOOCalendarStatus'
        memberCount:
          type: integer
          format: int32
        canManage:
          type: boolean
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        externalCalendarUrl:
          type:
          - string
          - 'null'
        members:
          type: array
          items:
            $ref: '#/components/schemas/TeamOOOCalendarMemberView'
    TeamOOOCalendarMemberView:
      required:
      - email
      - status
      type: object
      properties:
        email:
          type: string
        status:
          $ref: '#/components/schemas/TeamOOOCalendarMemberStatus'
    TeamOOOCalendarView:
      required:
      - canManage
      - createdAt
      - id
      - memberCount
      - name
      - status
      - type
      - updatedAt
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        calendarId:
          type:
          - string
          - 'null'
        calendarName:
          type:
          - string
          - 'null'
        ownerUserId:
          type:
          - string
          - 'null'
        ownerEmail:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/TeamOOOCalendarType'
        status:
          $ref: '#/components/schemas/TeamOOOCalendarStatus'
        memberCount:
          type: integer
          format: int32
        canManage:
          type: boolean
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        externalCalendarUrl:
          type:
          - string
          - 'null'
    ReclaimEventType:
      type: string
      enum:
      - USER
      - SYNC
      - HABIT_ASSIGNMENT
      - SMART_HABIT
      - ONE_ON_ONE_ASSIGNMENT
      - SMART_MEETING
      - TASK_ASSIGNMENT
      - CONF_BUFFER
      - TRAVEL_BUFFER
      - SCHEDULING_LINK_MEETING
      - UNKNOWN
      - FOCUS
    TeamOOOCalendarType:
      type: string
      enum:
      - ACL
      - MANUAL
      - ORG_HIERARCHY
    TeamOOOCalendarLinkRequest:
      required:
      - calendarId
      type: object
      properties:
        calendarId:
          type: string
    IneligibilityReason:
      type: string
      enum:
      - MAIN_ACCOUNT_PRIMARY
      - SYNCED_ALREADY
      - FREE_BUSY_ONLY
    TeamOOOCalendarMemberStatus:
      type: string
      enum:
      - ACTIVE
      - PENDING_SYNC
      - SYNC_ERROR
      - CREDENTIALS_REVOKED
      - NOT_ON_RECLAIM
      - NOT_ON_PIPELINE
    TeamOOOCalendarViewUpdateRequest:
      type: object
      properties:
        id:
          type:
          - integer
          - 'null'
          format: int64
        name:
          type:
          - string
          - 'null'
        calendarId:
          type:
          - string
          - 'null'
        calendarName:
          type:
          - string
          - 'null'
        ownerUserId:
          type:
          - string
          - 'null'
        ownerEmail:
          type:
          - string
          - 'null'
        type:
          allOf:
          - $ref: '#/components/schemas/TeamOOOCalendarType'
        status:
          allOf:
          - $ref: '#/components/schemas/TeamOOOCalendarStatus'
        memberCount:
          type:
          - integer
          - 'null'
          format: int32
        createdAt:
          type:
          - string
          - 'null'
          format: date-time
        updatedAt:
          type:
          - string
          - 'null'
          format: date-time
    CalendarView:
      required:
      - colorHex
      - connected
      - credentialId
      - externalId
      - googleMeetAllowed
      - id
      - microsoftTeamsAllowed
      - name
      - otherConnectedCalendarsExist
      - provider
      - useType
      - writableFor
      type: object
      properties:
        name:
          type: string
        id:
          type: integer
          format: int64
        externalId:
          type: string
        connected:
          type: boolean
        colorHex:
          type: string
        credentialId:
          type: integer
          format: int64
        reason:
          allOf:
          - $ref: '#/components/schemas/IneligibilityReason'
        writableFor:
          type: array
          items:
            $ref: '#/components/schemas/ReclaimEventType'
        provider:
          type: string
        googleMeetAllowed:
          type: boolean
        microsoftTeamsAllowed:
          type: boolean
        defaultReminders:
          type:
          - array
          - 'null'
          deprecated: true
          items:
            type: integer
            format: int32
        reminderDefaults:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Reminder'
        useType:
          $ref: '#/components/schemas/CalendarUseType'
        otherConnectedCalendarsExist:
          type: boolean
        accessDomainRead:
          type:
          - boolean
          - 'null'
    TeamOOOCalendarStatus:
      type: string
      enum:
      - NEEDS_SETUP
      - ACTIVE
      - ACTIVE_NO_MEMBERS
      - INACTIVE_OWNER_DELETED
      - INACTIVE_CALENDAR_NOT_FOUND
      - INACTIVE_CALENDAR_NOT_CONNECTED
      - INACTIVE_OWNER_CREDENTIALS_REVOKED
    ReminderType:
      type: string
      enum:
      - UI_NOTIFICATION
      - EMAIL
    CalendarUseType:
      type: string
      enum:
      - UNKNOWN
      - MULTI_USE
      - WORK
      - PERSONAL
      - FAMILY
      - TEAM
      - VACATION
      - TRAVEL
      - TEAM_OOO_CALENDAR
  securitySchemes:
    Authorization:
      type: oauth2