Update a Company by UUID.
curl --request PUT \
--url https://production-api.joinrings.com/v1/companies/{company_uuid} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"acquisition_status": "<string>",
"business_model": "<string>",
"city": "<string>",
"company_custom_fields": {},
"company_name": "<string>",
"company_type": "<string>",
"country": "<string>",
"description": "<string>",
"email": "<string>",
"employee_count": "<string>",
"facebook_url": "<string>",
"ipo_status": "<string>",
"linkedin_url": "<string>",
"logo_url": "<string>",
"operating_status": "<string>",
"phone": "<string>",
"region": "<string>",
"sector": "<string>",
"state": "<string>",
"street_address": "<string>",
"thesis_area": "<string>",
"twitter_url": "<string>",
"website": "<string>",
"year_founded": "<string>"
}
'import requests
url = "https://production-api.joinrings.com/v1/companies/{company_uuid}"
payload = {
"acquisition_status": "<string>",
"business_model": "<string>",
"city": "<string>",
"company_custom_fields": {},
"company_name": "<string>",
"company_type": "<string>",
"country": "<string>",
"description": "<string>",
"email": "<string>",
"employee_count": "<string>",
"facebook_url": "<string>",
"ipo_status": "<string>",
"linkedin_url": "<string>",
"logo_url": "<string>",
"operating_status": "<string>",
"phone": "<string>",
"region": "<string>",
"sector": "<string>",
"state": "<string>",
"street_address": "<string>",
"thesis_area": "<string>",
"twitter_url": "<string>",
"website": "<string>",
"year_founded": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
acquisition_status: '<string>',
business_model: '<string>',
city: '<string>',
company_custom_fields: {},
company_name: '<string>',
company_type: '<string>',
country: '<string>',
description: '<string>',
email: '<string>',
employee_count: '<string>',
facebook_url: '<string>',
ipo_status: '<string>',
linkedin_url: '<string>',
logo_url: '<string>',
operating_status: '<string>',
phone: '<string>',
region: '<string>',
sector: '<string>',
state: '<string>',
street_address: '<string>',
thesis_area: '<string>',
twitter_url: '<string>',
website: '<string>',
year_founded: '<string>'
})
};
fetch('https://production-api.joinrings.com/v1/companies/{company_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.joinrings.com/v1/companies/{company_uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'acquisition_status' => '<string>',
'business_model' => '<string>',
'city' => '<string>',
'company_custom_fields' => [
],
'company_name' => '<string>',
'company_type' => '<string>',
'country' => '<string>',
'description' => '<string>',
'email' => '<string>',
'employee_count' => '<string>',
'facebook_url' => '<string>',
'ipo_status' => '<string>',
'linkedin_url' => '<string>',
'logo_url' => '<string>',
'operating_status' => '<string>',
'phone' => '<string>',
'region' => '<string>',
'sector' => '<string>',
'state' => '<string>',
'street_address' => '<string>',
'thesis_area' => '<string>',
'twitter_url' => '<string>',
'website' => '<string>',
'year_founded' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://production-api.joinrings.com/v1/companies/{company_uuid}"
payload := strings.NewReader("{\n \"acquisition_status\": \"<string>\",\n \"business_model\": \"<string>\",\n \"city\": \"<string>\",\n \"company_custom_fields\": {},\n \"company_name\": \"<string>\",\n \"company_type\": \"<string>\",\n \"country\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"employee_count\": \"<string>\",\n \"facebook_url\": \"<string>\",\n \"ipo_status\": \"<string>\",\n \"linkedin_url\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"operating_status\": \"<string>\",\n \"phone\": \"<string>\",\n \"region\": \"<string>\",\n \"sector\": \"<string>\",\n \"state\": \"<string>\",\n \"street_address\": \"<string>\",\n \"thesis_area\": \"<string>\",\n \"twitter_url\": \"<string>\",\n \"website\": \"<string>\",\n \"year_founded\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://production-api.joinrings.com/v1/companies/{company_uuid}")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"acquisition_status\": \"<string>\",\n \"business_model\": \"<string>\",\n \"city\": \"<string>\",\n \"company_custom_fields\": {},\n \"company_name\": \"<string>\",\n \"company_type\": \"<string>\",\n \"country\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"employee_count\": \"<string>\",\n \"facebook_url\": \"<string>\",\n \"ipo_status\": \"<string>\",\n \"linkedin_url\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"operating_status\": \"<string>\",\n \"phone\": \"<string>\",\n \"region\": \"<string>\",\n \"sector\": \"<string>\",\n \"state\": \"<string>\",\n \"street_address\": \"<string>\",\n \"thesis_area\": \"<string>\",\n \"twitter_url\": \"<string>\",\n \"website\": \"<string>\",\n \"year_founded\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.joinrings.com/v1/companies/{company_uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"acquisition_status\": \"<string>\",\n \"business_model\": \"<string>\",\n \"city\": \"<string>\",\n \"company_custom_fields\": {},\n \"company_name\": \"<string>\",\n \"company_type\": \"<string>\",\n \"country\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"employee_count\": \"<string>\",\n \"facebook_url\": \"<string>\",\n \"ipo_status\": \"<string>\",\n \"linkedin_url\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"operating_status\": \"<string>\",\n \"phone\": \"<string>\",\n \"region\": \"<string>\",\n \"sector\": \"<string>\",\n \"state\": \"<string>\",\n \"street_address\": \"<string>\",\n \"thesis_area\": \"<string>\",\n \"twitter_url\": \"<string>\",\n \"website\": \"<string>\",\n \"year_founded\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"rings_updated_at": 123,
"uuid": "<string>"
}Company
Update a company
Only fields provided in the request body are written; other attributes on the existing record are preserved. Returns 404 if the company is not visible in the tenant Explorer view.
PUT
/
v1
/
companies
/
{company_uuid}
Update a Company by UUID.
curl --request PUT \
--url https://production-api.joinrings.com/v1/companies/{company_uuid} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"acquisition_status": "<string>",
"business_model": "<string>",
"city": "<string>",
"company_custom_fields": {},
"company_name": "<string>",
"company_type": "<string>",
"country": "<string>",
"description": "<string>",
"email": "<string>",
"employee_count": "<string>",
"facebook_url": "<string>",
"ipo_status": "<string>",
"linkedin_url": "<string>",
"logo_url": "<string>",
"operating_status": "<string>",
"phone": "<string>",
"region": "<string>",
"sector": "<string>",
"state": "<string>",
"street_address": "<string>",
"thesis_area": "<string>",
"twitter_url": "<string>",
"website": "<string>",
"year_founded": "<string>"
}
'import requests
url = "https://production-api.joinrings.com/v1/companies/{company_uuid}"
payload = {
"acquisition_status": "<string>",
"business_model": "<string>",
"city": "<string>",
"company_custom_fields": {},
"company_name": "<string>",
"company_type": "<string>",
"country": "<string>",
"description": "<string>",
"email": "<string>",
"employee_count": "<string>",
"facebook_url": "<string>",
"ipo_status": "<string>",
"linkedin_url": "<string>",
"logo_url": "<string>",
"operating_status": "<string>",
"phone": "<string>",
"region": "<string>",
"sector": "<string>",
"state": "<string>",
"street_address": "<string>",
"thesis_area": "<string>",
"twitter_url": "<string>",
"website": "<string>",
"year_founded": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
acquisition_status: '<string>',
business_model: '<string>',
city: '<string>',
company_custom_fields: {},
company_name: '<string>',
company_type: '<string>',
country: '<string>',
description: '<string>',
email: '<string>',
employee_count: '<string>',
facebook_url: '<string>',
ipo_status: '<string>',
linkedin_url: '<string>',
logo_url: '<string>',
operating_status: '<string>',
phone: '<string>',
region: '<string>',
sector: '<string>',
state: '<string>',
street_address: '<string>',
thesis_area: '<string>',
twitter_url: '<string>',
website: '<string>',
year_founded: '<string>'
})
};
fetch('https://production-api.joinrings.com/v1/companies/{company_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.joinrings.com/v1/companies/{company_uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'acquisition_status' => '<string>',
'business_model' => '<string>',
'city' => '<string>',
'company_custom_fields' => [
],
'company_name' => '<string>',
'company_type' => '<string>',
'country' => '<string>',
'description' => '<string>',
'email' => '<string>',
'employee_count' => '<string>',
'facebook_url' => '<string>',
'ipo_status' => '<string>',
'linkedin_url' => '<string>',
'logo_url' => '<string>',
'operating_status' => '<string>',
'phone' => '<string>',
'region' => '<string>',
'sector' => '<string>',
'state' => '<string>',
'street_address' => '<string>',
'thesis_area' => '<string>',
'twitter_url' => '<string>',
'website' => '<string>',
'year_founded' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://production-api.joinrings.com/v1/companies/{company_uuid}"
payload := strings.NewReader("{\n \"acquisition_status\": \"<string>\",\n \"business_model\": \"<string>\",\n \"city\": \"<string>\",\n \"company_custom_fields\": {},\n \"company_name\": \"<string>\",\n \"company_type\": \"<string>\",\n \"country\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"employee_count\": \"<string>\",\n \"facebook_url\": \"<string>\",\n \"ipo_status\": \"<string>\",\n \"linkedin_url\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"operating_status\": \"<string>\",\n \"phone\": \"<string>\",\n \"region\": \"<string>\",\n \"sector\": \"<string>\",\n \"state\": \"<string>\",\n \"street_address\": \"<string>\",\n \"thesis_area\": \"<string>\",\n \"twitter_url\": \"<string>\",\n \"website\": \"<string>\",\n \"year_founded\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://production-api.joinrings.com/v1/companies/{company_uuid}")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"acquisition_status\": \"<string>\",\n \"business_model\": \"<string>\",\n \"city\": \"<string>\",\n \"company_custom_fields\": {},\n \"company_name\": \"<string>\",\n \"company_type\": \"<string>\",\n \"country\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"employee_count\": \"<string>\",\n \"facebook_url\": \"<string>\",\n \"ipo_status\": \"<string>\",\n \"linkedin_url\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"operating_status\": \"<string>\",\n \"phone\": \"<string>\",\n \"region\": \"<string>\",\n \"sector\": \"<string>\",\n \"state\": \"<string>\",\n \"street_address\": \"<string>\",\n \"thesis_area\": \"<string>\",\n \"twitter_url\": \"<string>\",\n \"website\": \"<string>\",\n \"year_founded\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.joinrings.com/v1/companies/{company_uuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"acquisition_status\": \"<string>\",\n \"business_model\": \"<string>\",\n \"city\": \"<string>\",\n \"company_custom_fields\": {},\n \"company_name\": \"<string>\",\n \"company_type\": \"<string>\",\n \"country\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"employee_count\": \"<string>\",\n \"facebook_url\": \"<string>\",\n \"ipo_status\": \"<string>\",\n \"linkedin_url\": \"<string>\",\n \"logo_url\": \"<string>\",\n \"operating_status\": \"<string>\",\n \"phone\": \"<string>\",\n \"region\": \"<string>\",\n \"sector\": \"<string>\",\n \"state\": \"<string>\",\n \"street_address\": \"<string>\",\n \"thesis_area\": \"<string>\",\n \"twitter_url\": \"<string>\",\n \"website\": \"<string>\",\n \"year_founded\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"rings_updated_at": 123,
"uuid": "<string>"
}Authorizations
Path Parameters
Body
application/json
Internal/custom field values to set, keyed by field UUID. Replaces the entire object on write — there is no per-key merge, so a partial update must resend every key it wants to keep (same semantics as GraphQL's company_custom_fields).
Employee count band, not an exact number — a range string like '11-50' or the sentinel '10000+' (matches the format used by GET /v1/companies' employee_count_from/to filters).
⌘I