curl --request POST \
--url https://app.octavehq.com/api/v2/proof-point/update \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data @- <<EOF
{
"oId": "pp_1234",
"name": "50% Sales Improvement Case Study",
"internalName": "CompanyX_Sales_Improvement_2024",
"description": "Customer achieved 50% improvement in sales conversion rates within 6 months",
"type": "stat",
"theProof": [
"50% improvement in sales conversion rates over 6 months (Company X case study, 2024)."
],
"whatItSupports": [
"Backs the claim that our solution drives near-term, quantifiable revenue impact."
],
"howWeTalkAboutThis": [
"Our solution helped Company X achieve a 50% improvement in sales conversion rates",
"Within 6 months, Company X saw significant improvement in their sales process efficiency"
],
"whyItMatters": [
"Demonstrates quantifiable ROI in a short timeframe",
"Shows real-world impact on sales performance",
"Validates our solution's effectiveness in the enterprise market"
],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {
"tier": "Enterprise",
"region": "APAC"
}
}
EOFimport requests
url = "https://app.octavehq.com/api/v2/proof-point/update"
payload = {
"oId": "pp_1234",
"name": "50% Sales Improvement Case Study",
"internalName": "CompanyX_Sales_Improvement_2024",
"description": "Customer achieved 50% improvement in sales conversion rates within 6 months",
"type": "stat",
"theProof": ["50% improvement in sales conversion rates over 6 months (Company X case study, 2024)."],
"whatItSupports": ["Backs the claim that our solution drives near-term, quantifiable revenue impact."],
"howWeTalkAboutThis": ["Our solution helped Company X achieve a 50% improvement in sales conversion rates", "Within 6 months, Company X saw significant improvement in their sales process efficiency"],
"whyItMatters": ["Demonstrates quantifiable ROI in a short timeframe", "Shows real-world impact on sales performance", "Validates our solution's effectiveness in the enterprise market"],
"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: 'pp_1234',
name: '50% Sales Improvement Case Study',
internalName: 'CompanyX_Sales_Improvement_2024',
description: 'Customer achieved 50% improvement in sales conversion rates within 6 months',
type: 'stat',
theProof: [
'50% improvement in sales conversion rates over 6 months (Company X case study, 2024).'
],
whatItSupports: [
'Backs the claim that our solution drives near-term, quantifiable revenue impact.'
],
howWeTalkAboutThis: [
'Our solution helped Company X achieve a 50% improvement in sales conversion rates',
'Within 6 months, Company X saw significant improvement in their sales process efficiency'
],
whyItMatters: [
'Demonstrates quantifiable ROI in a short timeframe',
'Shows real-world impact on sales performance',
'Validates our solution\'s effectiveness in the enterprise market'
],
customFields: [{title: '<string>', value: ['<string>']}],
additionalProperties: {tier: 'Enterprise', region: 'APAC'}
})
};
fetch('https://app.octavehq.com/api/v2/proof-point/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/proof-point/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' => 'pp_1234',
'name' => '50% Sales Improvement Case Study',
'internalName' => 'CompanyX_Sales_Improvement_2024',
'description' => 'Customer achieved 50% improvement in sales conversion rates within 6 months',
'type' => 'stat',
'theProof' => [
'50% improvement in sales conversion rates over 6 months (Company X case study, 2024).'
],
'whatItSupports' => [
'Backs the claim that our solution drives near-term, quantifiable revenue impact.'
],
'howWeTalkAboutThis' => [
'Our solution helped Company X achieve a 50% improvement in sales conversion rates',
'Within 6 months, Company X saw significant improvement in their sales process efficiency'
],
'whyItMatters' => [
'Demonstrates quantifiable ROI in a short timeframe',
'Shows real-world impact on sales performance',
'Validates our solution\'s effectiveness in the enterprise market'
],
'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/proof-point/update"
payload := strings.NewReader("{\n \"oId\": \"pp_1234\",\n \"name\": \"50% Sales Improvement Case Study\",\n \"internalName\": \"CompanyX_Sales_Improvement_2024\",\n \"description\": \"Customer achieved 50% improvement in sales conversion rates within 6 months\",\n \"type\": \"stat\",\n \"theProof\": [\n \"50% improvement in sales conversion rates over 6 months (Company X case study, 2024).\"\n ],\n \"whatItSupports\": [\n \"Backs the claim that our solution drives near-term, quantifiable revenue impact.\"\n ],\n \"howWeTalkAboutThis\": [\n \"Our solution helped Company X achieve a 50% improvement in sales conversion rates\",\n \"Within 6 months, Company X saw significant improvement in their sales process efficiency\"\n ],\n \"whyItMatters\": [\n \"Demonstrates quantifiable ROI in a short timeframe\",\n \"Shows real-world impact on sales performance\",\n \"Validates our solution's effectiveness in the enterprise market\"\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/proof-point/update")
.header("api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"oId\": \"pp_1234\",\n \"name\": \"50% Sales Improvement Case Study\",\n \"internalName\": \"CompanyX_Sales_Improvement_2024\",\n \"description\": \"Customer achieved 50% improvement in sales conversion rates within 6 months\",\n \"type\": \"stat\",\n \"theProof\": [\n \"50% improvement in sales conversion rates over 6 months (Company X case study, 2024).\"\n ],\n \"whatItSupports\": [\n \"Backs the claim that our solution drives near-term, quantifiable revenue impact.\"\n ],\n \"howWeTalkAboutThis\": [\n \"Our solution helped Company X achieve a 50% improvement in sales conversion rates\",\n \"Within 6 months, Company X saw significant improvement in their sales process efficiency\"\n ],\n \"whyItMatters\": [\n \"Demonstrates quantifiable ROI in a short timeframe\",\n \"Shows real-world impact on sales performance\",\n \"Validates our solution's effectiveness in the enterprise market\"\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/proof-point/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\": \"pp_1234\",\n \"name\": \"50% Sales Improvement Case Study\",\n \"internalName\": \"CompanyX_Sales_Improvement_2024\",\n \"description\": \"Customer achieved 50% improvement in sales conversion rates within 6 months\",\n \"type\": \"stat\",\n \"theProof\": [\n \"50% improvement in sales conversion rates over 6 months (Company X case study, 2024).\"\n ],\n \"whatItSupports\": [\n \"Backs the claim that our solution drives near-term, quantifiable revenue impact.\"\n ],\n \"howWeTalkAboutThis\": [\n \"Our solution helped Company X achieve a 50% improvement in sales conversion rates\",\n \"Within 6 months, Company X saw significant improvement in their sales process efficiency\"\n ],\n \"whyItMatters\": [\n \"Demonstrates quantifiable ROI in a short timeframe\",\n \"Shows real-world impact on sales performance\",\n \"Validates our solution's effectiveness in the enterprise market\"\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>",
"deletedAt": "2023-11-07T05:31:56Z",
"archivedAt": "2023-11-07T05:31:56Z",
"active": true,
"data": {
"theProof": [
"<string>"
],
"whatItSupports": [
"<string>"
],
"howWeTalkAboutThis": [
"<string>"
],
"whyItMatters": [
"<string>"
],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {}
},
"user": {
"oId": "<string>",
"firstName": "John",
"lastName": "Doe"
},
"workspace": {
"oId": "<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 Proof Point
Update an existing proof point
curl --request POST \
--url https://app.octavehq.com/api/v2/proof-point/update \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data @- <<EOF
{
"oId": "pp_1234",
"name": "50% Sales Improvement Case Study",
"internalName": "CompanyX_Sales_Improvement_2024",
"description": "Customer achieved 50% improvement in sales conversion rates within 6 months",
"type": "stat",
"theProof": [
"50% improvement in sales conversion rates over 6 months (Company X case study, 2024)."
],
"whatItSupports": [
"Backs the claim that our solution drives near-term, quantifiable revenue impact."
],
"howWeTalkAboutThis": [
"Our solution helped Company X achieve a 50% improvement in sales conversion rates",
"Within 6 months, Company X saw significant improvement in their sales process efficiency"
],
"whyItMatters": [
"Demonstrates quantifiable ROI in a short timeframe",
"Shows real-world impact on sales performance",
"Validates our solution's effectiveness in the enterprise market"
],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {
"tier": "Enterprise",
"region": "APAC"
}
}
EOFimport requests
url = "https://app.octavehq.com/api/v2/proof-point/update"
payload = {
"oId": "pp_1234",
"name": "50% Sales Improvement Case Study",
"internalName": "CompanyX_Sales_Improvement_2024",
"description": "Customer achieved 50% improvement in sales conversion rates within 6 months",
"type": "stat",
"theProof": ["50% improvement in sales conversion rates over 6 months (Company X case study, 2024)."],
"whatItSupports": ["Backs the claim that our solution drives near-term, quantifiable revenue impact."],
"howWeTalkAboutThis": ["Our solution helped Company X achieve a 50% improvement in sales conversion rates", "Within 6 months, Company X saw significant improvement in their sales process efficiency"],
"whyItMatters": ["Demonstrates quantifiable ROI in a short timeframe", "Shows real-world impact on sales performance", "Validates our solution's effectiveness in the enterprise market"],
"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: 'pp_1234',
name: '50% Sales Improvement Case Study',
internalName: 'CompanyX_Sales_Improvement_2024',
description: 'Customer achieved 50% improvement in sales conversion rates within 6 months',
type: 'stat',
theProof: [
'50% improvement in sales conversion rates over 6 months (Company X case study, 2024).'
],
whatItSupports: [
'Backs the claim that our solution drives near-term, quantifiable revenue impact.'
],
howWeTalkAboutThis: [
'Our solution helped Company X achieve a 50% improvement in sales conversion rates',
'Within 6 months, Company X saw significant improvement in their sales process efficiency'
],
whyItMatters: [
'Demonstrates quantifiable ROI in a short timeframe',
'Shows real-world impact on sales performance',
'Validates our solution\'s effectiveness in the enterprise market'
],
customFields: [{title: '<string>', value: ['<string>']}],
additionalProperties: {tier: 'Enterprise', region: 'APAC'}
})
};
fetch('https://app.octavehq.com/api/v2/proof-point/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/proof-point/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' => 'pp_1234',
'name' => '50% Sales Improvement Case Study',
'internalName' => 'CompanyX_Sales_Improvement_2024',
'description' => 'Customer achieved 50% improvement in sales conversion rates within 6 months',
'type' => 'stat',
'theProof' => [
'50% improvement in sales conversion rates over 6 months (Company X case study, 2024).'
],
'whatItSupports' => [
'Backs the claim that our solution drives near-term, quantifiable revenue impact.'
],
'howWeTalkAboutThis' => [
'Our solution helped Company X achieve a 50% improvement in sales conversion rates',
'Within 6 months, Company X saw significant improvement in their sales process efficiency'
],
'whyItMatters' => [
'Demonstrates quantifiable ROI in a short timeframe',
'Shows real-world impact on sales performance',
'Validates our solution\'s effectiveness in the enterprise market'
],
'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/proof-point/update"
payload := strings.NewReader("{\n \"oId\": \"pp_1234\",\n \"name\": \"50% Sales Improvement Case Study\",\n \"internalName\": \"CompanyX_Sales_Improvement_2024\",\n \"description\": \"Customer achieved 50% improvement in sales conversion rates within 6 months\",\n \"type\": \"stat\",\n \"theProof\": [\n \"50% improvement in sales conversion rates over 6 months (Company X case study, 2024).\"\n ],\n \"whatItSupports\": [\n \"Backs the claim that our solution drives near-term, quantifiable revenue impact.\"\n ],\n \"howWeTalkAboutThis\": [\n \"Our solution helped Company X achieve a 50% improvement in sales conversion rates\",\n \"Within 6 months, Company X saw significant improvement in their sales process efficiency\"\n ],\n \"whyItMatters\": [\n \"Demonstrates quantifiable ROI in a short timeframe\",\n \"Shows real-world impact on sales performance\",\n \"Validates our solution's effectiveness in the enterprise market\"\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/proof-point/update")
.header("api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"oId\": \"pp_1234\",\n \"name\": \"50% Sales Improvement Case Study\",\n \"internalName\": \"CompanyX_Sales_Improvement_2024\",\n \"description\": \"Customer achieved 50% improvement in sales conversion rates within 6 months\",\n \"type\": \"stat\",\n \"theProof\": [\n \"50% improvement in sales conversion rates over 6 months (Company X case study, 2024).\"\n ],\n \"whatItSupports\": [\n \"Backs the claim that our solution drives near-term, quantifiable revenue impact.\"\n ],\n \"howWeTalkAboutThis\": [\n \"Our solution helped Company X achieve a 50% improvement in sales conversion rates\",\n \"Within 6 months, Company X saw significant improvement in their sales process efficiency\"\n ],\n \"whyItMatters\": [\n \"Demonstrates quantifiable ROI in a short timeframe\",\n \"Shows real-world impact on sales performance\",\n \"Validates our solution's effectiveness in the enterprise market\"\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/proof-point/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\": \"pp_1234\",\n \"name\": \"50% Sales Improvement Case Study\",\n \"internalName\": \"CompanyX_Sales_Improvement_2024\",\n \"description\": \"Customer achieved 50% improvement in sales conversion rates within 6 months\",\n \"type\": \"stat\",\n \"theProof\": [\n \"50% improvement in sales conversion rates over 6 months (Company X case study, 2024).\"\n ],\n \"whatItSupports\": [\n \"Backs the claim that our solution drives near-term, quantifiable revenue impact.\"\n ],\n \"howWeTalkAboutThis\": [\n \"Our solution helped Company X achieve a 50% improvement in sales conversion rates\",\n \"Within 6 months, Company X saw significant improvement in their sales process efficiency\"\n ],\n \"whyItMatters\": [\n \"Demonstrates quantifiable ROI in a short timeframe\",\n \"Shows real-world impact on sales performance\",\n \"Validates our solution's effectiveness in the enterprise market\"\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>",
"deletedAt": "2023-11-07T05:31:56Z",
"archivedAt": "2023-11-07T05:31:56Z",
"active": true,
"data": {
"theProof": [
"<string>"
],
"whatItSupports": [
"<string>"
],
"howWeTalkAboutThis": [
"<string>"
],
"whyItMatters": [
"<string>"
],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
],
"additionalProperties": {}
},
"user": {
"oId": "<string>",
"firstName": "John",
"lastName": "Doe"
},
"workspace": {
"oId": "<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
Proof point update input
The ID of the proof point to update
1"pp_1234"
The name of the proof point
"50% Sales Improvement Case Study"
The internal name of the proof point
"CompanyX_Sales_Improvement_2024"
A description of the proof point
"Customer achieved 50% improvement in sales conversion rates within 6 months"
The type of proof point
stat, fact, quote, award, recognition, other "stat"
The complete evidence statement: the actual fact, statistic, claim, metric, achievement or recognition AND where it comes from and when (if available).
[
"50% improvement in sales conversion rates over 6 months (Company X case study, 2024)."
]
The specific value claims, differentiators, or message this proof point backs up — what links the proof into the broader value story.
[
"Backs the claim that our solution drives near-term, quantifiable revenue impact."
]
How we talk about this proof point
[
"Our solution helped Company X achieve a 50% improvement in sales conversion rates",
"Within 6 months, Company X saw significant improvement in their sales process efficiency"
]
The strategic frame for why this proof point is compelling: what objection it neutralizes, what doubt it removes, what conviction it builds.
[
"Demonstrates quantifiable ROI in a short timeframe",
"Shows real-world impact on sales performance",
"Validates our solution's effectiveness in the enterprise market"
]
Custom fields for additional proof point information
Show child attributes
Show child attributes
Workspace-defined additional property values for this proof point, keyed by property key.
Show child attributes
Show child attributes
{ "tier": "Enterprise", "region": "APAC" }