Authorization: Bearer ********************{
"email": "company@example.com",
"phoneNumber": "+1234567890",
"name": "Awesome Company",
"registrationNumber": "12345678",
"website": "https://www.awesomecompany.com",
"address": "123 Awesome Street, City, Country",
"countryId": 1,
"industryTypeId": 101
}curl --location --request PUT 'http://localhost:3000/api/v1/companies/2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "company@example.com",
"phoneNumber": "+1234567890",
"name": "Awesome Company",
"registrationNumber": "12345678",
"website": "https://www.awesomecompany.com",
"address": "123 Awesome Street, City, Country",
"countryId": 1,
"industryTypeId": 101
}'{}