Create a contact
curl --request POST \
--url https://api.recepta.ai/api/v1/api/contacts \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@example.com",
"phone": "+15551234567",
"source": "API",
"tags": [
"lead"
],
"status": "active",
"notes": "Met at conference",
"company_name": "Acme Corp",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zipCode": "<string>",
"country": "<string>",
"customFields": {}
}
'import requests
url = "https://api.recepta.ai/api/v1/api/contacts"
payload = {
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@example.com",
"phone": "+15551234567",
"source": "API",
"tags": ["lead"],
"status": "active",
"notes": "Met at conference",
"company_name": "Acme Corp",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zipCode": "<string>",
"country": "<string>",
"customFields": {}
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
firstName: 'Jane',
lastName: 'Doe',
email: 'jane@example.com',
phone: '+15551234567',
source: 'API',
tags: ['lead'],
status: 'active',
notes: 'Met at conference',
company_name: 'Acme Corp',
address: '<string>',
city: '<string>',
state: '<string>',
zipCode: '<string>',
country: '<string>',
customFields: {}
})
};
fetch('https://api.recepta.ai/api/v1/api/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.recepta.ai/api/v1/api/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([
'firstName' => 'Jane',
'lastName' => 'Doe',
'email' => 'jane@example.com',
'phone' => '+15551234567',
'source' => 'API',
'tags' => [
'lead'
],
'status' => 'active',
'notes' => 'Met at conference',
'company_name' => 'Acme Corp',
'address' => '<string>',
'city' => '<string>',
'state' => '<string>',
'zipCode' => '<string>',
'country' => '<string>',
'customFields' => [
]
]),
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://api.recepta.ai/api/v1/api/contacts"
payload := strings.NewReader("{\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"email\": \"jane@example.com\",\n \"phone\": \"+15551234567\",\n \"source\": \"API\",\n \"tags\": [\n \"lead\"\n ],\n \"status\": \"active\",\n \"notes\": \"Met at conference\",\n \"company_name\": \"Acme Corp\",\n \"address\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipCode\": \"<string>\",\n \"country\": \"<string>\",\n \"customFields\": {}\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.recepta.ai/api/v1/api/contacts")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"email\": \"jane@example.com\",\n \"phone\": \"+15551234567\",\n \"source\": \"API\",\n \"tags\": [\n \"lead\"\n ],\n \"status\": \"active\",\n \"notes\": \"Met at conference\",\n \"company_name\": \"Acme Corp\",\n \"address\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipCode\": \"<string>\",\n \"country\": \"<string>\",\n \"customFields\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recepta.ai/api/v1/api/contacts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"email\": \"jane@example.com\",\n \"phone\": \"+15551234567\",\n \"source\": \"API\",\n \"tags\": [\n \"lead\"\n ],\n \"status\": \"active\",\n \"notes\": \"Met at conference\",\n \"company_name\": \"Acme Corp\",\n \"address\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipCode\": \"<string>\",\n \"country\": \"<string>\",\n \"customFields\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Client created successfully",
"data": {
"client": {
"id": "697929d5ebccbcca5cdaf13b",
"firstName": "Jane",
"lastName": "Doe",
"fullName": "Jane Doe",
"email": "jane@example.com",
"phone": "+15551234567",
"source": "API",
"tags": [
"lead",
"website"
],
"status": "active",
"notes": "Interested in premium plan",
"company_name": "Acme Corp",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zipCode": "<string>",
"country": "<string>",
"customFields": {
"referralSource": "google"
},
"isActive": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
}{
"success": false,
"message": "Error description"
}Contacts
Create a Contact
Add a new contact to your account. Phone numbers are automatically normalized to E.164 format. Permission: contacts:create
POST
/
api
/
contacts
Create a contact
curl --request POST \
--url https://api.recepta.ai/api/v1/api/contacts \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@example.com",
"phone": "+15551234567",
"source": "API",
"tags": [
"lead"
],
"status": "active",
"notes": "Met at conference",
"company_name": "Acme Corp",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zipCode": "<string>",
"country": "<string>",
"customFields": {}
}
'import requests
url = "https://api.recepta.ai/api/v1/api/contacts"
payload = {
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@example.com",
"phone": "+15551234567",
"source": "API",
"tags": ["lead"],
"status": "active",
"notes": "Met at conference",
"company_name": "Acme Corp",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zipCode": "<string>",
"country": "<string>",
"customFields": {}
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
firstName: 'Jane',
lastName: 'Doe',
email: 'jane@example.com',
phone: '+15551234567',
source: 'API',
tags: ['lead'],
status: 'active',
notes: 'Met at conference',
company_name: 'Acme Corp',
address: '<string>',
city: '<string>',
state: '<string>',
zipCode: '<string>',
country: '<string>',
customFields: {}
})
};
fetch('https://api.recepta.ai/api/v1/api/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.recepta.ai/api/v1/api/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([
'firstName' => 'Jane',
'lastName' => 'Doe',
'email' => 'jane@example.com',
'phone' => '+15551234567',
'source' => 'API',
'tags' => [
'lead'
],
'status' => 'active',
'notes' => 'Met at conference',
'company_name' => 'Acme Corp',
'address' => '<string>',
'city' => '<string>',
'state' => '<string>',
'zipCode' => '<string>',
'country' => '<string>',
'customFields' => [
]
]),
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://api.recepta.ai/api/v1/api/contacts"
payload := strings.NewReader("{\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"email\": \"jane@example.com\",\n \"phone\": \"+15551234567\",\n \"source\": \"API\",\n \"tags\": [\n \"lead\"\n ],\n \"status\": \"active\",\n \"notes\": \"Met at conference\",\n \"company_name\": \"Acme Corp\",\n \"address\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipCode\": \"<string>\",\n \"country\": \"<string>\",\n \"customFields\": {}\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.recepta.ai/api/v1/api/contacts")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"email\": \"jane@example.com\",\n \"phone\": \"+15551234567\",\n \"source\": \"API\",\n \"tags\": [\n \"lead\"\n ],\n \"status\": \"active\",\n \"notes\": \"Met at conference\",\n \"company_name\": \"Acme Corp\",\n \"address\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipCode\": \"<string>\",\n \"country\": \"<string>\",\n \"customFields\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recepta.ai/api/v1/api/contacts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"firstName\": \"Jane\",\n \"lastName\": \"Doe\",\n \"email\": \"jane@example.com\",\n \"phone\": \"+15551234567\",\n \"source\": \"API\",\n \"tags\": [\n \"lead\"\n ],\n \"status\": \"active\",\n \"notes\": \"Met at conference\",\n \"company_name\": \"Acme Corp\",\n \"address\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipCode\": \"<string>\",\n \"country\": \"<string>\",\n \"customFields\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Client created successfully",
"data": {
"client": {
"id": "697929d5ebccbcca5cdaf13b",
"firstName": "Jane",
"lastName": "Doe",
"fullName": "Jane Doe",
"email": "jane@example.com",
"phone": "+15551234567",
"source": "API",
"tags": [
"lead",
"website"
],
"status": "active",
"notes": "Interested in premium plan",
"company_name": "Acme Corp",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zipCode": "<string>",
"country": "<string>",
"customFields": {
"referralSource": "google"
},
"isActive": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
}{
"success": false,
"message": "Error description"
}Authorizations
Your Recepta API key (starts with rcp_)
Body
application/json
Example:
"Jane"
Example:
"Doe"
Example:
"jane@example.com"
Phone number (auto-normalized to E.164)
Example:
"+15551234567"
Available options:
MANUAL, FACEBOOK, CSV, API, CALL Example:
["lead"]
Example:
"active"
Example:
"Met at conference"
Example:
"Acme Corp"
Arbitrary key-value pairs
⌘I

