Create an agent
Create an agent from instructions, a template, or another agent. sourceAgentId cannot be combined with other fields. Template creation accepts only templateName, name, and triggers; creation from scratch requires name.
import Tembo from '@tembo-io/sdk';
const client = new Tembo();
const agent = await client.agents.create({});curl --request POST \
--url https://api.tembo.io/v1/agents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"instructions": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello"
}
]
}
]
},
"mcpServers": [
"<string>"
],
"agent": "<string>",
"agentOptions": {
"reasoningLevel": "<string>",
"goal": {
"enabled": true,
"objective": "<string>"
}
},
"projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"autoDetectRepositories": true,
"repositoryIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"triggers": [
{
"name": "<string>",
"integrationType": "<string>",
"integrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filters": {
"projects": [
"<string>"
],
"boards": [
"<string>"
],
"statuses": [
"<string>"
],
"assignedTo": [
"<string>"
],
"labels": [
"<string>"
],
"includeNewIssues": true
}
}
],
"schedules": [
{
"cron": "<string>"
}
],
"sourceAgentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.tembo.io/v1/agents"
payload = {
"name": "<string>",
"instructions": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello"
}
]
}
]
},
"mcpServers": ["<string>"],
"agent": "<string>",
"agentOptions": {
"reasoningLevel": "<string>",
"goal": {
"enabled": True,
"objective": "<string>"
}
},
"projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"autoDetectRepositories": True,
"repositoryIds": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"triggers": [
{
"name": "<string>",
"integrationType": "<string>",
"integrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filters": {
"projects": ["<string>"],
"boards": ["<string>"],
"statuses": ["<string>"],
"assignedTo": ["<string>"],
"labels": ["<string>"],
"includeNewIssues": True
}
}
],
"schedules": [{ "cron": "<string>" }],
"sourceAgentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
instructions: {
type: 'doc',
content: [{type: 'paragraph', content: [{type: 'text', text: 'Hello'}]}]
},
mcpServers: ['<string>'],
agent: '<string>',
agentOptions: {reasoningLevel: '<string>', goal: {enabled: true, objective: '<string>'}},
projectId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
autoDetectRepositories: true,
repositoryIds: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
triggers: [
{
name: '<string>',
integrationType: '<string>',
integrationId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
filters: {
projects: ['<string>'],
boards: ['<string>'],
statuses: ['<string>'],
assignedTo: ['<string>'],
labels: ['<string>'],
includeNewIssues: true
}
}
],
schedules: [{cron: '<string>'}],
sourceAgentId: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('https://api.tembo.io/v1/agents', 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.tembo.io/v1/agents",
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([
'name' => '<string>',
'instructions' => [
'type' => 'doc',
'content' => [
[
'type' => 'paragraph',
'content' => [
[
'type' => 'text',
'text' => 'Hello'
]
]
]
]
],
'mcpServers' => [
'<string>'
],
'agent' => '<string>',
'agentOptions' => [
'reasoningLevel' => '<string>',
'goal' => [
'enabled' => true,
'objective' => '<string>'
]
],
'projectId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'autoDetectRepositories' => true,
'repositoryIds' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'triggers' => [
[
'name' => '<string>',
'integrationType' => '<string>',
'integrationId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'filters' => [
'projects' => [
'<string>'
],
'boards' => [
'<string>'
],
'statuses' => [
'<string>'
],
'assignedTo' => [
'<string>'
],
'labels' => [
'<string>'
],
'includeNewIssues' => true
]
]
],
'schedules' => [
[
'cron' => '<string>'
]
],
'sourceAgentId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
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.tembo.io/v1/agents"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"instructions\": {\n \"type\": \"doc\",\n \"content\": [\n {\n \"type\": \"paragraph\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"Hello\"\n }\n ]\n }\n ]\n },\n \"mcpServers\": [\n \"<string>\"\n ],\n \"agent\": \"<string>\",\n \"agentOptions\": {\n \"reasoningLevel\": \"<string>\",\n \"goal\": {\n \"enabled\": true,\n \"objective\": \"<string>\"\n }\n },\n \"projectId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"autoDetectRepositories\": true,\n \"repositoryIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"triggers\": [\n {\n \"name\": \"<string>\",\n \"integrationType\": \"<string>\",\n \"integrationId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filters\": {\n \"projects\": [\n \"<string>\"\n ],\n \"boards\": [\n \"<string>\"\n ],\n \"statuses\": [\n \"<string>\"\n ],\n \"assignedTo\": [\n \"<string>\"\n ],\n \"labels\": [\n \"<string>\"\n ],\n \"includeNewIssues\": true\n }\n }\n ],\n \"schedules\": [\n {\n \"cron\": \"<string>\"\n }\n ],\n \"sourceAgentId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.tembo.io/v1/agents")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"instructions\": {\n \"type\": \"doc\",\n \"content\": [\n {\n \"type\": \"paragraph\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"Hello\"\n }\n ]\n }\n ]\n },\n \"mcpServers\": [\n \"<string>\"\n ],\n \"agent\": \"<string>\",\n \"agentOptions\": {\n \"reasoningLevel\": \"<string>\",\n \"goal\": {\n \"enabled\": true,\n \"objective\": \"<string>\"\n }\n },\n \"projectId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"autoDetectRepositories\": true,\n \"repositoryIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"triggers\": [\n {\n \"name\": \"<string>\",\n \"integrationType\": \"<string>\",\n \"integrationId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filters\": {\n \"projects\": [\n \"<string>\"\n ],\n \"boards\": [\n \"<string>\"\n ],\n \"statuses\": [\n \"<string>\"\n ],\n \"assignedTo\": [\n \"<string>\"\n ],\n \"labels\": [\n \"<string>\"\n ],\n \"includeNewIssues\": true\n }\n }\n ],\n \"schedules\": [\n {\n \"cron\": \"<string>\"\n }\n ],\n \"sourceAgentId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tembo.io/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"instructions\": {\n \"type\": \"doc\",\n \"content\": [\n {\n \"type\": \"paragraph\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"Hello\"\n }\n ]\n }\n ]\n },\n \"mcpServers\": [\n \"<string>\"\n ],\n \"agent\": \"<string>\",\n \"agentOptions\": {\n \"reasoningLevel\": \"<string>\",\n \"goal\": {\n \"enabled\": true,\n \"objective\": \"<string>\"\n }\n },\n \"projectId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"autoDetectRepositories\": true,\n \"repositoryIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"triggers\": [\n {\n \"name\": \"<string>\",\n \"integrationType\": \"<string>\",\n \"integrationId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filters\": {\n \"projects\": [\n \"<string>\"\n ],\n \"boards\": [\n \"<string>\"\n ],\n \"statuses\": [\n \"<string>\"\n ],\n \"assignedTo\": [\n \"<string>\"\n ],\n \"labels\": [\n \"<string>\"\n ],\n \"includeNewIssues\": true\n }\n }\n ],\n \"schedules\": [\n {\n \"cron\": \"<string>\"\n }\n ],\n \"sourceAgentId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"key": "<string>",
"sandboxSize": "nano",
"projectId": "<string>",
"templateId": "<string>",
"script": "<string>",
"artifactType": "PullRequest",
"autoDetectRepositories": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"archivedAt": "2023-11-07T05:31:56Z",
"enabledAt": "2023-11-07T05:31:56Z",
"organizationId": "<string>",
"organizationName": "<string>",
"createdBy": "<string>",
"instructions": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello"
}
]
}
]
},
"agent": "<string>",
"agentOptions": {
"reasoningLevel": "<string>",
"mode": "normal",
"speed": "normal",
"goal": {
"enabled": true,
"objective": "<string>"
}
},
"mcpServers": [
"<string>"
],
"userState": {},
"codeRepositories": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"owner": "<string>",
"integrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"integrationType": "<string>"
}
],
"lastRun": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sessionId": "<string>",
"status": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"durationMs": 123,
"errorMessage": "<string>"
},
"runCount": 1,
"scheduleCount": 1,
"triggerCount": 1,
"hasPausedSchedule": true,
"hasPausedTrigger": true,
"integrationIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"integrationTypes": [
"<string>"
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
1 - 200Instructions for the agent as a rich-text document. Mentions can reference integrations used by the agent.
- Option 1
- Option 2
- Option 3
- Option 4
- Option 5
- Option 6
- Option 7
- Option 8
Show child attributes
Show child attributes
{
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [{ "type": "text", "text": "Hello" }]
}
]
}
1001 - 2001 - 200Execution settings for the selected agent runtime, including provider-specific options.
- Option 1
- Option 2
Show child attributes
Show child attributes
nano, micro, small, medium, large, xl, xxl, ultra, null PullRequest, ToolCall, Plan, Response, File, Service, Source, null 25050Show child attributes
Show child attributes
50Show child attributes
Show child attributes
addTestCoverage, addTestCoverageFromJira, autoAgentsMdMaintainer, autoDocsMaintainer, commitOfTheDay, customerHealthMonitoringAgent, deadCodeCleanup, dependencySweepAgent, autoFixCi, autoFixSentryError, dailySlackChangelog, duplicateTicketDetector, fixBugsReportedInSlack, enrichGithubIssue, enrichJiraIssue, enrichLinearIssue, hubspotCallTaskCoach, hubspotEmailTaskDrafter, hubspotTicketToLinearBug, prDescription, prReview, pagePerformanceReport, prioritizeSentry, productFaqAgent, productFinanceAgent, queryPerformanceReport, securityFixFromJira, securityScan, skillProgressionMap, slackChannelListener, slopCop, staleCodeComments, stalePullRequestNotifier, summarizeChangesDaily, triageNewJiraBug Response
Create an agent
nano, micro, small, medium, large, xl, xxl, ultra, null PullRequest, ToolCall, Plan, Response, File, Service, Source, null 1 - 255Instructions for the agent as a rich-text document. Mentions can reference integrations used by the agent.
- Option 1
- Option 2
- Option 3
- Option 4
- Option 5
- Option 6
- Option 7
- Option 8
Show child attributes
Show child attributes
{
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [{ "type": "text", "text": "Hello" }]
}
]
}
Runtime and model selection key; not the ID of an agent resource.
Execution settings for the selected agent runtime, including provider-specific options.
- Option 1
- Option 2
Show child attributes
Show child attributes
Selected MCP server identifiers, including built-in server keys.
1001 - 200User-defined state keyed by name. Values may be any JSON value, including nested objects and arrays. No application-specific keys are required.
Show child attributes
Show child attributes
250Show child attributes
Show child attributes
Show child attributes
Show child attributes
x >= 0x >= 0x >= 0Was this page helpful?
import Tembo from '@tembo-io/sdk';
const client = new Tembo();
const agent = await client.agents.create({});curl --request POST \
--url https://api.tembo.io/v1/agents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"instructions": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello"
}
]
}
]
},
"mcpServers": [
"<string>"
],
"agent": "<string>",
"agentOptions": {
"reasoningLevel": "<string>",
"goal": {
"enabled": true,
"objective": "<string>"
}
},
"projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"autoDetectRepositories": true,
"repositoryIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"triggers": [
{
"name": "<string>",
"integrationType": "<string>",
"integrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filters": {
"projects": [
"<string>"
],
"boards": [
"<string>"
],
"statuses": [
"<string>"
],
"assignedTo": [
"<string>"
],
"labels": [
"<string>"
],
"includeNewIssues": true
}
}
],
"schedules": [
{
"cron": "<string>"
}
],
"sourceAgentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.tembo.io/v1/agents"
payload = {
"name": "<string>",
"instructions": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello"
}
]
}
]
},
"mcpServers": ["<string>"],
"agent": "<string>",
"agentOptions": {
"reasoningLevel": "<string>",
"goal": {
"enabled": True,
"objective": "<string>"
}
},
"projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"autoDetectRepositories": True,
"repositoryIds": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"triggers": [
{
"name": "<string>",
"integrationType": "<string>",
"integrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filters": {
"projects": ["<string>"],
"boards": ["<string>"],
"statuses": ["<string>"],
"assignedTo": ["<string>"],
"labels": ["<string>"],
"includeNewIssues": True
}
}
],
"schedules": [{ "cron": "<string>" }],
"sourceAgentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
instructions: {
type: 'doc',
content: [{type: 'paragraph', content: [{type: 'text', text: 'Hello'}]}]
},
mcpServers: ['<string>'],
agent: '<string>',
agentOptions: {reasoningLevel: '<string>', goal: {enabled: true, objective: '<string>'}},
projectId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
autoDetectRepositories: true,
repositoryIds: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
triggers: [
{
name: '<string>',
integrationType: '<string>',
integrationId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
filters: {
projects: ['<string>'],
boards: ['<string>'],
statuses: ['<string>'],
assignedTo: ['<string>'],
labels: ['<string>'],
includeNewIssues: true
}
}
],
schedules: [{cron: '<string>'}],
sourceAgentId: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('https://api.tembo.io/v1/agents', 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.tembo.io/v1/agents",
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([
'name' => '<string>',
'instructions' => [
'type' => 'doc',
'content' => [
[
'type' => 'paragraph',
'content' => [
[
'type' => 'text',
'text' => 'Hello'
]
]
]
]
],
'mcpServers' => [
'<string>'
],
'agent' => '<string>',
'agentOptions' => [
'reasoningLevel' => '<string>',
'goal' => [
'enabled' => true,
'objective' => '<string>'
]
],
'projectId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'autoDetectRepositories' => true,
'repositoryIds' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'triggers' => [
[
'name' => '<string>',
'integrationType' => '<string>',
'integrationId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'filters' => [
'projects' => [
'<string>'
],
'boards' => [
'<string>'
],
'statuses' => [
'<string>'
],
'assignedTo' => [
'<string>'
],
'labels' => [
'<string>'
],
'includeNewIssues' => true
]
]
],
'schedules' => [
[
'cron' => '<string>'
]
],
'sourceAgentId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
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.tembo.io/v1/agents"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"instructions\": {\n \"type\": \"doc\",\n \"content\": [\n {\n \"type\": \"paragraph\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"Hello\"\n }\n ]\n }\n ]\n },\n \"mcpServers\": [\n \"<string>\"\n ],\n \"agent\": \"<string>\",\n \"agentOptions\": {\n \"reasoningLevel\": \"<string>\",\n \"goal\": {\n \"enabled\": true,\n \"objective\": \"<string>\"\n }\n },\n \"projectId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"autoDetectRepositories\": true,\n \"repositoryIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"triggers\": [\n {\n \"name\": \"<string>\",\n \"integrationType\": \"<string>\",\n \"integrationId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filters\": {\n \"projects\": [\n \"<string>\"\n ],\n \"boards\": [\n \"<string>\"\n ],\n \"statuses\": [\n \"<string>\"\n ],\n \"assignedTo\": [\n \"<string>\"\n ],\n \"labels\": [\n \"<string>\"\n ],\n \"includeNewIssues\": true\n }\n }\n ],\n \"schedules\": [\n {\n \"cron\": \"<string>\"\n }\n ],\n \"sourceAgentId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.tembo.io/v1/agents")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"instructions\": {\n \"type\": \"doc\",\n \"content\": [\n {\n \"type\": \"paragraph\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"Hello\"\n }\n ]\n }\n ]\n },\n \"mcpServers\": [\n \"<string>\"\n ],\n \"agent\": \"<string>\",\n \"agentOptions\": {\n \"reasoningLevel\": \"<string>\",\n \"goal\": {\n \"enabled\": true,\n \"objective\": \"<string>\"\n }\n },\n \"projectId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"autoDetectRepositories\": true,\n \"repositoryIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"triggers\": [\n {\n \"name\": \"<string>\",\n \"integrationType\": \"<string>\",\n \"integrationId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filters\": {\n \"projects\": [\n \"<string>\"\n ],\n \"boards\": [\n \"<string>\"\n ],\n \"statuses\": [\n \"<string>\"\n ],\n \"assignedTo\": [\n \"<string>\"\n ],\n \"labels\": [\n \"<string>\"\n ],\n \"includeNewIssues\": true\n }\n }\n ],\n \"schedules\": [\n {\n \"cron\": \"<string>\"\n }\n ],\n \"sourceAgentId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tembo.io/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"instructions\": {\n \"type\": \"doc\",\n \"content\": [\n {\n \"type\": \"paragraph\",\n \"content\": [\n {\n \"type\": \"text\",\n \"text\": \"Hello\"\n }\n ]\n }\n ]\n },\n \"mcpServers\": [\n \"<string>\"\n ],\n \"agent\": \"<string>\",\n \"agentOptions\": {\n \"reasoningLevel\": \"<string>\",\n \"goal\": {\n \"enabled\": true,\n \"objective\": \"<string>\"\n }\n },\n \"projectId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"autoDetectRepositories\": true,\n \"repositoryIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"triggers\": [\n {\n \"name\": \"<string>\",\n \"integrationType\": \"<string>\",\n \"integrationId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filters\": {\n \"projects\": [\n \"<string>\"\n ],\n \"boards\": [\n \"<string>\"\n ],\n \"statuses\": [\n \"<string>\"\n ],\n \"assignedTo\": [\n \"<string>\"\n ],\n \"labels\": [\n \"<string>\"\n ],\n \"includeNewIssues\": true\n }\n }\n ],\n \"schedules\": [\n {\n \"cron\": \"<string>\"\n }\n ],\n \"sourceAgentId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"key": "<string>",
"sandboxSize": "nano",
"projectId": "<string>",
"templateId": "<string>",
"script": "<string>",
"artifactType": "PullRequest",
"autoDetectRepositories": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"archivedAt": "2023-11-07T05:31:56Z",
"enabledAt": "2023-11-07T05:31:56Z",
"organizationId": "<string>",
"organizationName": "<string>",
"createdBy": "<string>",
"instructions": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello"
}
]
}
]
},
"agent": "<string>",
"agentOptions": {
"reasoningLevel": "<string>",
"mode": "normal",
"speed": "normal",
"goal": {
"enabled": true,
"objective": "<string>"
}
},
"mcpServers": [
"<string>"
],
"userState": {},
"codeRepositories": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"owner": "<string>",
"integrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"integrationType": "<string>"
}
],
"lastRun": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sessionId": "<string>",
"status": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"durationMs": 123,
"errorMessage": "<string>"
},
"runCount": 1,
"scheduleCount": 1,
"triggerCount": 1,
"hasPausedSchedule": true,
"hasPausedTrigger": true,
"integrationIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"integrationTypes": [
"<string>"
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}