Skip to main content

Update Company

Update an existing company record.

Endpoint

PUT/PATCHhttps://crm.twozo.io/rest/api/v1/company/{id}
Request Payload
{  
  "name": "demo_company6",  
  "description": "hi just for demo",  
  "industry_type": "9219006",  
  "address_line1": "123 Maple Street",  
  "address": {  
    "address_line1": "123 Maple Street",  
    "city": "Austin",  
    "state": "Texas",  
    "country": 165,  
    "zipcode": "78701"  
  },  
  "facebook": "https://www.facebook.com",  
  "parent_company": 111085,  
  "organization_status": 9218981,  
  "twitter": "https://www.twitter.com",  
  "linkedIn": "https://www.linkedIn.com",  
  "annual_revenue": {  
    "currency": 3,  
    "value": 1.2345678901234568E12  
  },  
  "sic_code": 5357,  
  "territory": 63064,  
  "tags": [  
    65316  
  ],  
  "employee_count": 700,  
  "business_type": 9218986 
}
Response
{
  "code": 0,
  "data": {
    "updatedRecords": [121803]
  }
}