PUT
/
api
/
projetos
/
status
Atualizar status de projeto
curl --request PUT \
  --url https://suite.sisqualis.com.br/api/projetos/status \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "projeto": "<string>",
  "status": "ABERTO"
}
'
{
  "success": true,
  "projeto": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Use: Token <seu_token>

Body

application/json
projeto
string
required
status
enum<string>
required
Available options:
ABERTO,
ENTREGUE

Response

Status atualizado

success
boolean
projeto
string
status
string