v2

latestOpenAPI 3.1.02026-07-2664759910.6 KB
external
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

target_collection_idstring uuid required

UUID of the collection that should receive the note. The caller must be able to add the note to this collection.

Example request

{
  "target_collection_id": "01961d40-7c70-7ed8-8cd4-bd99203de422"
}

Response

OK

request_idstring required

Identifier for this API request. Useful for tracing and support.

Example response

{
  "request_id": "api-request-036ed6c7-de00-459f-a89b-43d26aafe522"
}