cURL
curl --request PUT \
--url https://api.teamfollowup.ai/api/v2/projects/{id} \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"agencyName": "Acme Agency",
"active": true,
"callbacksHandledByHuman": false,
"multipleTimezoneCheck": true,
"businessName": "Acme Clinic",
"businessNameOverridden": true,
"callingWindowOverride": {
"days": [
1,
2,
3,
4,
5
],
"start": "09:00",
"end": "17:00",
"tz": "America/New_York"
},
"knowledgeBase": "Clinic hours are Monday through Friday, 9 AM to 5 PM."
}'import requests
url = "https://api.teamfollowup.ai/api/v2/projects/{id}"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.teamfollowup.ai/api/v2/projects/{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://api.teamfollowup.ai/api/v2/projects/{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 => json_encode([
]),
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.teamfollowup.ai/api/v2/projects/{id}"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("PUT", 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.put("https://api.teamfollowup.ai/api/v2/projects/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/v2/projects/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "64f2a8c8a2b3c4d5e6f7a8b9",
"crm": "ghl",
"locationId": "loc_9f7a123",
"companyId": "company_123",
"timezone": "America/New_York",
"agencyName": "Acme Agency",
"agencyId": "partner_123",
"active": true,
"status": "live",
"installed": true,
"callbacksHandledByHuman": false,
"multipleTimezoneCheck": true,
"callingWindowOverride": null,
"knowledgeBase": "Clinic hours are Monday through Friday, 9 AM to 5 PM.",
"businessName": "Acme Clinic",
"businessNameOverridden": true,
"campaigns": [
{
"id": "campaign_speed_to_lead_123",
"name": "Speed to Lead",
"activeTags": [
"new_lead"
],
"inactiveTags": [
"do_not_call"
],
"dialing": "s2l_pd",
"agentType": "appointment_booking",
"agentId": "agent_2b7c9f4a",
"fromNumbers": [
"+14155551234"
],
"active": false,
"callingWindow": {
"days": [
1,
2,
3,
4,
5
],
"start": "09:00",
"end": "17:00",
"tz": "America/New_York"
},
"multipleTimezoneCheck": true,
"dropOutsideWindow": false,
"config": {
"cadenceId": "cadence_123",
"calendarId": "calendar_primary",
"transferNumber": "+14155550100"
},
"createdAt": "2026-07-08T16:20:00.000Z",
"updatedAt": "2026-07-08T16:30:00.000Z"
}
],
"createdAt": "2026-07-08T16:10:00.000Z",
"updatedAt": "2026-07-08T16:30:00.000Z",
"ghl": {
"id": "loc_9f7a123",
"name": "Acme Clinic",
"timezone": "America/New_York",
"country": "US",
"phone": "+14155550000",
"address": "100 Market St",
"city": "San Francisco",
"state": "CA",
"postalCode": "94105",
"email": "frontdesk@example.test",
"website": "https://example.test"
}
}
}{
"success": false,
"error": "VALIDATION",
"message": "businessName is required."
}{
"success": false,
"error": "Unauthorized",
"message": "Authentication required."
}{
"success": false,
"error": "Forbidden",
"message": "You do not have permission to access this resource."
}{
"success": false,
"message": "Project not found."
}{
"success": false,
"code": "SubAccountCapReached",
"message": "You have reached your project limit."
}{
"success": false,
"error": "TooManyRequests",
"message": "Too many requests, please try again later."
}{
"success": false,
"error": "InternalError",
"message": "Unexpected server error."
}Update project
Update project settings such as live state, display name, knowledge base, timezone behavior, and calling-window override. Customer role: agency_admin.
Required API key scope: projects:write.
PUT
/
api
/
v2
/
projects
/
{id}
cURL
curl --request PUT \
--url https://api.teamfollowup.ai/api/v2/projects/{id} \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"agencyName": "Acme Agency",
"active": true,
"callbacksHandledByHuman": false,
"multipleTimezoneCheck": true,
"businessName": "Acme Clinic",
"businessNameOverridden": true,
"callingWindowOverride": {
"days": [
1,
2,
3,
4,
5
],
"start": "09:00",
"end": "17:00",
"tz": "America/New_York"
},
"knowledgeBase": "Clinic hours are Monday through Friday, 9 AM to 5 PM."
}'import requests
url = "https://api.teamfollowup.ai/api/v2/projects/{id}"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.teamfollowup.ai/api/v2/projects/{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://api.teamfollowup.ai/api/v2/projects/{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 => json_encode([
]),
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.teamfollowup.ai/api/v2/projects/{id}"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("PUT", 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.put("https://api.teamfollowup.ai/api/v2/projects/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/v2/projects/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "64f2a8c8a2b3c4d5e6f7a8b9",
"crm": "ghl",
"locationId": "loc_9f7a123",
"companyId": "company_123",
"timezone": "America/New_York",
"agencyName": "Acme Agency",
"agencyId": "partner_123",
"active": true,
"status": "live",
"installed": true,
"callbacksHandledByHuman": false,
"multipleTimezoneCheck": true,
"callingWindowOverride": null,
"knowledgeBase": "Clinic hours are Monday through Friday, 9 AM to 5 PM.",
"businessName": "Acme Clinic",
"businessNameOverridden": true,
"campaigns": [
{
"id": "campaign_speed_to_lead_123",
"name": "Speed to Lead",
"activeTags": [
"new_lead"
],
"inactiveTags": [
"do_not_call"
],
"dialing": "s2l_pd",
"agentType": "appointment_booking",
"agentId": "agent_2b7c9f4a",
"fromNumbers": [
"+14155551234"
],
"active": false,
"callingWindow": {
"days": [
1,
2,
3,
4,
5
],
"start": "09:00",
"end": "17:00",
"tz": "America/New_York"
},
"multipleTimezoneCheck": true,
"dropOutsideWindow": false,
"config": {
"cadenceId": "cadence_123",
"calendarId": "calendar_primary",
"transferNumber": "+14155550100"
},
"createdAt": "2026-07-08T16:20:00.000Z",
"updatedAt": "2026-07-08T16:30:00.000Z"
}
],
"createdAt": "2026-07-08T16:10:00.000Z",
"updatedAt": "2026-07-08T16:30:00.000Z",
"ghl": {
"id": "loc_9f7a123",
"name": "Acme Clinic",
"timezone": "America/New_York",
"country": "US",
"phone": "+14155550000",
"address": "100 Market St",
"city": "San Francisco",
"state": "CA",
"postalCode": "94105",
"email": "frontdesk@example.test",
"website": "https://example.test"
}
}
}{
"success": false,
"error": "VALIDATION",
"message": "businessName is required."
}{
"success": false,
"error": "Unauthorized",
"message": "Authentication required."
}{
"success": false,
"error": "Forbidden",
"message": "You do not have permission to access this resource."
}{
"success": false,
"message": "Project not found."
}{
"success": false,
"code": "SubAccountCapReached",
"message": "You have reached your project limit."
}{
"success": false,
"error": "TooManyRequests",
"message": "Too many requests, please try again later."
}{
"success": false,
"error": "InternalError",
"message": "Unexpected server error."
}Authorizations
Send your API key as Authorization: Bearer YOUR_API_KEY.
Path Parameters
Project id.
Minimum string length:
1Body
application/json
Project update payload.
Example:
"Acme Agency"
Whether the project accepts calls. Parking a project frees its plan slot.
Example:
true
Example:
false
Example:
true
Example:
"Acme Clinic"
Example:
true
- object
- object[]
Show child attributes
Show child attributes
Example:
"Clinic hours are Monday through Friday, 9 AM to 5 PM."
⌘I
