---
updatedAt: 2026-07-27T21:25:28.000Z
---

Fetch the complete documentation index at: https://developers.fellow.ai/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Append To Note Agenda

Add Fellow Markdown to the end of a note's agenda, leaving the rest of the content in place.

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Fellow Developer API",
    "version": "1.0.2",
    "description": "Create custom integrations and workflows with Fellow's meeting data"
  },
  "paths": {
    "/api/v1/note/{note_id}/agenda/append": {
      "post": {
        "operationId": "apps_developer_api_api_append_note_agenda",
        "summary": "Append To Note Agenda",
        "parameters": [
          {
            "in": "path",
            "name": "note_id",
            "schema": {
              "title": "Note Id",
              "type": "string"
            },
            "required": true
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NoteAgendaResponse"
                }
              }
            }
          }
        },
        "description": "Add Fellow Markdown to the end of a note's agenda, leaving the rest of the content in place.",
        "tags": [
          "Notes"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppendNoteAgendaRequest"
              }
            }
          },
          "required": true
        },
        "security": [
          {
            "DeveloperAPIKeyAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "NoteAgenda": {
        "description": "A note's agenda content in Fellow Markdown.\n\nFellow Markdown is the editable format: what you read can be modified and written\nback as-is. It is not the same format as the note object's read-only\n`content_markdown` field.",
        "properties": {
          "note_id": {
            "title": "Note Id",
            "type": "string"
          },
          "title": {
            "title": "Title",
            "type": [
              "string",
              "null"
            ]
          },
          "content_fellow_markdown": {
            "title": "Content Fellow Markdown",
            "type": "string"
          }
        },
        "required": [
          "note_id",
          "title",
          "content_fellow_markdown"
        ],
        "title": "NoteAgenda",
        "type": "object"
      },
      "NoteAgendaResponse": {
        "description": "Response containing a note's agenda as Fellow Markdown.",
        "properties": {
          "agenda": {
            "$ref": "#/components/schemas/NoteAgenda"
          }
        },
        "required": [
          "agenda"
        ],
        "title": "NoteAgendaResponse",
        "type": "object"
      },
      "AppendNoteAgendaRequest": {
        "description": "Request body for appending Fellow Markdown to the end of a note's agenda.",
        "properties": {
          "content_fellow_markdown": {
            "description": "Fellow Markdown to add at the end of the agenda, in the same format the note object's content_fellow_markdown field returns.",
            "title": "Content Fellow Markdown",
            "type": "string"
          }
        },
        "required": [
          "content_fellow_markdown"
        ],
        "title": "AppendNoteAgendaRequest",
        "type": "object"
      }
    },
    "securitySchemes": {
      "DeveloperAPIKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-KEY"
      }
    }
  },
  "servers": [
    {
      "url": "https://{subdomain}.fellow.app",
      "description": "Fellow",
      "variables": {
        "subdomain": {
          "default": "your-fellow-subdomain",
          "description": "The subdomain for your Fellow workspace"
        }
      }
    }
  ],
  "tags": [
    {
      "name": "Notes",
      "description": "Access and manage meeting notes and their agendas. Retrieve individual notes, list notes with filters and pagination, delete notes (privileged access required), or edit agenda content as Fellow Markdown by replacing the whole agenda, appending or prepending to it, or finding and replacing a single occurrence of text."
    }
  ]
}
```