Documentation Index Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
Server path: /microsoft-365-onenote | Type: Application | PCID required: Yes
microsoft_365_onenote_create_notebook_section
Create a section in a OneNote notebook
Parameters:
Parameter Type Required Default Description notebook_idstring Yes — The unique ID of the OneNote notebook displayNamestring Yes — Display name for the new section
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"notebook_id" : {
"type" : "string" ,
"description" : "The unique ID of the OneNote notebook"
},
"displayName" : {
"type" : "string" ,
"description" : "Display name for the new section"
}
},
"required" : [
"PCID" ,
"notebook_id" ,
"displayName"
]
}
microsoft_365_onenote_create_onenote_notebook
Create a OneNote notebook
Parameters:
Parameter Type Required Default Description displayNamestring Yes — Display name for the new notebook
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"displayName" : {
"type" : "string" ,
"description" : "Display name for the new notebook"
}
},
"required" : [
"PCID" ,
"displayName"
]
}
microsoft_365_onenote_create_section_page
Create a page in a OneNote section
Parameters:
Parameter Type Required Default Description section_idstring Yes — The unique ID of the OneNote section bodystring Yes — HTML content of the OneNote page. Must include a title tag in the head element.
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"section_id" : {
"type" : "string" ,
"description" : "The unique ID of the OneNote section"
},
"body" : {
"type" : "string" ,
"description" : "HTML content of the OneNote page. Must include a title tag in the head element."
}
},
"required" : [
"PCID" ,
"section_id" ,
"body"
]
}
microsoft_365_onenote_delete_page
Delete a OneNote page
Parameters:
Parameter Type Required Default Description page_idstring Yes — The unique ID of the OneNote page to delete
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"page_id" : {
"type" : "string" ,
"description" : "The unique ID of the OneNote page to delete"
}
},
"required" : [
"PCID" ,
"page_id"
]
}
microsoft_365_onenote_get_page
Get OneNote page metadata
Parameters:
Parameter Type Required Default Description page_idstring Yes — The unique ID of the OneNote page $selectstring No — Comma-separated properties to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"page_id" : {
"type" : "string" ,
"description" : "The unique ID of the OneNote page"
},
"$select" : {
"type" : "string" ,
"description" : "Comma-separated properties to return"
}
},
"required" : [
"PCID" ,
"page_id"
]
}
microsoft_365_onenote_get_page_content
Get OneNote page HTML content
Parameters:
Parameter Type Required Default Description page_idstring Yes — The unique ID of the OneNote page
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"page_id" : {
"type" : "string" ,
"description" : "The unique ID of the OneNote page"
}
},
"required" : [
"PCID" ,
"page_id"
]
}
microsoft_365_onenote_list_notebook_sections
List sections in a OneNote notebook
Parameters:
Parameter Type Required Default Description notebook_idstring Yes — The unique ID of the OneNote notebook $selectstring No — Comma-separated properties to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"notebook_id" : {
"type" : "string" ,
"description" : "The unique ID of the OneNote notebook"
},
"$select" : {
"type" : "string" ,
"description" : "Comma-separated properties to return"
}
},
"required" : [
"PCID" ,
"notebook_id"
]
}
microsoft_365_onenote_list_onenote_notebooks
List OneNote notebooks
Parameters:
Parameter Type Required Default Description $orderbystring No — Sort order (e.g. “displayName asc”, “lastModifiedDateTime desc”) $selectstring No — Comma-separated properties to return (e.g. “id,displayName,lastModifiedDateTime”) $topinteger No — Number of notebooks to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"$orderby" : {
"type" : "string" ,
"description" : "Sort order (e.g. \" displayName asc \" , \" lastModifiedDateTime desc \" )"
},
"$select" : {
"type" : "string" ,
"description" : "Comma-separated properties to return (e.g. \" id,displayName,lastModifiedDateTime \" )"
},
"$top" : {
"type" : "integer" ,
"description" : "Number of notebooks to return"
}
},
"required" : [
"PCID"
]
}
microsoft_365_onenote_list_section_pages
List pages in a OneNote section
Parameters:
Parameter Type Required Default Description section_idstring Yes — The unique ID of the OneNote section $orderbystring No — Sort order (e.g. “lastModifiedDateTime desc”) $selectstring No — Comma-separated properties to return (e.g. “id,title,lastModifiedDateTime”) $topinteger No — Number of pages to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"section_id" : {
"type" : "string" ,
"description" : "The unique ID of the OneNote section"
},
"$orderby" : {
"type" : "string" ,
"description" : "Sort order (e.g. \" lastModifiedDateTime desc \" )"
},
"$select" : {
"type" : "string" ,
"description" : "Comma-separated properties to return (e.g. \" id,title,lastModifiedDateTime \" )"
},
"$top" : {
"type" : "integer" ,
"description" : "Number of pages to return"
}
},
"required" : [
"PCID" ,
"section_id"
]
}