patch https://api-prod.scopeinc.com/api/v1/project/
Description
This endpoint updates a single project with the given set of parameters in the request body.
An example request body is the following:
{
"name": "Jade's New Bike Shop Implementation",
"requirements": [
{
"name": "Project Details",
"value": "An implementation project for Jade's new bike shop which involves..."
},
{
"name": "Customer Business",
"value": "Jade's New Bike Shop"
}
]
}
Currently, the only fields that can be updated for an existing project with this endpoint are:
name
andrequirements
.
The name
field refers to the title of the project, and requirements
refers to the existing project requirements. Please note that currently both fields are required in this PATCH
endpoint. If either of these fields is empty, you will receive an error message with a 400 Bad Request
status code.