Skip to main content
PUT
/
api
/
company
/
contact
Update company contact
curl --request PUT \
  --url https://app.demandiq.com/api/company/contact \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone": "+13035551234",
  "email": "info@acmeroofing.com",
  "address": "<string>",
  "city": "<string>",
  "state": "<string>",
  "zip": "<string>",
  "licenseNumber": "<string>",
  "timezone": "America/Denver"
}
'
{
  "contact": {
    "phone": "+13035551234",
    "email": "info@acmeroofing.com",
    "address": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "licenseNumber": "<string>",
    "timezone": "America/Denver"
  }
}

Body

application/json
phone
string
Example:

"+13035551234"

email
string<email>
Example:

"info@acmeroofing.com"

address
string
city
string
state
string
zip
string
licenseNumber
string
timezone
string
Example:

"America/Denver"

Response

200 - application/json

Contact updated

contact
object