Create contacts
curl --request POST \
--url https://api.tented.ai/v1/contacts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"client_item_id": "<string>",
"email": "<string>",
"phone": "<string>",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"job_title": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip_code": "<string>",
"lead_status": "<string>",
"lifecycle_stage": "<string>",
"tented_score": 123,
"unsubscribed": true,
"marketing_email_subscribed": true,
"marketing_sms_subscribed": true
}
]
}
'import requests
url = "https://api.tented.ai/v1/contacts"
payload = { "items": [
{
"client_item_id": "<string>",
"email": "<string>",
"phone": "<string>",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"job_title": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip_code": "<string>",
"lead_status": "<string>",
"lifecycle_stage": "<string>",
"tented_score": 123,
"unsubscribed": True,
"marketing_email_subscribed": True,
"marketing_sms_subscribed": True
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
items: [
{
client_item_id: '<string>',
email: '<string>',
phone: '<string>',
display_name: '<string>',
first_name: '<string>',
last_name: '<string>',
company: '<string>',
job_title: '<string>',
address: '<string>',
address2: '<string>',
city: '<string>',
state: '<string>',
country: '<string>',
zip_code: '<string>',
lead_status: '<string>',
lifecycle_stage: '<string>',
tented_score: 123,
unsubscribed: true,
marketing_email_subscribed: true,
marketing_sms_subscribed: true
}
]
})
};
fetch('https://api.tented.ai/v1/contacts', 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://api.tented.ai/v1/contacts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'items' => [
[
'client_item_id' => '<string>',
'email' => '<string>',
'phone' => '<string>',
'display_name' => '<string>',
'first_name' => '<string>',
'last_name' => '<string>',
'company' => '<string>',
'job_title' => '<string>',
'address' => '<string>',
'address2' => '<string>',
'city' => '<string>',
'state' => '<string>',
'country' => '<string>',
'zip_code' => '<string>',
'lead_status' => '<string>',
'lifecycle_stage' => '<string>',
'tented_score' => 123,
'unsubscribed' => true,
'marketing_email_subscribed' => true,
'marketing_sms_subscribed' => true
]
]
]),
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://api.tented.ai/v1/contacts"
payload := strings.NewReader("{\n \"items\": [\n {\n \"client_item_id\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"display_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company\": \"<string>\",\n \"job_title\": \"<string>\",\n \"address\": \"<string>\",\n \"address2\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"zip_code\": \"<string>\",\n \"lead_status\": \"<string>\",\n \"lifecycle_stage\": \"<string>\",\n \"tented_score\": 123,\n \"unsubscribed\": true,\n \"marketing_email_subscribed\": true,\n \"marketing_sms_subscribed\": true\n }\n ]\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.tented.ai/v1/contacts")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"client_item_id\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"display_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company\": \"<string>\",\n \"job_title\": \"<string>\",\n \"address\": \"<string>\",\n \"address2\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"zip_code\": \"<string>\",\n \"lead_status\": \"<string>\",\n \"lifecycle_stage\": \"<string>\",\n \"tented_score\": 123,\n \"unsubscribed\": true,\n \"marketing_email_subscribed\": true,\n \"marketing_sms_subscribed\": true\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tented.ai/v1/contacts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"items\": [\n {\n \"client_item_id\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"display_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company\": \"<string>\",\n \"job_title\": \"<string>\",\n \"address\": \"<string>\",\n \"address2\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"zip_code\": \"<string>\",\n \"lead_status\": \"<string>\",\n \"lifecycle_stage\": \"<string>\",\n \"tented_score\": 123,\n \"unsubscribed\": true,\n \"marketing_email_subscribed\": true,\n \"marketing_sms_subscribed\": true\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "<string>",
"created_count": 123,
"rejected_count": 123,
"items": [
{
"index": 123,
"status": "created",
"client_item_id": "<string>",
"contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contact": {
"contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone": "<string>",
"email_domain": "<string>",
"company": "<string>",
"job_title": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip_code": "<string>",
"original_source": "<string>",
"original_source_detail": "<string>",
"lead_status": "<string>",
"lifecycle_stage": "<string>",
"tented_score": 123,
"unsubscribed": true,
"marketing_email_subscribed": true,
"marketing_sms_subscribed": true,
"marketing_email_invalid": true,
"marketing_sms_invalid": true,
"last_activity_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"error_code": "bad_request",
"message": "<string>",
"existing_contact": {
"contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"display_name": "<string>",
"email": "<string>",
"phone": "<string>"
}
}
]
}{
"error": "<string>",
"error_code": "<string>",
"message": "<string>",
"code": "<string>",
"details": {},
"limit": 123,
"current": 123
}{
"error": "<string>",
"error_code": "<string>",
"message": "<string>",
"code": "<string>",
"details": {},
"limit": 123,
"current": 123
}Contacts
Create contacts
Create up to 100 contacts in one request. Each item needs an email and/or phone. Duplicates (matching a normalized email or phone) are rejected per-item with error_code: conflict and the existing_contact. Partial success is normal — check each item result.
POST
/
v1
/
contacts
Create contacts
curl --request POST \
--url https://api.tented.ai/v1/contacts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"client_item_id": "<string>",
"email": "<string>",
"phone": "<string>",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"job_title": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip_code": "<string>",
"lead_status": "<string>",
"lifecycle_stage": "<string>",
"tented_score": 123,
"unsubscribed": true,
"marketing_email_subscribed": true,
"marketing_sms_subscribed": true
}
]
}
'import requests
url = "https://api.tented.ai/v1/contacts"
payload = { "items": [
{
"client_item_id": "<string>",
"email": "<string>",
"phone": "<string>",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"job_title": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip_code": "<string>",
"lead_status": "<string>",
"lifecycle_stage": "<string>",
"tented_score": 123,
"unsubscribed": True,
"marketing_email_subscribed": True,
"marketing_sms_subscribed": True
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
items: [
{
client_item_id: '<string>',
email: '<string>',
phone: '<string>',
display_name: '<string>',
first_name: '<string>',
last_name: '<string>',
company: '<string>',
job_title: '<string>',
address: '<string>',
address2: '<string>',
city: '<string>',
state: '<string>',
country: '<string>',
zip_code: '<string>',
lead_status: '<string>',
lifecycle_stage: '<string>',
tented_score: 123,
unsubscribed: true,
marketing_email_subscribed: true,
marketing_sms_subscribed: true
}
]
})
};
fetch('https://api.tented.ai/v1/contacts', 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://api.tented.ai/v1/contacts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'items' => [
[
'client_item_id' => '<string>',
'email' => '<string>',
'phone' => '<string>',
'display_name' => '<string>',
'first_name' => '<string>',
'last_name' => '<string>',
'company' => '<string>',
'job_title' => '<string>',
'address' => '<string>',
'address2' => '<string>',
'city' => '<string>',
'state' => '<string>',
'country' => '<string>',
'zip_code' => '<string>',
'lead_status' => '<string>',
'lifecycle_stage' => '<string>',
'tented_score' => 123,
'unsubscribed' => true,
'marketing_email_subscribed' => true,
'marketing_sms_subscribed' => true
]
]
]),
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://api.tented.ai/v1/contacts"
payload := strings.NewReader("{\n \"items\": [\n {\n \"client_item_id\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"display_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company\": \"<string>\",\n \"job_title\": \"<string>\",\n \"address\": \"<string>\",\n \"address2\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"zip_code\": \"<string>\",\n \"lead_status\": \"<string>\",\n \"lifecycle_stage\": \"<string>\",\n \"tented_score\": 123,\n \"unsubscribed\": true,\n \"marketing_email_subscribed\": true,\n \"marketing_sms_subscribed\": true\n }\n ]\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.tented.ai/v1/contacts")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"client_item_id\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"display_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company\": \"<string>\",\n \"job_title\": \"<string>\",\n \"address\": \"<string>\",\n \"address2\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"zip_code\": \"<string>\",\n \"lead_status\": \"<string>\",\n \"lifecycle_stage\": \"<string>\",\n \"tented_score\": 123,\n \"unsubscribed\": true,\n \"marketing_email_subscribed\": true,\n \"marketing_sms_subscribed\": true\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tented.ai/v1/contacts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"items\": [\n {\n \"client_item_id\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"display_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company\": \"<string>\",\n \"job_title\": \"<string>\",\n \"address\": \"<string>\",\n \"address2\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"zip_code\": \"<string>\",\n \"lead_status\": \"<string>\",\n \"lifecycle_stage\": \"<string>\",\n \"tented_score\": 123,\n \"unsubscribed\": true,\n \"marketing_email_subscribed\": true,\n \"marketing_sms_subscribed\": true\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "<string>",
"created_count": 123,
"rejected_count": 123,
"items": [
{
"index": 123,
"status": "created",
"client_item_id": "<string>",
"contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contact": {
"contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"display_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone": "<string>",
"email_domain": "<string>",
"company": "<string>",
"job_title": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip_code": "<string>",
"original_source": "<string>",
"original_source_detail": "<string>",
"lead_status": "<string>",
"lifecycle_stage": "<string>",
"tented_score": 123,
"unsubscribed": true,
"marketing_email_subscribed": true,
"marketing_sms_subscribed": true,
"marketing_email_invalid": true,
"marketing_sms_invalid": true,
"last_activity_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"error_code": "bad_request",
"message": "<string>",
"existing_contact": {
"contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"display_name": "<string>",
"email": "<string>",
"phone": "<string>"
}
}
]
}{
"error": "<string>",
"error_code": "<string>",
"message": "<string>",
"code": "<string>",
"details": {},
"limit": 123,
"current": 123
}{
"error": "<string>",
"error_code": "<string>",
"message": "<string>",
"code": "<string>",
"details": {},
"limit": 123,
"current": 123
}Authorizations
Workspace API key, e.g. Authorization: Bearer tented_.... Create keys in Workspace Settings → API Keys.
Body
application/json
Contacts to create (1–100).
Required array length:
1 - 100 elementsShow child attributes
Show child attributes
Response
Batch processed (individual items may still be rejected).