curl --request PATCH \
--url http://localhost:3000/leads/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "João Silva",
"whatsapp": "5511999999999",
"source": "website",
"status": "CONTATADO"
}
'