Skip to main content
PUT
/
v1
/
projects
/
{projectId}
Update Project
curl --request PUT \
  --url https://api.pathors.com/v1/projects/{projectId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'

Request

PUT https://api.pathors.com/v1/projects/{projectId}

Path Parameters

projectId
string
required
The project ID

Headers

Authorization
string
required
Bearer token using your developer key

Body

name
string
required
Updated project name (1-64 characters)

Response

Returns the updated project.

Example

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" }'