Find or create meeting
documentedFind an existing meeting or create a new one.
POST /v2/meetingsMeetingsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.attio.com/v2/meetings" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{ \
"data": { \
"title": "{{$title}}", \
"description": "{{$description}}", \
"start": { \
"datetime": "{{$start_datetime}}", \
"timezone": "{{$start_timezone}}" \
}, \
"end": { \
"datetime": "{{$end_datetime}}", \
"timezone": "{{$end_timezone}}" \
}, \
"is_all_day": {{$is_all_day}}, \
"participants": [ \
{ \
"email_address": "{{$participant_email}}", \
"is_organizer": {{$participant_is_organizer}}, \
"status": "{{$participant_status}}" \
} \
], \
"external_ref": "{{$external_ref}}", \
"linked_records": [ \
{ \
"object": "people", \
"record_id": "{{$record_id}}" \
} \
] \
} \
}']