Update one or more fields on an existing company.
Security
bearerAuth
PUT
curl -i -X PUT \
'https://leadgen.grinfi.io/leads/api/companies/{uuid}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Acme Inc",
"domain": "acme.com",
"website": "https://acme.com",
"linkedin": "acme-inc",
"ln_id": 0,
"industry": "Technology",
"employees_range": "51-200",
"hq_raw_address": "San Francisco, CA",
"phone": "string",
"about": "string",
"lead_status_uuid": "string"
}'Updated company.
Response
{ "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "team_id": 0, "user_id": 0, "data_source_uuid": "string", "lead_status_uuid": "string", "name": "Acme Inc", "domain": "acme.com", "website": "https://acme.com", "ln_id": 0, "linkedin": "acme-inc", "facebook": "string", "twitter": "string", "phone": "string", "hq_raw_address": "San Francisco, CA, USA", "hq_location": [ {} ], "logo_url": "string", "industry": "Technology", "employees_range": "51-200", "year_established": 2015, "about": "string", "lists": [ "string" ], "tags": [ "string" ], "status": "string", "last_enrich_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }