Skip to main content
DELETE
/
v1
/
projects
/
{projectId}
/
pathway
/
nodes
/
{nodeId}
Delete Node
curl --request DELETE \
  --url https://api.pathors.com/v1/projects/{projectId}/pathway/nodes/{nodeId} \
  --header 'Authorization: <authorization>'

Documentation Index

Fetch the complete documentation index at: https://docs.pathors.com/llms.txt

Use this file to discover all available pages before exploring further.

Request

DELETE https://api.pathors.com/v1/projects/{projectId}/pathway/nodes/{nodeId}

Path Parameters

projectId
string
required
The project ID
nodeId
string
required
The node ID

Headers

Authorization
string
required
Bearer token using your developer key

Response

Returns the list of edges that were also deleted due to the node removal.
{
  "message": "Node deleted",
  "deletedEdges": ["edge-1", "edge-3"]
}
All edges connected to this node (as source or target) will be automatically deleted.