curl --request PUT \
--url https://api.surefeedback.com/api/v1/projects/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>"
}
'{
"success": true,
"data": {
"id": "770e8400-e29b-41d4-a716-446655440002",
"name": "Updated Project Name"
}
}
Update a project’s name or settings.
curl --request PUT \
--url https://api.surefeedback.com/api/v1/projects/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>"
}
'{
"success": true,
"data": {
"id": "770e8400-e29b-41d4-a716-446655440002",
"name": "Updated Project Name"
}
}
Was this page helpful?