Reclaim.ai focus-settings API
The focus-settings API from Reclaim.ai — 7 operation(s) for focus-settings.
The focus-settings API from Reclaim.ai — 7 operation(s) for focus-settings.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/reclaim-ai-focus-settings-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Reclaim account-time-schemes Focus Settings 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: focus-settings
paths:
/api/focus-settings/clear-focus-time-events:
post:
tags:
- focus-settings
operationId: clearFocusTimeEvents
responses:
'200':
description: clearFocusTimeEvents 200 response
content:
application/json:
schema:
type: object
security:
- Authorization: []
/api/focus-settings/remove-duplicated-focus-time-events:
post:
tags:
- focus-settings
operationId: removeDuplicatedFocusTimeEvents
responses:
'200':
description: removeDuplicatedFocusTimeEvents 200 response
content:
application/json:
schema:
type: object
security:
- Authorization: []
/api/focus-settings/team:
get:
tags:
- focus-settings
operationId: findAllForTeam
responses:
'200':
description: findAllForTeam 200 response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TeamFocusSettingsView'
security:
- Authorization: []
post:
tags:
- focus-settings
operationId: createTeamFocusSettings
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TeamFocusSettingsCreateRequest'
required: true
responses:
'200':
description: createTeamFocusSettings 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/TeamFocusSettingsView'
security:
- Authorization: []
/api/focus-settings/team/{id}:
get:
tags:
- focus-settings
operationId: findTeamFocusSettings
parameters:
- name: id
in: path
required: true
schema:
type: integer
format: int64
responses:
'200':
description: findTeamFocusSettings 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/TeamFocusSettingsView'
security:
- Authorization: []
patch:
tags:
- focus-settings
operationId: patchTeamFocusSettings
parameters:
- name: id
in: path
required: true
schema:
type: integer
format: int64
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TeamFocusSettingsPatchRequest'
required: true
responses:
'200':
description: patchTeamFocusSettings 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/TeamFocusSettingsView'
security:
- Authorization: []
/api/focus-settings/user:
get:
tags:
- focus-settings
operationId: findAll
responses:
'200':
description: findAll 200 response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/UserFocusSettingsView'
security:
- Authorization: []
post:
tags:
- focus-settings
operationId: createUserFocusSettings
parameters:
- name: notificationKey
in: query
schema:
type:
- string
- 'null'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UserFocusSettingsCreateRequest'
required: true
responses:
'200':
description: createUserFocusSettings 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/UserFocusSettingsView'
security:
- Authorization: []
/api/focus-settings/user/focus-time/default:
get:
tags:
- focus-settings
operationId: fetchFocusTimeDefault
responses:
'200':
description: fetchFocusTimeDefault 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/UserFocusSettingsView'
security:
- Authorization: []
/api/focus-settings/user/{id}:
patch:
tags:
- focus-settings
operationId: patchUserFocusSettings
parameters:
- name: id
in: path
required: true
schema:
type: integer
format: int64
- name: notificationKey
in: query
schema:
type:
- string
- 'null'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UserFocusSettingsPatchRequest'
required: true
responses:
'200':
description: patchUserFocusSettings 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/UserFocusSettingsView'
security:
- Authorization: []
components:
schemas:
CircuitBreakerRequest:
required:
- availableChunksInDayThreshold
- availableChunksInWeekThreshold
- type
type: object
properties:
availableChunksInWeekThreshold:
type: integer
format: int32
availableChunksInDayThreshold:
type: integer
format: int32
type:
$ref: '#/components/schemas/FocusTimeCircuitBreakerType'
minDurationChunks:
type:
- integer
- 'null'
format: int32
UserFocusSettingsPatchRequest:
type: object
properties:
title:
type: string
description:
type:
- string
- 'null'
focusType:
$ref: '#/components/schemas/FocusType'
focusTimeSettings:
$ref: '#/components/schemas/FocusTimeRequest'
enabled:
type: boolean
timeSchemeId:
type: string
autoDecline:
type: boolean
autoDeclineText:
type:
- string
- 'null'
calendarId:
type: integer
format: int64
visibility:
$ref: '#/components/schemas/FocusVisibility'
UserFocusSettingsView:
required:
- autoDecline
- description
- enabled
- focusType
- id
- status
- timeSchemeId
- title
- visibility
type: object
properties:
id:
type: integer
format: int64
title:
type: string
description:
type: string
focusType:
$ref: '#/components/schemas/FocusType'
focusTimeSettings:
allOf:
- $ref: '#/components/schemas/FocusTimeSettingsView'
enabled:
type: boolean
timeSchemeId:
type: string
status:
$ref: '#/components/schemas/UserFocusSettingsStatus'
autoDecline:
type: boolean
autoDeclineText:
type:
- string
- 'null'
calendarId:
type:
- integer
- 'null'
format: int64
visibility:
$ref: '#/components/schemas/FocusVisibility'
FocusTimeCountingStyle:
type: string
enum:
- IGNORE_TIME_SCHEME
- ONLY_WITHIN_TIME_SCHEME
CircuitBreakerView:
required:
- availableChunksInDayThreshold
- availableChunksInWeekThreshold
- type
type: object
properties:
availableChunksInWeekThreshold:
type: integer
format: int32
availableChunksInDayThreshold:
type: integer
format: int32
type:
$ref: '#/components/schemas/FocusTimeCircuitBreakerType'
minDurationChunks:
type:
- integer
- 'null'
format: int32
TeamFocusSettingsCreateRequest:
required:
- focusTimeSettings
- focusType
- policyType
- title
- visibility
type: object
properties:
autoDecline:
type:
- boolean
- 'null'
title:
type: string
description:
type:
- string
- 'null'
focusType:
$ref: '#/components/schemas/FocusType'
focusTimeSettings:
$ref: '#/components/schemas/FocusTimeRequest'
policyType:
$ref: '#/components/schemas/TimePolicyType'
autoDeclineText:
type:
- string
- 'null'
visibility:
$ref: '#/components/schemas/FocusVisibility'
FocusTimeSchedulingType:
type: string
deprecated: true
enum:
- BALLOON_FILL
- BALLOON_FILL_MAXIMIZE_DURATIONS
- CIRCUIT_BREAKER_WEEK_LEVEL
- CIRCUIT_BREAKER_DAY_LEVEL
- CIRCUIT_BREAKER_WEEK_AND_DAY_LEVEL
UserFocusSettingsStatus:
type: string
enum:
- ACTIVE
- DISABLED
- CALENDAR_NOT_FOUND
- CALENDAR_NOT_VALID
- CALENDAR_NOT_CONNECTED
- CALENDAR_NOT_WRITABLE
- INACTIVE_MULTI_CONNECTED_CALENDAR
FocusVisibility:
type: string
enum:
- DEFAULT
- PRIVATE
- PUBLIC
FocusTimeCircuitBreakerType:
type: string
enum:
- WEEK
- DAY
- WEEK_AND_DAY
BalloonFillRequest:
required:
- targetChunksPerWeek
- type
type: object
properties:
targetChunksPerWeek:
type: integer
format: int32
idealChunksPerDay:
type:
- integer
- 'null'
format: int32
maxChunksPerDay:
type:
- integer
- 'null'
format: int32
minDurationChunks:
type:
- integer
- 'null'
format: int32
maxDurationChunks:
type:
- integer
- 'null'
format: int32
type:
$ref: '#/components/schemas/FocusTimeBalloonFillType'
FocusType:
type: string
enum:
- FOCUS_TIME
BalloonFillView:
required:
- targetChunksPerWeek
- type
type: object
properties:
targetChunksPerWeek:
type: integer
format: int32
idealChunksPerDay:
type:
- integer
- 'null'
format: int32
maxChunksPerDay:
type:
- integer
- 'null'
format: int32
minDurationChunks:
type:
- integer
- 'null'
format: int32
maxDurationChunks:
type:
- integer
- 'null'
format: int32
type:
$ref: '#/components/schemas/FocusTimeBalloonFillType'
TeamFocusSettingsPatchRequest:
type: object
properties:
title:
type: string
description:
type:
- string
- 'null'
focusType:
$ref: '#/components/schemas/FocusType'
focusTimeSettings:
$ref: '#/components/schemas/FocusTimeRequest'
enabled:
type: boolean
policyType:
$ref: '#/components/schemas/TimePolicyType'
autoDecline:
type: boolean
autoDeclineText:
type:
- string
- 'null'
visibility:
$ref: '#/components/schemas/FocusVisibility'
TeamFocusSettingsView:
required:
- autoDecline
- description
- enabled
- focusType
- id
- policyType
- title
- visibility
type: object
properties:
id:
type: integer
format: int64
title:
type: string
description:
type: string
focusType:
$ref: '#/components/schemas/FocusType'
focusTimeSettings:
allOf:
- $ref: '#/components/schemas/FocusTimeSettingsView'
enabled:
type: boolean
policyType:
$ref: '#/components/schemas/TimePolicyType'
autoDecline:
type: boolean
autoDeclineText:
type:
- string
- 'null'
visibility:
$ref: '#/components/schemas/FocusVisibility'
FocusTimeSchedulingTypeV2:
type: string
enum:
- BALLOON_FILL
- CIRCUIT_BREAKER
FocusTimeRequest:
required:
- schedulingTypeV2
type: object
properties:
schedulingType:
deprecated: true
allOf:
- $ref: '#/components/schemas/FocusTimeSchedulingType'
schedulingTypeV2:
$ref: '#/components/schemas/FocusTimeSchedulingTypeV2'
countingStyle:
allOf:
- $ref: '#/components/schemas/FocusTimeCountingStyle'
balloonFill:
allOf:
- $ref: '#/components/schemas/BalloonFillRequest'
circuitBreaker:
allOf:
- $ref: '#/components/schemas/CircuitBreakerRequest'
UserFocusSettingsCreateRequest:
required:
- focusTimeSettings
- focusType
- timeSchemeId
- title
- visibility
type: object
properties:
autoDecline:
type:
- boolean
- 'null'
title:
type: string
description:
type:
- string
- 'null'
focusType:
$ref: '#/components/schemas/FocusType'
focusTimeSettings:
$ref: '#/components/schemas/FocusTimeRequest'
timeSchemeId:
type: string
autoDeclineText:
type:
- string
- 'null'
calendarId:
type:
- integer
- 'null'
format: int64
visibility:
$ref: '#/components/schemas/FocusVisibility'
TimePolicyType:
type: string
enum:
- WORK
- PERSONAL
- MEETING
- ONE_OFF
- INHERITED
- CUSTOM
FocusTimeBalloonFillType:
type: string
enum:
- BALLOON_FILL_NORMAL
- BALLOON_FILL_MAXIMIZE_DURATIONS
FocusTimeSettingsView:
required:
- schedulingType
- schedulingTypeV2
type: object
properties:
schedulingType:
$ref: '#/components/schemas/FocusTimeSchedulingType'
schedulingTypeV2:
$ref: '#/components/schemas/FocusTimeSchedulingTypeV2'
balloonFill:
allOf:
- $ref: '#/components/schemas/BalloonFillView'
circuitBreaker:
allOf:
- $ref: '#/components/schemas/CircuitBreakerView'
securitySchemes:
Authorization:
type: oauth2