curl --request PUT \
--url https://api.example.com/api/v1/projects/{slug} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"is_active": true
}
'Actualizar nombre, descripción o estado de un proyecto.
curl --request PUT \
--url https://api.example.com/api/v1/projects/{slug} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"is_active": true
}
'