Was this helpful?
curl -L \ --url 'https://api.laminar.run/workflow/{id}' \ --header 'Authorization: Bearer JWT'
{ "id": 1, "name": "text", "description": "text", "createdAt": "2025-04-01T23:55:17.092Z" }
curl -L \ --request DELETE \ --url 'https://api.laminar.run/workflow/{id}' \ --header 'Authorization: Bearer JWT'
No body
curl -L \ --request POST \ --url 'https://api.laminar.run/workflow' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "name": "text", "description": "text", "workspaceId": 1 }'
curl -L \ --request PUT \ --url 'https://api.laminar.run/workflow' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "workflowId": 1, "name": "text", "description": "text" }'