Skip to main content
PUT
/
api
/
v1
/
user
/
company
Update company profile
curl --request PUT \
  --url http://localhost:7701/api/v1/user/company \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Empresa LTDA",
  "cnpj": "12345678000190",
  "financial_email": "fin@empresa.com",
  "phone": "11900000000"
}
'

Authorizations

Authorization
string
header
required

User JWT token — obtained from /api/v1/auth/login or /api/v1/auth/register.

Body

application/json
name
string
Example:

"Empresa LTDA"

cnpj
string | null
Example:

"12345678000190"

financial_email
string | null
Example:

"fin@empresa.com"

phone
string | null
Example:

"11900000000"

Response

Updated company profile