cURL
curl --request GET \ --url https://api.pathors.com/v1/projects/{projectId}/pathway/edges \ --header 'Authorization: <authorization>'
{ "data": [ {} ] }
List all edges in the pathway
GET https://api.pathors.com/v1/projects/{projectId}/pathway/edges
curl https://api.pathors.com/v1/projects/{projectId}/pathway/edges \ -H "Authorization: Bearer dk_your_key"
{ "data": [ { "id": "edge-1", "source": "node-1", "target": "node-2", "data": { "condition": "User wants to book" } } ] }