curl --location --request PATCH '/v1/companies/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "test5@company.com",
"npwp": "9384858375393336",
"nitku": "1231231231412345123232",
"name": "Name AB5",
"business_field": "Business Field",
"operation_status": "operation",
"type": "tenant",
"status_pu": "registered",
"no_pu": "string",
"pic_name": "string",
"pic_phone": "8812313123",
"address": "Jl. jalan",
"vehicles": [
{
// Create new vehicle if id is not specified
"police_number": "B7478DD"
},
{
// Update existing vehicle if id (vehicle) is provided
"id": "d0f5a7fa-70ec-4dbb-b973-a1e6fc3fceec",
"police_number": "B4567PG"
}
// Delete vehicles is empty or not provided
]
}'