PUT
/
projects
/
{projectId}
curl --request PUT \
  --url https://app.dynamicauth.com/api/v0/projects/{projectId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "An example name"
}'
{
  "id": "95b11417-f18f-457f-8804-68e361f9164f",
  "name": "Example project name"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectId
string
required

ID of project

Required string length: 36

Body

application/json
Data to update a project
name
string
required

Response

200
application/json
successful operation - project updated
id
string
Required string length: 36
name
string