Skip to content

Move or reorder a collection page

PATCH/api/v1/workspaces/{workspace_slug}/collections/{collection_id}/pages/{page_collection_id}/

Reorders a page or moves its page tree to another visible collection. A private collection's sub-page cannot be moved independently. Moving a private page to a public collection makes its tree public when permitted. Moving a root page out of a private collection requires workspace admin access, or ownership of the page tree together with edit access to the source collection. Moving into a private collection also requires access to the destination collection.

Path Parameters

workspace_slug:requiredstring

The workspace slug.

collection_id:requireduuid

The source collection ID.

page_collection_id:requireduuid

The page membership ID returned as page_collection_id by the list endpoint.

Body Parameters

collection:optionaluuid

A destination collection ID. Omit or use the source ID to reorder in place.

sort_order:optionalnumber

An explicit ordering value.

placement:optionalobject

Placement with type: append, before, or after; optional parent_id; and required target_page_id for before/after. Overrides sort_order.

Scopes

write or wiki.pages:write

Move or reorder a collection page
bash
curl -X PATCH "https://api.plane.so/api/v1/workspaces/my-workspace/collections/source-uuid/pages/membership-uuid/" \
  -H "X-API-Key: $PLANE_API_KEY" -H "Content-Type: application/json" \
  -d '{"collection":"target-collection-uuid","placement":{"type":"append"}}'
Response200
json
{
  "id": "55ebf2cc-61ba-478a-b88c-88db969e29dc",
  "collection": "82c72604-2019-43b7-930f-692af61f3ea7",
  "page": "ea8ccdab-1cf4-448b-8205-51e4b98d82b8",
  "workspace": "95d1f03f-16e5-4807-a8c5-ec0c7cf0e4ab",
  "sort_order": 65535.0,
  "created_at": "2026-08-18T10:00:00Z",
  "updated_at": "2026-08-18T10:05:00Z",
  "created_by": "d2f1b470-55e8-4e7a-8a61-7fc695bc1a4f",
  "updated_by": "d2f1b470-55e8-4e7a-8a61-7fc695bc1a4f"
}