v1
latestOpenAPI 3.1.02026-07-2466150275.0 KBProjects
Patch Main Project
Update main project details.
A project owner can update all relevant project details, including default name, address and other project related details.
This endpoint will ignore any fields that are empty; only fields with values will be updated.
patch/v1/project/{project_id}/
Path parameters
project_idinteger required
Request body
Example request
{
"name": "The Project Name",
"address": "123 Somewhere Ave",
"city": "Vancouver",
"country": "Canada",
"timezone": "America/Vancouver",
"phone": "16045551234",
"longitude": 35.89421911,
"latitude": 139.94637467,
"isPrivate": true,
"geoCheckInEnabled": true
}Response
Successful Response
Example response
{
"data": {
"id": 123,
"name": "The Project Name",
"address": "123 Somewhere Ave",
"city": "Vancouver",
"country": "Canada",
"timezone": "America/Vancouver",
"phone": "16045551234",
"longitude": 35.89421911,
"latitude": 139.94637467,
"siteCode": 54231,
"isPrivate": true,
"geoCheckInEnabled": true
}
}