Overview
Add Fellow to any ModuleX agent or workflow. Meeting productivity platform for notes, action items, and meeting management via the Fellow REST API (https://<subdomain>.fellow.app/api/v1).
Categories : Productivity & Collaboration · Meetings · Auth : API Key · Actions : 3
Authentication
API Key Authentication
Authenticate using your Fellow API key and workspace subdomain
Step 1
Sign in to your Fellow workspace at https://<subdomain>.fellow.app
Step 2
Navigate to Settings > Integrations > API
Step 3
Generate a new API key or copy your existing one
Step 4
Note your workspace subdomain (the part before .fellow.app in your URL)
Required Credentials
Field Description Required Format Workspace Subdomain Your Fellow workspace subdomain (the part before .fellow.app) Yes mycompanyAPI Key Your Fellow API key from Settings > Integrations > API Yes xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Available Actions
archive_action_item — Archive an action item
Parameters The ID of the action item to archive
Response {
"additionalProperties" : false ,
"properties" : {
"success" : {
"title" : "Success" ,
"type" : "boolean"
},
"error" : {
"anyOf" : [
{
"type" : "string"
},
{
"type" : "null"
}
],
"default" : null ,
"title" : "Error"
},
"data" : {
"anyOf" : [
{
"additionalProperties" : true ,
"type" : "object"
},
{
"type" : "null"
}
],
"default" : null ,
"title" : "Data"
}
},
"required" : [
"success"
],
"title" : "ArchiveActionItemOutput" ,
"type" : "object"
}
complete_action_item — Complete an action item
Parameters The ID of the action item to mark as complete
Response {
"additionalProperties" : false ,
"properties" : {
"success" : {
"title" : "Success" ,
"type" : "boolean"
},
"error" : {
"anyOf" : [
{
"type" : "string"
},
{
"type" : "null"
}
],
"default" : null ,
"title" : "Error"
},
"data" : {
"anyOf" : [
{
"additionalProperties" : true ,
"type" : "object"
},
{
"type" : "null"
}
],
"default" : null ,
"title" : "Data"
}
},
"required" : [
"success"
],
"title" : "CompleteActionItemOutput" ,
"type" : "object"
}
get_note_by_id — Get a note by its ID
Parameters The ID of the note to retrieve
Response {
"additionalProperties" : false ,
"properties" : {
"success" : {
"title" : "Success" ,
"type" : "boolean"
},
"error" : {
"anyOf" : [
{
"type" : "string"
},
{
"type" : "null"
}
],
"default" : null ,
"title" : "Error"
},
"data" : {
"anyOf" : [
{
"additionalProperties" : true ,
"type" : "object"
},
{
"type" : "null"
}
],
"default" : null ,
"title" : "Data"
}
},
"required" : [
"success"
],
"title" : "GetNoteByIdOutput" ,
"type" : "object"
}
Limits & Quotas
No documented public rate limits from Fellow’s API documentation.
Error model: non-2xx responses and timeouts are caught and returned as success=False + error rather than raising.
Links