Skip to main content
PATCH
/
v1
/
app
/
project
/
{projectId}
Update a project
curl --request PATCH \
  --url https://{base_url}/v1/app/project/{projectId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "goal": "<string>",
  "deadline": "<string>",
  "default_member_role": "Viewer",
  "default_role_enabled": true,
  "visibility": "Public",
  "project_context": "<string>",
  "answer_context": "<string>"
}
'

Path Parameters

projectId
string
required

The ID of the project to update

Body

application/json

The details to update the project with

name
string
goal
string
deadline
string
default_member_role
enum<string>
Available options:
Viewer,
Commenter,
Editor,
Admin,
Owner
default_role_enabled
boolean
visibility
enum<string>
Available options:
Public,
Private
project_context
string
answer_context
string