curl --request POST \
--url https://app.octavehq.com/api/v2/segment/update \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"oId": "sg_1234",
"name": "Enterprise Technology Companies",
"internalName": "EnterpriseTech500Plus",
"description": "Large technology companies with 500+ employees seeking digital transformation",
"strategicFit": [
"High contract values driven by complex operational requirements.",
"Strong expansion potential as adoption spreads across departments."
],
"operatingCharacteristics": [
"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.",
"Decision-making distributed across technical and business stakeholders."
],
"buyingDynamics": [
"Procurement and security review required before contract signature.",
"Multi-stakeholder evaluation typically driven by an executive sponsor."
],
"strategicPriorities": [
"Investing in automation to reduce manual operational overhead.",
"Building data infrastructure to support real-time decision making."
],
"marketPressures": [
"Increasing competition from well-funded startups offering point solutions.",
"Regulatory complexity growing across multiple jurisdictions."
],
"firmographics": {
"industry": [],
"businessModel": [],
"geography": [],
"revenue": [],
"employees": []
},
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {
"tier": "Enterprise",
"region": "APAC"
}
}
'import requests
url = "https://app.octavehq.com/api/v2/segment/update"
payload = {
"oId": "sg_1234",
"name": "Enterprise Technology Companies",
"internalName": "EnterpriseTech500Plus",
"description": "Large technology companies with 500+ employees seeking digital transformation",
"strategicFit": ["High contract values driven by complex operational requirements.", "Strong expansion potential as adoption spreads across departments."],
"operatingCharacteristics": ["Cross-functional teams with shared ownership of outcomes spanning engineering and operations.", "Decision-making distributed across technical and business stakeholders."],
"buyingDynamics": ["Procurement and security review required before contract signature.", "Multi-stakeholder evaluation typically driven by an executive sponsor."],
"strategicPriorities": ["Investing in automation to reduce manual operational overhead.", "Building data infrastructure to support real-time decision making."],
"marketPressures": ["Increasing competition from well-funded startups offering point solutions.", "Regulatory complexity growing across multiple jurisdictions."],
"firmographics": {
"industry": [],
"businessModel": [],
"geography": [],
"revenue": [],
"employees": []
},
"customFields": [
{
"title": "<string>",
"value": ["<string>"]
}
],
"additionalProperties": {
"tier": "Enterprise",
"region": "APAC"
}
}
headers = {
"api_key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {api_key: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
oId: 'sg_1234',
name: 'Enterprise Technology Companies',
internalName: 'EnterpriseTech500Plus',
description: 'Large technology companies with 500+ employees seeking digital transformation',
strategicFit: [
'High contract values driven by complex operational requirements.',
'Strong expansion potential as adoption spreads across departments.'
],
operatingCharacteristics: [
'Cross-functional teams with shared ownership of outcomes spanning engineering and operations.',
'Decision-making distributed across technical and business stakeholders.'
],
buyingDynamics: [
'Procurement and security review required before contract signature.',
'Multi-stakeholder evaluation typically driven by an executive sponsor.'
],
strategicPriorities: [
'Investing in automation to reduce manual operational overhead.',
'Building data infrastructure to support real-time decision making.'
],
marketPressures: [
'Increasing competition from well-funded startups offering point solutions.',
'Regulatory complexity growing across multiple jurisdictions.'
],
firmographics: {industry: [], businessModel: [], geography: [], revenue: [], employees: []},
customFields: [{title: '<string>', value: ['<string>']}],
additionalProperties: {tier: 'Enterprise', region: 'APAC'}
})
};
fetch('https://app.octavehq.com/api/v2/segment/update', 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://app.octavehq.com/api/v2/segment/update",
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([
'oId' => 'sg_1234',
'name' => 'Enterprise Technology Companies',
'internalName' => 'EnterpriseTech500Plus',
'description' => 'Large technology companies with 500+ employees seeking digital transformation',
'strategicFit' => [
'High contract values driven by complex operational requirements.',
'Strong expansion potential as adoption spreads across departments.'
],
'operatingCharacteristics' => [
'Cross-functional teams with shared ownership of outcomes spanning engineering and operations.',
'Decision-making distributed across technical and business stakeholders.'
],
'buyingDynamics' => [
'Procurement and security review required before contract signature.',
'Multi-stakeholder evaluation typically driven by an executive sponsor.'
],
'strategicPriorities' => [
'Investing in automation to reduce manual operational overhead.',
'Building data infrastructure to support real-time decision making.'
],
'marketPressures' => [
'Increasing competition from well-funded startups offering point solutions.',
'Regulatory complexity growing across multiple jurisdictions.'
],
'firmographics' => [
'industry' => [
],
'businessModel' => [
],
'geography' => [
],
'revenue' => [
],
'employees' => [
]
],
'customFields' => [
[
'title' => '<string>',
'value' => [
'<string>'
]
]
],
'additionalProperties' => [
'tier' => 'Enterprise',
'region' => 'APAC'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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://app.octavehq.com/api/v2/segment/update"
payload := strings.NewReader("{\n \"oId\": \"sg_1234\",\n \"name\": \"Enterprise Technology Companies\",\n \"internalName\": \"EnterpriseTech500Plus\",\n \"description\": \"Large technology companies with 500+ employees seeking digital transformation\",\n \"strategicFit\": [\n \"High contract values driven by complex operational requirements.\",\n \"Strong expansion potential as adoption spreads across departments.\"\n ],\n \"operatingCharacteristics\": [\n \"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.\",\n \"Decision-making distributed across technical and business stakeholders.\"\n ],\n \"buyingDynamics\": [\n \"Procurement and security review required before contract signature.\",\n \"Multi-stakeholder evaluation typically driven by an executive sponsor.\"\n ],\n \"strategicPriorities\": [\n \"Investing in automation to reduce manual operational overhead.\",\n \"Building data infrastructure to support real-time decision making.\"\n ],\n \"marketPressures\": [\n \"Increasing competition from well-funded startups offering point solutions.\",\n \"Regulatory complexity growing across multiple jurisdictions.\"\n ],\n \"firmographics\": {\n \"industry\": [],\n \"businessModel\": [],\n \"geography\": [],\n \"revenue\": [],\n \"employees\": []\n },\n \"customFields\": [\n {\n \"title\": \"<string>\",\n \"value\": [\n \"<string>\"\n ]\n }\n ],\n \"additionalProperties\": {\n \"tier\": \"Enterprise\",\n \"region\": \"APAC\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("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://app.octavehq.com/api/v2/segment/update")
.header("api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"oId\": \"sg_1234\",\n \"name\": \"Enterprise Technology Companies\",\n \"internalName\": \"EnterpriseTech500Plus\",\n \"description\": \"Large technology companies with 500+ employees seeking digital transformation\",\n \"strategicFit\": [\n \"High contract values driven by complex operational requirements.\",\n \"Strong expansion potential as adoption spreads across departments.\"\n ],\n \"operatingCharacteristics\": [\n \"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.\",\n \"Decision-making distributed across technical and business stakeholders.\"\n ],\n \"buyingDynamics\": [\n \"Procurement and security review required before contract signature.\",\n \"Multi-stakeholder evaluation typically driven by an executive sponsor.\"\n ],\n \"strategicPriorities\": [\n \"Investing in automation to reduce manual operational overhead.\",\n \"Building data infrastructure to support real-time decision making.\"\n ],\n \"marketPressures\": [\n \"Increasing competition from well-funded startups offering point solutions.\",\n \"Regulatory complexity growing across multiple jurisdictions.\"\n ],\n \"firmographics\": {\n \"industry\": [],\n \"businessModel\": [],\n \"geography\": [],\n \"revenue\": [],\n \"employees\": []\n },\n \"customFields\": [\n {\n \"title\": \"<string>\",\n \"value\": [\n \"<string>\"\n ]\n }\n ],\n \"additionalProperties\": {\n \"tier\": \"Enterprise\",\n \"region\": \"APAC\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.octavehq.com/api/v2/segment/update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api_key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"oId\": \"sg_1234\",\n \"name\": \"Enterprise Technology Companies\",\n \"internalName\": \"EnterpriseTech500Plus\",\n \"description\": \"Large technology companies with 500+ employees seeking digital transformation\",\n \"strategicFit\": [\n \"High contract values driven by complex operational requirements.\",\n \"Strong expansion potential as adoption spreads across departments.\"\n ],\n \"operatingCharacteristics\": [\n \"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.\",\n \"Decision-making distributed across technical and business stakeholders.\"\n ],\n \"buyingDynamics\": [\n \"Procurement and security review required before contract signature.\",\n \"Multi-stakeholder evaluation typically driven by an executive sponsor.\"\n ],\n \"strategicPriorities\": [\n \"Investing in automation to reduce manual operational overhead.\",\n \"Building data infrastructure to support real-time decision making.\"\n ],\n \"marketPressures\": [\n \"Increasing competition from well-funded startups offering point solutions.\",\n \"Regulatory complexity growing across multiple jurisdictions.\"\n ],\n \"firmographics\": {\n \"industry\": [],\n \"businessModel\": [],\n \"geography\": [],\n \"revenue\": [],\n \"employees\": []\n },\n \"customFields\": [\n {\n \"title\": \"<string>\",\n \"value\": [\n \"<string>\"\n ]\n }\n ],\n \"additionalProperties\": {\n \"tier\": \"Enterprise\",\n \"region\": \"APAC\"\n }\n}"
response = http.request(request)
puts response.read_body{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"data": {
"oId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"internalName": "<string>",
"description": "<string>",
"unrecognized": true,
"rejected": true,
"deletedAt": "2023-11-07T05:31:56Z",
"archivedAt": "2023-11-07T05:31:56Z",
"active": true,
"data": {
"strategicFit": [],
"firmographics": {
"industry": [],
"businessModel": [],
"geography": [],
"revenue": [],
"employees": []
},
"operatingCharacteristics": [],
"strategicPriorities": [],
"marketPressures": [],
"buyingDynamics": [],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {}
},
"qualifyingQuestions": [
{
"question": "<string>",
"rationale": "<string>",
"fitType": "GOOD",
"weight": "MEDIUM",
"archivedAt": "2023-11-07T05:31:56Z"
}
],
"user": {
"oId": "<string>",
"firstName": "John",
"lastName": "Doe"
},
"workspace": {
"oId": "<string>"
},
"intelOverride": {
"enabled": true,
"guidance": "<string>"
},
"tags": [
{
"tagGroupOId": "<string>",
"tagGroupName": "<string>",
"tagOId": "<string>",
"tagName": "<string>"
}
]
}
}{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"message": "<string>"
}{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"message": "<string>"
}Update Segment
Update an existing market segment
curl --request POST \
--url https://app.octavehq.com/api/v2/segment/update \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"oId": "sg_1234",
"name": "Enterprise Technology Companies",
"internalName": "EnterpriseTech500Plus",
"description": "Large technology companies with 500+ employees seeking digital transformation",
"strategicFit": [
"High contract values driven by complex operational requirements.",
"Strong expansion potential as adoption spreads across departments."
],
"operatingCharacteristics": [
"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.",
"Decision-making distributed across technical and business stakeholders."
],
"buyingDynamics": [
"Procurement and security review required before contract signature.",
"Multi-stakeholder evaluation typically driven by an executive sponsor."
],
"strategicPriorities": [
"Investing in automation to reduce manual operational overhead.",
"Building data infrastructure to support real-time decision making."
],
"marketPressures": [
"Increasing competition from well-funded startups offering point solutions.",
"Regulatory complexity growing across multiple jurisdictions."
],
"firmographics": {
"industry": [],
"businessModel": [],
"geography": [],
"revenue": [],
"employees": []
},
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {
"tier": "Enterprise",
"region": "APAC"
}
}
'import requests
url = "https://app.octavehq.com/api/v2/segment/update"
payload = {
"oId": "sg_1234",
"name": "Enterprise Technology Companies",
"internalName": "EnterpriseTech500Plus",
"description": "Large technology companies with 500+ employees seeking digital transformation",
"strategicFit": ["High contract values driven by complex operational requirements.", "Strong expansion potential as adoption spreads across departments."],
"operatingCharacteristics": ["Cross-functional teams with shared ownership of outcomes spanning engineering and operations.", "Decision-making distributed across technical and business stakeholders."],
"buyingDynamics": ["Procurement and security review required before contract signature.", "Multi-stakeholder evaluation typically driven by an executive sponsor."],
"strategicPriorities": ["Investing in automation to reduce manual operational overhead.", "Building data infrastructure to support real-time decision making."],
"marketPressures": ["Increasing competition from well-funded startups offering point solutions.", "Regulatory complexity growing across multiple jurisdictions."],
"firmographics": {
"industry": [],
"businessModel": [],
"geography": [],
"revenue": [],
"employees": []
},
"customFields": [
{
"title": "<string>",
"value": ["<string>"]
}
],
"additionalProperties": {
"tier": "Enterprise",
"region": "APAC"
}
}
headers = {
"api_key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {api_key: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
oId: 'sg_1234',
name: 'Enterprise Technology Companies',
internalName: 'EnterpriseTech500Plus',
description: 'Large technology companies with 500+ employees seeking digital transformation',
strategicFit: [
'High contract values driven by complex operational requirements.',
'Strong expansion potential as adoption spreads across departments.'
],
operatingCharacteristics: [
'Cross-functional teams with shared ownership of outcomes spanning engineering and operations.',
'Decision-making distributed across technical and business stakeholders.'
],
buyingDynamics: [
'Procurement and security review required before contract signature.',
'Multi-stakeholder evaluation typically driven by an executive sponsor.'
],
strategicPriorities: [
'Investing in automation to reduce manual operational overhead.',
'Building data infrastructure to support real-time decision making.'
],
marketPressures: [
'Increasing competition from well-funded startups offering point solutions.',
'Regulatory complexity growing across multiple jurisdictions.'
],
firmographics: {industry: [], businessModel: [], geography: [], revenue: [], employees: []},
customFields: [{title: '<string>', value: ['<string>']}],
additionalProperties: {tier: 'Enterprise', region: 'APAC'}
})
};
fetch('https://app.octavehq.com/api/v2/segment/update', 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://app.octavehq.com/api/v2/segment/update",
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([
'oId' => 'sg_1234',
'name' => 'Enterprise Technology Companies',
'internalName' => 'EnterpriseTech500Plus',
'description' => 'Large technology companies with 500+ employees seeking digital transformation',
'strategicFit' => [
'High contract values driven by complex operational requirements.',
'Strong expansion potential as adoption spreads across departments.'
],
'operatingCharacteristics' => [
'Cross-functional teams with shared ownership of outcomes spanning engineering and operations.',
'Decision-making distributed across technical and business stakeholders.'
],
'buyingDynamics' => [
'Procurement and security review required before contract signature.',
'Multi-stakeholder evaluation typically driven by an executive sponsor.'
],
'strategicPriorities' => [
'Investing in automation to reduce manual operational overhead.',
'Building data infrastructure to support real-time decision making.'
],
'marketPressures' => [
'Increasing competition from well-funded startups offering point solutions.',
'Regulatory complexity growing across multiple jurisdictions.'
],
'firmographics' => [
'industry' => [
],
'businessModel' => [
],
'geography' => [
],
'revenue' => [
],
'employees' => [
]
],
'customFields' => [
[
'title' => '<string>',
'value' => [
'<string>'
]
]
],
'additionalProperties' => [
'tier' => 'Enterprise',
'region' => 'APAC'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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://app.octavehq.com/api/v2/segment/update"
payload := strings.NewReader("{\n \"oId\": \"sg_1234\",\n \"name\": \"Enterprise Technology Companies\",\n \"internalName\": \"EnterpriseTech500Plus\",\n \"description\": \"Large technology companies with 500+ employees seeking digital transformation\",\n \"strategicFit\": [\n \"High contract values driven by complex operational requirements.\",\n \"Strong expansion potential as adoption spreads across departments.\"\n ],\n \"operatingCharacteristics\": [\n \"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.\",\n \"Decision-making distributed across technical and business stakeholders.\"\n ],\n \"buyingDynamics\": [\n \"Procurement and security review required before contract signature.\",\n \"Multi-stakeholder evaluation typically driven by an executive sponsor.\"\n ],\n \"strategicPriorities\": [\n \"Investing in automation to reduce manual operational overhead.\",\n \"Building data infrastructure to support real-time decision making.\"\n ],\n \"marketPressures\": [\n \"Increasing competition from well-funded startups offering point solutions.\",\n \"Regulatory complexity growing across multiple jurisdictions.\"\n ],\n \"firmographics\": {\n \"industry\": [],\n \"businessModel\": [],\n \"geography\": [],\n \"revenue\": [],\n \"employees\": []\n },\n \"customFields\": [\n {\n \"title\": \"<string>\",\n \"value\": [\n \"<string>\"\n ]\n }\n ],\n \"additionalProperties\": {\n \"tier\": \"Enterprise\",\n \"region\": \"APAC\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("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://app.octavehq.com/api/v2/segment/update")
.header("api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"oId\": \"sg_1234\",\n \"name\": \"Enterprise Technology Companies\",\n \"internalName\": \"EnterpriseTech500Plus\",\n \"description\": \"Large technology companies with 500+ employees seeking digital transformation\",\n \"strategicFit\": [\n \"High contract values driven by complex operational requirements.\",\n \"Strong expansion potential as adoption spreads across departments.\"\n ],\n \"operatingCharacteristics\": [\n \"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.\",\n \"Decision-making distributed across technical and business stakeholders.\"\n ],\n \"buyingDynamics\": [\n \"Procurement and security review required before contract signature.\",\n \"Multi-stakeholder evaluation typically driven by an executive sponsor.\"\n ],\n \"strategicPriorities\": [\n \"Investing in automation to reduce manual operational overhead.\",\n \"Building data infrastructure to support real-time decision making.\"\n ],\n \"marketPressures\": [\n \"Increasing competition from well-funded startups offering point solutions.\",\n \"Regulatory complexity growing across multiple jurisdictions.\"\n ],\n \"firmographics\": {\n \"industry\": [],\n \"businessModel\": [],\n \"geography\": [],\n \"revenue\": [],\n \"employees\": []\n },\n \"customFields\": [\n {\n \"title\": \"<string>\",\n \"value\": [\n \"<string>\"\n ]\n }\n ],\n \"additionalProperties\": {\n \"tier\": \"Enterprise\",\n \"region\": \"APAC\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.octavehq.com/api/v2/segment/update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api_key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"oId\": \"sg_1234\",\n \"name\": \"Enterprise Technology Companies\",\n \"internalName\": \"EnterpriseTech500Plus\",\n \"description\": \"Large technology companies with 500+ employees seeking digital transformation\",\n \"strategicFit\": [\n \"High contract values driven by complex operational requirements.\",\n \"Strong expansion potential as adoption spreads across departments.\"\n ],\n \"operatingCharacteristics\": [\n \"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.\",\n \"Decision-making distributed across technical and business stakeholders.\"\n ],\n \"buyingDynamics\": [\n \"Procurement and security review required before contract signature.\",\n \"Multi-stakeholder evaluation typically driven by an executive sponsor.\"\n ],\n \"strategicPriorities\": [\n \"Investing in automation to reduce manual operational overhead.\",\n \"Building data infrastructure to support real-time decision making.\"\n ],\n \"marketPressures\": [\n \"Increasing competition from well-funded startups offering point solutions.\",\n \"Regulatory complexity growing across multiple jurisdictions.\"\n ],\n \"firmographics\": {\n \"industry\": [],\n \"businessModel\": [],\n \"geography\": [],\n \"revenue\": [],\n \"employees\": []\n },\n \"customFields\": [\n {\n \"title\": \"<string>\",\n \"value\": [\n \"<string>\"\n ]\n }\n ],\n \"additionalProperties\": {\n \"tier\": \"Enterprise\",\n \"region\": \"APAC\"\n }\n}"
response = http.request(request)
puts response.read_body{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"data": {
"oId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"internalName": "<string>",
"description": "<string>",
"unrecognized": true,
"rejected": true,
"deletedAt": "2023-11-07T05:31:56Z",
"archivedAt": "2023-11-07T05:31:56Z",
"active": true,
"data": {
"strategicFit": [],
"firmographics": {
"industry": [],
"businessModel": [],
"geography": [],
"revenue": [],
"employees": []
},
"operatingCharacteristics": [],
"strategicPriorities": [],
"marketPressures": [],
"buyingDynamics": [],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {}
},
"qualifyingQuestions": [
{
"question": "<string>",
"rationale": "<string>",
"fitType": "GOOD",
"weight": "MEDIUM",
"archivedAt": "2023-11-07T05:31:56Z"
}
],
"user": {
"oId": "<string>",
"firstName": "John",
"lastName": "Doe"
},
"workspace": {
"oId": "<string>"
},
"intelOverride": {
"enabled": true,
"guidance": "<string>"
},
"tags": [
{
"tagGroupOId": "<string>",
"tagGroupName": "<string>",
"tagOId": "<string>",
"tagName": "<string>"
}
]
}
}{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"message": "<string>"
}{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"message": "<string>"
}Authorizations
Body
Segment update input
The ID of the segment to update
1"sg_1234"
The name of the segment
"Enterprise Technology Companies"
The internal name of the segment
"EnterpriseTech500Plus"
A description of the segment
"Large technology companies with 500+ employees seeking digital transformation"
Why this segment matters to us: the fit between what we offer and what they need, and the unique attributes of this segment that align to our offering.
[
"High contract values driven by complex operational requirements.",
"Strong expansion potential as adoption spreads across departments."
]
Internal, qualitative, often inferred traits that distinguish this segment: org structure, maturity, operating model, culture.
[
"Cross-functional teams with shared ownership of outcomes spanning engineering and operations.",
"Decision-making distributed across technical and business stakeholders."
]
How this segment makes and acts on purchasing decisions: what drives evaluation, who's involved, how the process runs, and what signals a likely buyer.
[
"Procurement and security review required before contract signature.",
"Multi-stakeholder evaluation typically driven by an executive sponsor."
]
Strategic priorities this segment is pursuing
[
"Investing in automation to reduce manual operational overhead.",
"Building data infrastructure to support real-time decision making."
]
Market pressures affecting this segment
[
"Increasing competition from well-funded startups offering point solutions.",
"Regulatory complexity growing across multiple jurisdictions."
]
Structured firmographic data for the segment (industry, businessModel, geography, revenue, employees). Supports custom keys via passthrough.
Show child attributes
Show child attributes
Custom fields for additional segment information
Show child attributes
Show child attributes
Workspace-defined additional property values for this segment, keyed by property key.
Show child attributes
Show child attributes
{ "tier": "Enterprise", "region": "APAC" }