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
Documentation IndexFetch the complete documentation index at: https://docs.pathors.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.pathors.com/llms.txt
Use this file to discover all available pages before exploring further.
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" }'