PUT /api/Company/Update/{Id}

PUT /api/Company/Update/{Id}

Path parameters

  • Id integer(int32) Required

Body

curl \
 -X PUT http://api.example.com/api/Company/Update/{Id} \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json-patch+json"
curl \
 -X PUT http://api.example.com/api/Company/Update/{Id} \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"name":"string","address":"string","city":"string","country":"string"}'
curl \
 -X PUT http://api.example.com/api/Company/Update/{Id} \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: text/json"
curl \
 -X PUT http://api.example.com/api/Company/Update/{Id} \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/*+json"
Request examples
{
  "name": "string",
  "address": "string",
  "city": "string",
  "country": "string"
}
Request examples
{
  "name": "string",
  "address": "string",
  "city": "string",
  "country": "string"
}