Update company
Update standard attributes for existing company with HTTP PUT request.
PUT
/companies/:id/
Parameters
Type
Description
id
integer
Unique ID provided in company deal
Attributes
Type
Description
company_id
string
Your company custom ID
name
string
Name of company you want to add
phone_numbers
list
list of strings/integers separated by commas
description
string
description for company
...
...
...
curl -X PUT -H "Authorization: Token <your_64_char_api_key>" -H "Content-Type: application/json" -d '{
"name": "Updated name",
"description": "updated description",
}' "https://<your_app_subdomain>.user.com/api/public/companies/:id/"
Response
{
"id": 1666,
"name": "Updated name",
"description": "updated description",
"email": "company@email.com",
"country": "United States",
"region": null,
"city": "Beverly Hills",
"address": null,
"postal_code": "90210",
"approx_employees": null,
"created_at": "2017-07-06T15:39:25.513985Z",
"updated_at": "2017-07-06T15:39:25.514009Z",
"phone_numbers": [
"13102990912",
"13123456789"
],
"company_id": null
}
var settings = {
"async": true,
"crossDomain": true,
"url": "https://<your_app_subdomain>.user.com/api/public/companies/:id/",
"method": "PUT",
"headers": {
"authorization": "Token <your_64_char_api_key>",
"content-type": "application/json"
},
"data": {
"id": 1666,
"name": "Updated name",
"description": "updated description",
}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
var data = JSON.stringify({
"name": "Updated name",
"description": "updated description",
});
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("PUT", "https://<your_app_subdomain>.user.com/api/public/companies/:id/");
xhr.setRequestHeader("authorization", "Token <your_64_char_api_key>");
xhr.setRequestHeader("content-type", "application/json");
xhr.send(data);
var request = require("request");
var options = { method: 'PUT',
url: 'https://<your_app_subdomain>.user.com/api/public/companies/:id/',
headers: {
'content-type': 'application/json',
authorization: 'Token <your_64_char_api_key>'
},
form: {
"id": 1666,
"name": "Updated name",
"description": "updated description",
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://<your_app_subdomain>.user.com/api/public/companies/:id/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => "{\n \"name\": \"Updated name\",\n \"description\": \"updated description\"\n \n}",
CURLOPT_HTTPHEADER => array(
"authorization: Token <your_64_char_api_key>",
"content-type: application/json"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://<your_app_subdomain>.user.com/api/public/companies/:id/"
payload = "{\n \"name\": \"updated name\",\n \"description\": \"updated description\"\n \n}"
headers = {
'authorization': "Token <your_64_char_api_key>",
'content-type': "application/json"
}
response = requests.request("PUT", url, data=payload, headers=headers)
print(response.text)