curl --request PATCH \
--url https://api.example.com/v1/projects/{projectId}/nodes/{nodeId} \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"structuredData": {},
"positionX": 123,
"positionY": 123,
"width": 123,
"height": 123,
"collapsed": true
}
'