cURL
curl --request PATCH \ --url https://api.example.com/v1/companies/:id \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "industry": "<string>", "website": "<string>", "linkedin_url": "<string>", "size": "<string>", "city": "<string>", "country": "<string>", "domain": "<string>", "description": "<string>", "tags": [ {} ] } '
{ "data": {} }
Update an existing company
Authorization: Bearer wbk_your_api_key_here Content-Type: application/json
id
name
industry
updated_date
curl -X PATCH https://data.leadlex.com/functions/v1/api-gateway/v1/companies/co-001 \ -H "Authorization: Bearer wbk_your_api_key_here" \ -H "Content-Type: application/json" \ -d '{ "industry": "Legal Tech", "size": "201-500" }'
not_found
insufficient_permissions
companies:write