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>'

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.