Update contact
curl --request PATCH \
--url https://productlane.com/api/v2/contacts/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com",
"image_url": "<string>",
"is_subscribed": true,
"company_id": "<string>",
"company_name": "<string>",
"company_external_id": "<string>"
}
'import requests
url = "https://productlane.com/api/v2/contacts/{id}"
payload = {
"name": "<string>",
"email": "jsmith@example.com",
"image_url": "<string>",
"is_subscribed": True,
"company_id": "<string>",
"company_name": "<string>",
"company_external_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
email: 'jsmith@example.com',
image_url: '<string>',
is_subscribed: true,
company_id: '<string>',
company_name: '<string>',
company_external_id: '<string>'
})
};
fetch('https://productlane.com/api/v2/contacts/{id}', 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://productlane.com/api/v2/contacts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'email' => 'jsmith@example.com',
'image_url' => '<string>',
'is_subscribed' => true,
'company_id' => '<string>',
'company_name' => '<string>',
'company_external_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://productlane.com/api/v2/contacts/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"image_url\": \"<string>\",\n \"is_subscribed\": true,\n \"company_id\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_external_id\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.patch("https://productlane.com/api/v2/contacts/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"image_url\": \"<string>\",\n \"is_subscribed\": true,\n \"company_id\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_external_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://productlane.com/api/v2/contacts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"image_url\": \"<string>\",\n \"is_subscribed\": true,\n \"company_id\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_external_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"email": "<string>",
"name": "<string>",
"image_url": "<string>",
"company_id": "<string>",
"is_subscribed": true,
"external_ids": {
"intercom": "<string>",
"front": "<string>",
"zendesk": "<string>",
"hubspot": "<string>",
"plain": "<string>",
"productboard": "<string>",
"slack_channel": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>"
}{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}Contacts
Update contact
Update contact by ID. You can update only your own contacts, and authentication is required.
PATCH
/
contacts
/
{id}
Update contact
curl --request PATCH \
--url https://productlane.com/api/v2/contacts/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com",
"image_url": "<string>",
"is_subscribed": true,
"company_id": "<string>",
"company_name": "<string>",
"company_external_id": "<string>"
}
'import requests
url = "https://productlane.com/api/v2/contacts/{id}"
payload = {
"name": "<string>",
"email": "jsmith@example.com",
"image_url": "<string>",
"is_subscribed": True,
"company_id": "<string>",
"company_name": "<string>",
"company_external_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
email: 'jsmith@example.com',
image_url: '<string>',
is_subscribed: true,
company_id: '<string>',
company_name: '<string>',
company_external_id: '<string>'
})
};
fetch('https://productlane.com/api/v2/contacts/{id}', 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://productlane.com/api/v2/contacts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'email' => 'jsmith@example.com',
'image_url' => '<string>',
'is_subscribed' => true,
'company_id' => '<string>',
'company_name' => '<string>',
'company_external_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://productlane.com/api/v2/contacts/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"image_url\": \"<string>\",\n \"is_subscribed\": true,\n \"company_id\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_external_id\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.patch("https://productlane.com/api/v2/contacts/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"image_url\": \"<string>\",\n \"is_subscribed\": true,\n \"company_id\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_external_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://productlane.com/api/v2/contacts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"image_url\": \"<string>\",\n \"is_subscribed\": true,\n \"company_id\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_external_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"email": "<string>",
"name": "<string>",
"image_url": "<string>",
"company_id": "<string>",
"is_subscribed": true,
"external_ids": {
"intercom": "<string>",
"front": "<string>",
"zendesk": "<string>",
"hubspot": "<string>",
"plain": "<string>",
"productboard": "<string>",
"slack_channel": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>"
}{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Required string length:
1 - 255Maximum string length:
254Avatar URL. null clears the stored avatar.
Receives changelog and per-project/issue update emails. Same flag flipped by the email-footer unsubscribe link.
Productlane company id. Mutually exclusive with company_name and company_external_id.
Required string length:
1 - 255Resolves a company by exact name. Errors if multiple companies share the name.
Required string length:
1 - 255Resolves a company by an entry in its external_ids array.
Required string length:
1 - 255⌘I