Invoke Skill Meeting Followup
post
/api/v1/skills/meeting.followup/invokeExtract action items, decisions, and a follow-up email draft from a meeting transcript or uploaded recording. Read-only β the user reviews and sends the draft. Pairs with meeting.prep.
Request bodyapplication/json
| Field | Type | Description |
|---|---|---|
client_idrequired | string (uuid) | β |
meeting_daterequired | string (date) | β |
transcript | string | Pasted/typed transcript or notes. Empty when relying on file_ids. |
file_ids | string (uuid)[] | Uploaded transcript / recording / notes documents. |
attendees | string[] | β |
agenda_topics_covered | string[] | β |
draft_email | boolean | When True, the LLM emits a follow-up email draft alongside action items. |
Responses
200Skill executed successfully
| Field | Type | Description | |||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
skillrequired | string | β | |||||||||||||||||||||||||||||||||
outputrequired | object | βshow nested
| |||||||||||||||||||||||||||||||||
correlation_idrequired | string | β |
401Authentication required
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
403Insufficient permissions
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
404Skill not found
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
429Rate limit exceeded
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
5XXInternal server error
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
curl https://api.dev.arch.ie/api/v1/skills/meeting.followup/invoke \
-X POST \
-H "Authorization: Bearer sk_..." \
-H "Content-Type: application/json" \
-d '{
"client_id": "00000000-0000-0000-0000-000000000000",
"meeting_date": "string",
"transcript": "string",
"file_ids": [
"00000000-0000-0000-0000-000000000000"
],
"attendees": [
"string"
],
"agenda_topics_covered": [
"string"
],
"draft_email": false
}'