v1
latestOpenAPI 3.1.02026-07-26183980.3 KBexternal
external-v2
Move Note
Move a note from one collection to another collection. This operation adds the note to the target collection, then removes it from the source collection. It does not modify note or collection content.
post/v2/collections/{source_collection_id}/notes/{note_id}/move
Path parameters
source_collection_idstring uuid required
UUID of the collection that currently contains the note. Caller must be able to remove the note from this collection.
UUID of the collection that currently contains the note. Caller must be able to remove the note from this collection.
note_idstring uuid required
UUID of the note to move. Use an ID returned by create/list/search.
UUID of the note to move. Use an ID returned by create/list/search.
Request body
Example request
{
"target_collection_id": "01961d40-7c70-7ed8-8cd4-bd99203de422"
}Response
OK
Example response
{
"request_id": "api-request-036ed6c7-de00-459f-a89b-43d26aafe522"
}