curl --request PUT \
--url https://api.phylo.bio/v1/projects/{project_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Patient001 BRCA1 — final report"
}
'{
"id": "prj_014OwAG97UY0UfcHlLHQRnKO",
"type": "project",
"title": "BRCA1 variant workup",
"description": "Clinical genomics workup for three BRCA1 variants.",
"created_at": "2026-08-12T21:21:01.919000Z",
"updated_at": "2026-08-12T22:05:44.612000Z"
}Projects
Update a project
Rename a project or edit its description.
PUT
/
projects
/
{project_id}
curl --request PUT \
--url https://api.phylo.bio/v1/projects/{project_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Patient001 BRCA1 — final report"
}
'{
"id": "prj_014OwAG97UY0UfcHlLHQRnKO",
"type": "project",
"title": "BRCA1 variant workup",
"description": "Clinical genomics workup for three BRCA1 variants.",
"created_at": "2026-08-12T21:21:01.919000Z",
"updated_at": "2026-08-12T22:05:44.612000Z"
}Only the fields you send change. Send an empty string, such as
"description": "", to clear a field.Authorizations
Requires an API key. See the Authentication guide.
Path Parameters
Body
application/json
