Build a new pipeline revision
curl --request POST \
--url https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"summary": "<string>",
"instructions": "<string>",
"connectors": [
{
"connector": "<string>",
"connectionId": "<string>"
}
]
}
'import requests
url = "https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions"
payload = {
"summary": "<string>",
"instructions": "<string>",
"connectors": [
{
"connector": "<string>",
"connectionId": "<string>"
}
]
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
summary: '<string>',
instructions: '<string>',
connectors: [{connector: '<string>', connectionId: '<string>'}]
})
};
fetch('https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions', 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.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions",
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([
'summary' => '<string>',
'instructions' => '<string>',
'connectors' => [
[
'connector' => '<string>',
'connectionId' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-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://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions"
payload := strings.NewReader("{\n \"summary\": \"<string>\",\n \"instructions\": \"<string>\",\n \"connectors\": [\n {\n \"connector\": \"<string>\",\n \"connectionId\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"summary\": \"<string>\",\n \"instructions\": \"<string>\",\n \"connectors\": [\n {\n \"connector\": \"<string>\",\n \"connectionId\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"summary\": \"<string>\",\n \"instructions\": \"<string>\",\n \"connectors\": [\n {\n \"connector\": \"<string>\",\n \"connectionId\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"revisionId": "<string>",
"pipelineId": "<string>",
"summary": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"links": {
"self": "<string>",
"pipeline": "<string>"
},
"definition": {
"instructions": "<string>",
"connectors": [
{
"connector": "<string>",
"connectionId": "<string>"
}
]
},
"inputJsonSchema": {},
"outputJsonSchema": {},
"assumptions": [
"<string>"
],
"warnings": [
"<string>"
],
"error": "<unknown>"
}{
"error": "<string>",
"connector": "<string>",
"flow": "<string>",
"providerError": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
],
"message": "<string>",
"reason": "<string>",
"runId": "<string>",
"requiredActions": [
{
"id": "<string>",
"type": "connect_service",
"connector": "<string>",
"href": "<string>",
"request": {}
}
],
"billing": {
"checkoutPath": "<string>"
}
}{
"error": "<string>",
"connector": "<string>",
"flow": "<string>",
"providerError": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
],
"message": "<string>",
"reason": "<string>",
"runId": "<string>",
"requiredActions": [
{
"id": "<string>",
"type": "connect_service",
"connector": "<string>",
"href": "<string>",
"request": {}
}
],
"billing": {
"checkoutPath": "<string>"
}
}Revisions
Build a new pipeline revision
Create a new executable revision when the reusable pipeline instructions or connector configuration change. Do not create a revision for each run date; use the run endpoint for each execution.
POST
/
v1
/
workspaces
/
{workspaceId}
/
pipelines
/
{pipelineId}
/
revisions
Build a new pipeline revision
curl --request POST \
--url https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"summary": "<string>",
"instructions": "<string>",
"connectors": [
{
"connector": "<string>",
"connectionId": "<string>"
}
]
}
'import requests
url = "https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions"
payload = {
"summary": "<string>",
"instructions": "<string>",
"connectors": [
{
"connector": "<string>",
"connectionId": "<string>"
}
]
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
summary: '<string>',
instructions: '<string>',
connectors: [{connector: '<string>', connectionId: '<string>'}]
})
};
fetch('https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions', 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.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions",
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([
'summary' => '<string>',
'instructions' => '<string>',
'connectors' => [
[
'connector' => '<string>',
'connectionId' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-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://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions"
payload := strings.NewReader("{\n \"summary\": \"<string>\",\n \"instructions\": \"<string>\",\n \"connectors\": [\n {\n \"connector\": \"<string>\",\n \"connectionId\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"summary\": \"<string>\",\n \"instructions\": \"<string>\",\n \"connectors\": [\n {\n \"connector\": \"<string>\",\n \"connectionId\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.erna.ai/v1/workspaces/{workspaceId}/pipelines/{pipelineId}/revisions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"summary\": \"<string>\",\n \"instructions\": \"<string>\",\n \"connectors\": [\n {\n \"connector\": \"<string>\",\n \"connectionId\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"revisionId": "<string>",
"pipelineId": "<string>",
"summary": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"links": {
"self": "<string>",
"pipeline": "<string>"
},
"definition": {
"instructions": "<string>",
"connectors": [
{
"connector": "<string>",
"connectionId": "<string>"
}
]
},
"inputJsonSchema": {},
"outputJsonSchema": {},
"assumptions": [
"<string>"
],
"warnings": [
"<string>"
],
"error": "<unknown>"
}{
"error": "<string>",
"connector": "<string>",
"flow": "<string>",
"providerError": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
],
"message": "<string>",
"reason": "<string>",
"runId": "<string>",
"requiredActions": [
{
"id": "<string>",
"type": "connect_service",
"connector": "<string>",
"href": "<string>",
"request": {}
}
],
"billing": {
"checkoutPath": "<string>"
}
}{
"error": "<string>",
"connector": "<string>",
"flow": "<string>",
"providerError": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
],
"message": "<string>",
"reason": "<string>",
"runId": "<string>",
"requiredActions": [
{
"id": "<string>",
"type": "connect_service",
"connector": "<string>",
"href": "<string>",
"request": {}
}
],
"billing": {
"checkoutPath": "<string>"
}
}Authorizations
OAuth2 access token or API key
Headers
Minimum string length:
1Example:
"unique-idempotency-key"
Body
application/json
Human-readable reason for rebuilding the reusable pipeline configuration.
Minimum string length:
1Updated reusable business rules and configuration for future runs. Omit to keep the current instructions.
Minimum string length:
1Updated connector set for future builds and runs. Omit to keep current connectors.
Show child attributes
Show child attributes
Response
Revision accepted
Available options:
building, ready, failed, canceled Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I