Reclaim.ai participant-resolution API
The participant-resolution API from Reclaim.ai — 2 operation(s) for participant-resolution.
The participant-resolution API from Reclaim.ai — 2 operation(s) for participant-resolution.
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-participant-resolution-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 Participant Resolution 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: participant-resolution
paths:
/api/participant-resolution:
get:
tags:
- participant-resolution
operationId: resolveParticipantsForSmartSeries
parameters:
- name: emails
in: query
required: true
schema:
type: array
items:
type: string
- name: userCalendarId
in: query
schema:
type:
- string
- 'null'
responses:
'200':
description: resolveParticipantsForSmartSeries 200 response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/AttendeeResolutionView'
security:
- Authorization: []
/api/participant-resolution/scheduling-link:
get:
tags:
- participant-resolution
operationId: resolveParticipantsForSchedulingLink
parameters:
- name: emails
in: query
required: true
schema:
type: array
items:
type: string
- name: userCalendarId
in: query
schema:
type:
- string
- 'null'
- name: schedulingLinkId
in: query
schema:
type:
- string
- 'null'
responses:
'200':
description: resolveParticipantsForSchedulingLink 200 response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/AttendeeResolutionView'
security:
- Authorization: []
components:
schemas:
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
DayOfWeek:
type: string
enum:
- MONDAY
- TUESDAY
- WEDNESDAY
- THURSDAY
- FRIDAY
- SATURDAY
- SUNDAY
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
ThinPerson:
required:
- email
type: object
properties:
reclaimUser:
type: boolean
userId:
type:
- string
- 'null'
email:
minLength: 1
type: string
name:
type: string
avatarUrl:
type: string
firstName:
type:
- string
- 'null'
lastName:
type:
- string
- 'null'
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'
AttendeeCalendarVisibility:
type: string
enum:
- NONE
- FREE_BUSY
- DETAILS
- FULL
- RECLAIM
TimePolicyType:
type: string
enum:
- WORK
- PERSONAL
- MEETING
- ONE_OFF
- INHERITED
- CUSTOM
LocalTimeInterval:
required:
- end
- start
type: object
properties:
start:
type: string
format: partial-time
end:
type: string
format: partial-time
duration:
type: string
BasicTimeSchemeView:
required:
- features
- id
- policy
- policyType
- title
- userId
type: object
properties:
id:
type: string
userId:
type: string
policyType:
$ref: '#/components/schemas/TimePolicyType'
policy:
$ref: '#/components/schemas/TimePolicy'
title:
type: string
features:
type: array
items:
$ref: '#/components/schemas/ReclaimEventType'
AttendeeResolutionView:
required:
- matchedEmails
- participant
- timeSchemes
- timezone
- visibility
type: object
properties:
participant:
$ref: '#/components/schemas/ThinPerson'
timezone:
type:
- string
- 'null'
visibility:
$ref: '#/components/schemas/AttendeeCalendarVisibility'
matchedEmails:
type: array
items:
type: string
timeSchemes:
type: array
items:
$ref: '#/components/schemas/BasicTimeSchemeView'
securitySchemes:
Authorization:
type: oauth2