curl --request POST \
--url https://app.goosybear.ai/api/v1/tools/automations.author \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"board_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"steps": [
{
"key": "<string>",
"label": "<string>",
"description": "<string>",
"kind": "automated",
"implementation": "<string>",
"params": {},
"delay": {
"duration": {
"days": 1,
"hours": 1,
"minutes": 1
},
"until": "<string>",
"timezone": "<string>"
},
"outputs": [
"<string>"
],
"promptFirst": true
}
],
"description": "<string>",
"edges": [
{
"from": "<string>",
"to": "<string>",
"when": "<unknown>"
}
],
"trigger": {
"kind": "manual"
},
"review_gated": true,
"confirmation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace": "<string>"
}
'import requests
url = "https://app.goosybear.ai/api/v1/tools/automations.author"
payload = {
"board_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"steps": [
{
"key": "<string>",
"label": "<string>",
"description": "<string>",
"kind": "automated",
"implementation": "<string>",
"params": {},
"delay": {
"duration": {
"days": 1,
"hours": 1,
"minutes": 1
},
"until": "<string>",
"timezone": "<string>"
},
"outputs": ["<string>"],
"promptFirst": True
}
],
"description": "<string>",
"edges": [
{
"from": "<string>",
"to": "<string>",
"when": "<unknown>"
}
],
"trigger": { "kind": "manual" },
"review_gated": True,
"confirmation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace": "<string>"
}
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({
board_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
name: '<string>',
steps: [
{
key: '<string>',
label: '<string>',
description: '<string>',
kind: 'automated',
implementation: '<string>',
params: {},
delay: {
duration: {days: 1, hours: 1, minutes: 1},
until: '<string>',
timezone: '<string>'
},
outputs: ['<string>'],
promptFirst: true
}
],
description: '<string>',
edges: [{from: '<string>', to: '<string>', when: '<unknown>'}],
trigger: {kind: 'manual'},
review_gated: true,
confirmation_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
workspace: '<string>'
})
};
fetch('https://app.goosybear.ai/api/v1/tools/automations.author', 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.goosybear.ai/api/v1/tools/automations.author",
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([
'board_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'name' => '<string>',
'steps' => [
[
'key' => '<string>',
'label' => '<string>',
'description' => '<string>',
'kind' => 'automated',
'implementation' => '<string>',
'params' => [
],
'delay' => [
'duration' => [
'days' => 1,
'hours' => 1,
'minutes' => 1
],
'until' => '<string>',
'timezone' => '<string>'
],
'outputs' => [
'<string>'
],
'promptFirst' => true
]
],
'description' => '<string>',
'edges' => [
[
'from' => '<string>',
'to' => '<string>',
'when' => '<unknown>'
]
],
'trigger' => [
'kind' => 'manual'
],
'review_gated' => true,
'confirmation_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'workspace' => '<string>'
]),
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://app.goosybear.ai/api/v1/tools/automations.author"
payload := strings.NewReader("{\n \"board_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"name\": \"<string>\",\n \"steps\": [\n {\n \"key\": \"<string>\",\n \"label\": \"<string>\",\n \"description\": \"<string>\",\n \"kind\": \"automated\",\n \"implementation\": \"<string>\",\n \"params\": {},\n \"delay\": {\n \"duration\": {\n \"days\": 1,\n \"hours\": 1,\n \"minutes\": 1\n },\n \"until\": \"<string>\",\n \"timezone\": \"<string>\"\n },\n \"outputs\": [\n \"<string>\"\n ],\n \"promptFirst\": true\n }\n ],\n \"description\": \"<string>\",\n \"edges\": [\n {\n \"from\": \"<string>\",\n \"to\": \"<string>\",\n \"when\": \"<unknown>\"\n }\n ],\n \"trigger\": {\n \"kind\": \"manual\"\n },\n \"review_gated\": true,\n \"confirmation_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"workspace\": \"<string>\"\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://app.goosybear.ai/api/v1/tools/automations.author")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"board_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"name\": \"<string>\",\n \"steps\": [\n {\n \"key\": \"<string>\",\n \"label\": \"<string>\",\n \"description\": \"<string>\",\n \"kind\": \"automated\",\n \"implementation\": \"<string>\",\n \"params\": {},\n \"delay\": {\n \"duration\": {\n \"days\": 1,\n \"hours\": 1,\n \"minutes\": 1\n },\n \"until\": \"<string>\",\n \"timezone\": \"<string>\"\n },\n \"outputs\": [\n \"<string>\"\n ],\n \"promptFirst\": true\n }\n ],\n \"description\": \"<string>\",\n \"edges\": [\n {\n \"from\": \"<string>\",\n \"to\": \"<string>\",\n \"when\": \"<unknown>\"\n }\n ],\n \"trigger\": {\n \"kind\": \"manual\"\n },\n \"review_gated\": true,\n \"confirmation_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"workspace\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.goosybear.ai/api/v1/tools/automations.author")
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 \"board_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"name\": \"<string>\",\n \"steps\": [\n {\n \"key\": \"<string>\",\n \"label\": \"<string>\",\n \"description\": \"<string>\",\n \"kind\": \"automated\",\n \"implementation\": \"<string>\",\n \"params\": {},\n \"delay\": {\n \"duration\": {\n \"days\": 1,\n \"hours\": 1,\n \"minutes\": 1\n },\n \"until\": \"<string>\",\n \"timezone\": \"<string>\"\n },\n \"outputs\": [\n \"<string>\"\n ],\n \"promptFirst\": true\n }\n ],\n \"description\": \"<string>\",\n \"edges\": [\n {\n \"from\": \"<string>\",\n \"to\": \"<string>\",\n \"when\": \"<unknown>\"\n }\n ],\n \"trigger\": {\n \"kind\": \"manual\"\n },\n \"review_gated\": true,\n \"confirmation_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"workspace\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"state": "confirmation_required",
"board_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace": "<string>",
"working_in": {
"label": "<string>",
"note": "<string>",
"workspace": "<string>",
"source": "call-override"
},
"expected_latest_version": 1,
"confirmation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires_in_seconds": 123,
"version": 123,
"display_name": "<string>",
"created": true,
"status": "draft",
"bound_steps": [
"<string>"
],
"unbound_steps": [
"<string>"
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}Call automations.author
Propose or confirm one complete draft version on an existing automation board. Confirmation validates connector bindings, builder availability, the graph, and the trigger before writing.
Every result names the workspace it ran in. Say which workspace the answer is about. When the account has more than one workspace and none is selected, this tool refuses with workspace_ambiguous and lists the choices — offer them, never pick one.
curl --request POST \
--url https://app.goosybear.ai/api/v1/tools/automations.author \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"board_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"steps": [
{
"key": "<string>",
"label": "<string>",
"description": "<string>",
"kind": "automated",
"implementation": "<string>",
"params": {},
"delay": {
"duration": {
"days": 1,
"hours": 1,
"minutes": 1
},
"until": "<string>",
"timezone": "<string>"
},
"outputs": [
"<string>"
],
"promptFirst": true
}
],
"description": "<string>",
"edges": [
{
"from": "<string>",
"to": "<string>",
"when": "<unknown>"
}
],
"trigger": {
"kind": "manual"
},
"review_gated": true,
"confirmation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace": "<string>"
}
'import requests
url = "https://app.goosybear.ai/api/v1/tools/automations.author"
payload = {
"board_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"steps": [
{
"key": "<string>",
"label": "<string>",
"description": "<string>",
"kind": "automated",
"implementation": "<string>",
"params": {},
"delay": {
"duration": {
"days": 1,
"hours": 1,
"minutes": 1
},
"until": "<string>",
"timezone": "<string>"
},
"outputs": ["<string>"],
"promptFirst": True
}
],
"description": "<string>",
"edges": [
{
"from": "<string>",
"to": "<string>",
"when": "<unknown>"
}
],
"trigger": { "kind": "manual" },
"review_gated": True,
"confirmation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace": "<string>"
}
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({
board_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
name: '<string>',
steps: [
{
key: '<string>',
label: '<string>',
description: '<string>',
kind: 'automated',
implementation: '<string>',
params: {},
delay: {
duration: {days: 1, hours: 1, minutes: 1},
until: '<string>',
timezone: '<string>'
},
outputs: ['<string>'],
promptFirst: true
}
],
description: '<string>',
edges: [{from: '<string>', to: '<string>', when: '<unknown>'}],
trigger: {kind: 'manual'},
review_gated: true,
confirmation_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
workspace: '<string>'
})
};
fetch('https://app.goosybear.ai/api/v1/tools/automations.author', 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.goosybear.ai/api/v1/tools/automations.author",
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([
'board_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'name' => '<string>',
'steps' => [
[
'key' => '<string>',
'label' => '<string>',
'description' => '<string>',
'kind' => 'automated',
'implementation' => '<string>',
'params' => [
],
'delay' => [
'duration' => [
'days' => 1,
'hours' => 1,
'minutes' => 1
],
'until' => '<string>',
'timezone' => '<string>'
],
'outputs' => [
'<string>'
],
'promptFirst' => true
]
],
'description' => '<string>',
'edges' => [
[
'from' => '<string>',
'to' => '<string>',
'when' => '<unknown>'
]
],
'trigger' => [
'kind' => 'manual'
],
'review_gated' => true,
'confirmation_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'workspace' => '<string>'
]),
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://app.goosybear.ai/api/v1/tools/automations.author"
payload := strings.NewReader("{\n \"board_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"name\": \"<string>\",\n \"steps\": [\n {\n \"key\": \"<string>\",\n \"label\": \"<string>\",\n \"description\": \"<string>\",\n \"kind\": \"automated\",\n \"implementation\": \"<string>\",\n \"params\": {},\n \"delay\": {\n \"duration\": {\n \"days\": 1,\n \"hours\": 1,\n \"minutes\": 1\n },\n \"until\": \"<string>\",\n \"timezone\": \"<string>\"\n },\n \"outputs\": [\n \"<string>\"\n ],\n \"promptFirst\": true\n }\n ],\n \"description\": \"<string>\",\n \"edges\": [\n {\n \"from\": \"<string>\",\n \"to\": \"<string>\",\n \"when\": \"<unknown>\"\n }\n ],\n \"trigger\": {\n \"kind\": \"manual\"\n },\n \"review_gated\": true,\n \"confirmation_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"workspace\": \"<string>\"\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://app.goosybear.ai/api/v1/tools/automations.author")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"board_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"name\": \"<string>\",\n \"steps\": [\n {\n \"key\": \"<string>\",\n \"label\": \"<string>\",\n \"description\": \"<string>\",\n \"kind\": \"automated\",\n \"implementation\": \"<string>\",\n \"params\": {},\n \"delay\": {\n \"duration\": {\n \"days\": 1,\n \"hours\": 1,\n \"minutes\": 1\n },\n \"until\": \"<string>\",\n \"timezone\": \"<string>\"\n },\n \"outputs\": [\n \"<string>\"\n ],\n \"promptFirst\": true\n }\n ],\n \"description\": \"<string>\",\n \"edges\": [\n {\n \"from\": \"<string>\",\n \"to\": \"<string>\",\n \"when\": \"<unknown>\"\n }\n ],\n \"trigger\": {\n \"kind\": \"manual\"\n },\n \"review_gated\": true,\n \"confirmation_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"workspace\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.goosybear.ai/api/v1/tools/automations.author")
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 \"board_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"name\": \"<string>\",\n \"steps\": [\n {\n \"key\": \"<string>\",\n \"label\": \"<string>\",\n \"description\": \"<string>\",\n \"kind\": \"automated\",\n \"implementation\": \"<string>\",\n \"params\": {},\n \"delay\": {\n \"duration\": {\n \"days\": 1,\n \"hours\": 1,\n \"minutes\": 1\n },\n \"until\": \"<string>\",\n \"timezone\": \"<string>\"\n },\n \"outputs\": [\n \"<string>\"\n ],\n \"promptFirst\": true\n }\n ],\n \"description\": \"<string>\",\n \"edges\": [\n {\n \"from\": \"<string>\",\n \"to\": \"<string>\",\n \"when\": \"<unknown>\"\n }\n ],\n \"trigger\": {\n \"kind\": \"manual\"\n },\n \"review_gated\": true,\n \"confirmation_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"workspace\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"state": "confirmation_required",
"board_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspace": "<string>",
"working_in": {
"label": "<string>",
"note": "<string>",
"workspace": "<string>",
"source": "call-override"
},
"expected_latest_version": 1,
"confirmation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires_in_seconds": 123,
"version": 123,
"display_name": "<string>",
"created": true,
"status": "draft",
"bound_steps": [
"<string>"
],
"unbound_steps": [
"<string>"
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"retry_after_seconds": 123
}
}Authorizations
An API key minted at Settings › API & MCP. Send it as Authorization: Bearer <key>. A key carries its holder's own permissions, resolved on every call — revoking a membership closes the key's reach immediately. Keep it in an environment variable (GOOSY_API_KEY), never in a committed file.
Body
1 - 1201 - 24 elementsShow child attributes
Show child attributes
60064Show child attributes
Show child attributes
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Which workspace to run in — its slug. Omit to use your default. With more than one reachable workspace and no default, the call is refused and the choices are listed.
1Response
The call was admitted and dispatched. ok says whether the tool succeeded — a refusal the tool itself produced is still a 200, exactly as it is a successful JSON-RPC result over MCP.
- Option 1
- Option 2
The tool ran and answered.
confirmation_required, saved The slug of the workspace this call ran in.
Which workspace this call ran in, and how that was decided. Present on every workspace-scoped result.
Show child attributes
Show child attributes
x > 0"draft"