cURL
curl --request PUT \ --url https://api.pathors.com/v1/projects/{projectId} \ --header 'Authorization: <authorization>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>" } '
Update project settings
PUT https://api.pathors.com/v1/projects/{projectId}
curl -X PUT https://api.pathors.com/v1/projects/{projectId} \ -H "Authorization: Bearer dk_your_key" \ -H "Content-Type: application/json" \ -d '{ "name": "Updated Name" }'