Skip to content
Testsigma DOCS

Update a project

PUT/projects/:project_id

Base URL  https://test-management.testsigma.com/api/v1

Updates the name and description of an existing project.

Authenticate with your API key as a Bearer token in the Authorization header. Generate a key →
project_idUnique identifier of the project to update.
nameNew name of the project.
descriptionUpdated description of the project.
messageStatus message for the request; may be empty.
data.project.idUnique identifier of the project.
data.project.created_atUnix timestamp of when the project was created.
data.project.updated_atUnix timestamp of the last update to the project.
data.project.nameUpdated name of the project.
data.project.descriptionUpdated description of the project.
data.project.human_id_prefixPrefix used for the project's human-readable identifier.
REQUEST
curl -X PUT \
  'https://test-management.testsigma.com/api/v1/projects/:project_id' \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "Health Care Project (Q2)",
    "description": "Regression suite for the patient portal, second quarter"
  }'
const response = await fetch('https://test-management.testsigma.com/api/v1/projects/:project_id', {
  method: 'PUT',
  headers: {
    'Authorization': 'Bearer <API_KEY>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
      "name": "Health Care Project (Q2)",
      "description": "Regression suite for the patient portal, second quarter"
  })
});
const data = await response.json();
import requests

response = requests.put(
  'https://test-management.testsigma.com/api/v1/projects/:project_id',
  headers={
    'Authorization': 'Bearer <API_KEY>',
    'Content-Type': 'application/json'
  },
  json={
      "name": "Health Care Project (Q2)",
      "description": "Regression suite for the patient portal, second quarter"
  }
)
data = response.json()
RESPONSE200OK
{
  "message": "",
  "data": {
    "project": {
      "id": "18c50239-946d-428e-aa0c-260329f5c151",
      "created_at": 1709452800,
      "updated_at": 1714521600,
      "name": "Health Care Project (Q2)",
      "description": "Regression suite for the patient portal, second quarter",
      "human_id_prefix": "HCP"
    }
  }
}