curl --request POST \
--url https://app.octavehq.com/api/v2/agents/sequence/run \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"email": "[email protected]",
"jobTitle": "<string>",
"companyDomain": "example.com",
"companyName": "<string>",
"firstName": "<string>",
"linkedInProfile": "<string>",
"lang": "<string>",
"requestId": "<string>",
"outputFormat": "text",
"runtimeContext": {
"all": ""
},
"runtimeInstructions": {
"all": ""
},
"playbookSelectionContext": "<string>",
"agentOId": "agent_123",
"experimentOId": "experiment_123"
}
'{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"found": true,
"message": "Additional information",
"data": {
"emails": [
{
"email": "<string>",
"subject": "<string>",
"coreValueProp": "",
"sections": {
"greeting": "",
"opening": "",
"body": "",
"closing": "",
"cta": "",
"ps": "",
"signature": ""
}
}
],
"product": {
"data": {
"type": "PRODUCT",
"internalName": "<string>",
"summary": "<string>",
"capabilities": [
"Capability 1",
"Capability 2"
],
"differentiatedValue": [
"Differentiated Value 1",
"Differentiated Value 2"
],
"statusQuo": [
"Status Quo 1",
"Status Quo 2"
],
"challengesAddressed": [
"Challenge 1",
"Challenge 2"
],
"customerBenefits": [
"Benefit 1",
"Benefit 2"
],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
]
},
"oId": "<string>",
"name": "<string>",
"internalName": "Product Internal Name",
"description": "Product Description",
"primaryUrl": "https://www.product.com",
"qualifyingQuestions": [
{
"question": "<string>",
"rationale": "<string>",
"fitType": "GOOD",
"weight": "MEDIUM",
"archivedAt": "<string>"
}
],
"matchConfidence": "LOW",
"matchAnalysis": "<string>"
},
"playbook": {
"oId": "<string>",
"name": "<string>",
"description": "<string>",
"type": "LEGACY",
"keyInsight": [
"<string>"
],
"matchConfidence": "LOW",
"matchAnalysis": "<string>"
},
"persona": {
"oId": "<string>",
"name": "<string>",
"internalName": "Sally the Sales Leader",
"qualifyingQuestions": [
{
"question": "<string>",
"rationale": "<string>",
"fitType": "GOOD",
"weight": "MEDIUM",
"archivedAt": "<string>"
}
],
"matchConfidence": "LOW",
"matchAnalysis": "<string>"
},
"outputType": "SCOPED_PLAYBOOK"
}
}Provide either agentOId or experimentOId depending on what you want to run.
agentOId to run a specific agent.experimentOId to run a specific experiment.Only one of them should be set at a time.
curl --request POST \
--url https://app.octavehq.com/api/v2/agents/sequence/run \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"email": "[email protected]",
"jobTitle": "<string>",
"companyDomain": "example.com",
"companyName": "<string>",
"firstName": "<string>",
"linkedInProfile": "<string>",
"lang": "<string>",
"requestId": "<string>",
"outputFormat": "text",
"runtimeContext": {
"all": ""
},
"runtimeInstructions": {
"all": ""
},
"playbookSelectionContext": "<string>",
"agentOId": "agent_123",
"experimentOId": "experiment_123"
}
'{
"_metadata": {
"requestId": "requestId",
"timestamp": "2021-01-01T00:00:00.000Z",
"usage": 0,
"message": "message"
},
"found": true,
"message": "Additional information",
"data": {
"emails": [
{
"email": "<string>",
"subject": "<string>",
"coreValueProp": "",
"sections": {
"greeting": "",
"opening": "",
"body": "",
"closing": "",
"cta": "",
"ps": "",
"signature": ""
}
}
],
"product": {
"data": {
"type": "PRODUCT",
"internalName": "<string>",
"summary": "<string>",
"capabilities": [
"Capability 1",
"Capability 2"
],
"differentiatedValue": [
"Differentiated Value 1",
"Differentiated Value 2"
],
"statusQuo": [
"Status Quo 1",
"Status Quo 2"
],
"challengesAddressed": [
"Challenge 1",
"Challenge 2"
],
"customerBenefits": [
"Benefit 1",
"Benefit 2"
],
"customFields": [
{
"title": "<string>",
"value": [
"<string>"
]
}
]
},
"oId": "<string>",
"name": "<string>",
"internalName": "Product Internal Name",
"description": "Product Description",
"primaryUrl": "https://www.product.com",
"qualifyingQuestions": [
{
"question": "<string>",
"rationale": "<string>",
"fitType": "GOOD",
"weight": "MEDIUM",
"archivedAt": "<string>"
}
],
"matchConfidence": "LOW",
"matchAnalysis": "<string>"
},
"playbook": {
"oId": "<string>",
"name": "<string>",
"description": "<string>",
"type": "LEGACY",
"keyInsight": [
"<string>"
],
"matchConfidence": "LOW",
"matchAnalysis": "<string>"
},
"persona": {
"oId": "<string>",
"name": "<string>",
"internalName": "Sally the Sales Leader",
"qualifyingQuestions": [
{
"question": "<string>",
"rationale": "<string>",
"fitType": "GOOD",
"weight": "MEDIUM",
"archivedAt": "<string>"
}
],
"matchConfidence": "LOW",
"matchAnalysis": "<string>"
},
"outputType": "SCOPED_PLAYBOOK"
}
}Generate emails input
Email of the person to generate emails for
Job title of the person to generate emails for
Company domain of the person to generate emails for
"example.com"
Company name of the person to generate emails for
First name of the person to generate emails for
LinkedIn profile of the person to generate emails for
Language of the person to generate emails for
Output format of the emails to generate
text, html, markdown Playbook selection context of the person to generate emails for
AgentOId is required when creating an agent in the application. You can find it in the Agents section of your dashboard.
"agent_123"
ExperimentOId is required when running an experiment
"experiment_123"
Generate emails successful
Whether the operation was successful
true
Message
"Additional information"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
PRODUCT, SERVICE The internal name of the product
Key capabilities of the product
["Capability 1", "Capability 2"]
The differentiated value of the product
[
"Differentiated Value 1",
"Differentiated Value 2"
]
The status quo of the product
["Status Quo 1", "Status Quo 2"]
The challenges addressed by the offering
["Challenge 1", "Challenge 2"]
The customer benefits of the offering
["Benefit 1", "Benefit 2"]
The internal name of the product
"Product Internal Name"
The description of the product
"Product Description"
The primary URL of the product
"https://www.product.com"
Show child attributes
The question to ask to qualify the entity
The rationale for the question as to why it helps qualify
The fit type of the question
GOOD, BAD "GOOD"
The weight of the question
LOW, MEDIUM, HIGH, INSTANT_QUALIFIER, INSTANT_DISQUALIFIER "MEDIUM"
The date and time the question was archived
LOW, MEDIUM, HIGH Show child attributes
LEGACY, SECTOR, SOLUTION, MILESTONE, PRACTITIONER, COMPETITIVE, ACCOUNT, CUSTOM LOW, MEDIUM, HIGH Show child attributes
The internal name of the persona
"Sally the Sales Leader"
Show child attributes
The question to ask to qualify the entity
The rationale for the question as to why it helps qualify
The fit type of the question
GOOD, BAD "GOOD"
The weight of the question
LOW, MEDIUM, HIGH, INSTANT_QUALIFIER, INSTANT_DISQUALIFIER "MEDIUM"
The date and time the question was archived
LOW, MEDIUM, HIGH SCOPED_PLAYBOOK, BEST_FIT_PLAYBOOK, RESEARCH_BASED, ALL