curl --request PUT \
--url https://api.raul.ugps.io/api/v1/bank-account/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"bank_name": "<string>",
"account_number": "<string>",
"account_type": "CORRIENTE",
"alias": "<string>",
"balance": 123,
"is_active": true,
"supplier_id": "<string>"
}
'