curl --request POST \
--url https://api.example.com/v1/projects/{projectId}/edges \
--header 'Content-Type: application/json' \
--data '
{
"sourceNodeId": "<string>",
"targetNodeId": "<string>",
"sourceCardId": "<string>",
"targetCardId": "<string>",
"sourceHandle": "<string>",
"targetHandle": "<string>",
"edgeType": "<string>"
}
'