Path parameters

  • companyId string(uuid) Required
application/json

Body Required

  • name string
  • phone string
  • address string
  • city string
  • state string
  • country string

Responses

  • 200 application/json

    Updated company

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • plan string
    • timezone string
PUT /company/{companyId}
curl \
 --request PUT 'https://api.pairfon.com/company/{companyId}' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"string","phone":"string","address":"string","city":"string","state":"string","country":"string"}'
Request examples
{
  "name": "string",
  "phone": "string",
  "address": "string",
  "city": "string",
  "state": "string",
  "country": "string"
}
Response examples (200)
{
  "id": "string",
  "name": "string",
  "plan": "string",
  "timezone": "string"
}