curl --request POST \
--url https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-version: <checkfu-version>' \
--data '
{
"image": "<string>",
"entrypoint": "<string>",
"working_directory": "<string>",
"configuration_schema": true,
"model_wire_dialects": [],
"argv": "<unknown>",
"prompt_transport": "<unknown>",
"output_mode": "<unknown>",
"resume_flag": "<unknown>",
"output_schema_flag": "<unknown>",
"output_schema_transport": "<unknown>",
"managed_adapter_release": "<unknown>",
"protocol": "acp-v1",
"arguments": [
"<string>"
]
}
'import requests
url = "https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases"
payload = {
"image": "<string>",
"entrypoint": "<string>",
"working_directory": "<string>",
"configuration_schema": True,
"model_wire_dialects": [],
"argv": "<unknown>",
"prompt_transport": "<unknown>",
"output_mode": "<unknown>",
"resume_flag": "<unknown>",
"output_schema_flag": "<unknown>",
"output_schema_transport": "<unknown>",
"managed_adapter_release": "<unknown>",
"protocol": "acp-v1",
"arguments": ["<string>"]
}
headers = {
"checkfu-version": "<checkfu-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
image: '<string>',
entrypoint: '<string>',
working_directory: '<string>',
configuration_schema: true,
model_wire_dialects: [],
argv: '<unknown>',
prompt_transport: '<unknown>',
output_mode: '<unknown>',
resume_flag: '<unknown>',
output_schema_flag: '<unknown>',
output_schema_transport: '<unknown>',
managed_adapter_release: '<unknown>',
protocol: 'acp-v1',
arguments: ['<string>']
})
};
fetch('https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases', 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.checkfu.com/v1/organizations/{organization_id}/harness-releases",
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([
'image' => '<string>',
'entrypoint' => '<string>',
'working_directory' => '<string>',
'configuration_schema' => true,
'model_wire_dialects' => [
],
'argv' => '<unknown>',
'prompt_transport' => '<unknown>',
'output_mode' => '<unknown>',
'resume_flag' => '<unknown>',
'output_schema_flag' => '<unknown>',
'output_schema_transport' => '<unknown>',
'managed_adapter_release' => '<unknown>',
'protocol' => 'acp-v1',
'arguments' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-version: <checkfu-version>"
],
]);
$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.checkfu.com/v1/organizations/{organization_id}/harness-releases"
payload := strings.NewReader("{\n \"image\": \"<string>\",\n \"entrypoint\": \"<string>\",\n \"working_directory\": \"<string>\",\n \"configuration_schema\": true,\n \"model_wire_dialects\": [],\n \"argv\": \"<unknown>\",\n \"prompt_transport\": \"<unknown>\",\n \"output_mode\": \"<unknown>\",\n \"resume_flag\": \"<unknown>\",\n \"output_schema_flag\": \"<unknown>\",\n \"output_schema_transport\": \"<unknown>\",\n \"managed_adapter_release\": \"<unknown>\",\n \"protocol\": \"acp-v1\",\n \"arguments\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
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.checkfu.com/v1/organizations/{organization_id}/harness-releases")
.header("checkfu-version", "<checkfu-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"image\": \"<string>\",\n \"entrypoint\": \"<string>\",\n \"working_directory\": \"<string>\",\n \"configuration_schema\": true,\n \"model_wire_dialects\": [],\n \"argv\": \"<unknown>\",\n \"prompt_transport\": \"<unknown>\",\n \"output_mode\": \"<unknown>\",\n \"resume_flag\": \"<unknown>\",\n \"output_schema_flag\": \"<unknown>\",\n \"output_schema_transport\": \"<unknown>\",\n \"managed_adapter_release\": \"<unknown>\",\n \"protocol\": \"acp-v1\",\n \"arguments\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"image\": \"<string>\",\n \"entrypoint\": \"<string>\",\n \"working_directory\": \"<string>\",\n \"configuration_schema\": true,\n \"model_wire_dialects\": [],\n \"argv\": \"<unknown>\",\n \"prompt_transport\": \"<unknown>\",\n \"output_mode\": \"<unknown>\",\n \"resume_flag\": \"<unknown>\",\n \"output_schema_flag\": \"<unknown>\",\n \"output_schema_transport\": \"<unknown>\",\n \"managed_adapter_release\": \"<unknown>\",\n \"protocol\": \"acp-v1\",\n \"arguments\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"organization_id": "<string>",
"digest": "<string>",
"artifact": {
"kind": "managed",
"protocol": "mock",
"preset": "<string>",
"adapter_version": "<string>",
"recipe_digest": "<string>"
},
"configuration_schema": true,
"created_at": "<string>",
"source_provenance": {
"kind": "github",
"repository": "<string>",
"commit_sha": "<string>",
"runner_id": "<string>",
"build_id": "<string>"
}
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Create a HarnessRelease
Publishes an Organization-owned, immutable HarnessRelease from a digest-pinned OCI image plus its platform, entrypoint, arguments, non-secret configuration schema, and optional closed set of model wire dialects; image tags are rejected. A declared dialect set is enforced against the ModelRoutingProfile candidate ladder at Run admission, while omission preserves the unconstrained legacy behavior. Configuration is deliberately non-secret — never place model keys or gateway tokens in it. npm, Git, URL, and Dockerfile inputs are import or build recipes that must resolve to a content-addressed release before use. Returns the release with 201; send Idempotency-Key to make retries safe.
Checkfu support posture: alpha; hosted. Required evidence journey: harness-registry. Deployment-specific readiness and the latest proven release are available from GET /v1/support/capabilities.
curl --request POST \
--url https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-version: <checkfu-version>' \
--data '
{
"image": "<string>",
"entrypoint": "<string>",
"working_directory": "<string>",
"configuration_schema": true,
"model_wire_dialects": [],
"argv": "<unknown>",
"prompt_transport": "<unknown>",
"output_mode": "<unknown>",
"resume_flag": "<unknown>",
"output_schema_flag": "<unknown>",
"output_schema_transport": "<unknown>",
"managed_adapter_release": "<unknown>",
"protocol": "acp-v1",
"arguments": [
"<string>"
]
}
'import requests
url = "https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases"
payload = {
"image": "<string>",
"entrypoint": "<string>",
"working_directory": "<string>",
"configuration_schema": True,
"model_wire_dialects": [],
"argv": "<unknown>",
"prompt_transport": "<unknown>",
"output_mode": "<unknown>",
"resume_flag": "<unknown>",
"output_schema_flag": "<unknown>",
"output_schema_transport": "<unknown>",
"managed_adapter_release": "<unknown>",
"protocol": "acp-v1",
"arguments": ["<string>"]
}
headers = {
"checkfu-version": "<checkfu-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
image: '<string>',
entrypoint: '<string>',
working_directory: '<string>',
configuration_schema: true,
model_wire_dialects: [],
argv: '<unknown>',
prompt_transport: '<unknown>',
output_mode: '<unknown>',
resume_flag: '<unknown>',
output_schema_flag: '<unknown>',
output_schema_transport: '<unknown>',
managed_adapter_release: '<unknown>',
protocol: 'acp-v1',
arguments: ['<string>']
})
};
fetch('https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases', 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.checkfu.com/v1/organizations/{organization_id}/harness-releases",
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([
'image' => '<string>',
'entrypoint' => '<string>',
'working_directory' => '<string>',
'configuration_schema' => true,
'model_wire_dialects' => [
],
'argv' => '<unknown>',
'prompt_transport' => '<unknown>',
'output_mode' => '<unknown>',
'resume_flag' => '<unknown>',
'output_schema_flag' => '<unknown>',
'output_schema_transport' => '<unknown>',
'managed_adapter_release' => '<unknown>',
'protocol' => 'acp-v1',
'arguments' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-version: <checkfu-version>"
],
]);
$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.checkfu.com/v1/organizations/{organization_id}/harness-releases"
payload := strings.NewReader("{\n \"image\": \"<string>\",\n \"entrypoint\": \"<string>\",\n \"working_directory\": \"<string>\",\n \"configuration_schema\": true,\n \"model_wire_dialects\": [],\n \"argv\": \"<unknown>\",\n \"prompt_transport\": \"<unknown>\",\n \"output_mode\": \"<unknown>\",\n \"resume_flag\": \"<unknown>\",\n \"output_schema_flag\": \"<unknown>\",\n \"output_schema_transport\": \"<unknown>\",\n \"managed_adapter_release\": \"<unknown>\",\n \"protocol\": \"acp-v1\",\n \"arguments\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
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.checkfu.com/v1/organizations/{organization_id}/harness-releases")
.header("checkfu-version", "<checkfu-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"image\": \"<string>\",\n \"entrypoint\": \"<string>\",\n \"working_directory\": \"<string>\",\n \"configuration_schema\": true,\n \"model_wire_dialects\": [],\n \"argv\": \"<unknown>\",\n \"prompt_transport\": \"<unknown>\",\n \"output_mode\": \"<unknown>\",\n \"resume_flag\": \"<unknown>\",\n \"output_schema_flag\": \"<unknown>\",\n \"output_schema_transport\": \"<unknown>\",\n \"managed_adapter_release\": \"<unknown>\",\n \"protocol\": \"acp-v1\",\n \"arguments\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/organizations/{organization_id}/harness-releases")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"image\": \"<string>\",\n \"entrypoint\": \"<string>\",\n \"working_directory\": \"<string>\",\n \"configuration_schema\": true,\n \"model_wire_dialects\": [],\n \"argv\": \"<unknown>\",\n \"prompt_transport\": \"<unknown>\",\n \"output_mode\": \"<unknown>\",\n \"resume_flag\": \"<unknown>\",\n \"output_schema_flag\": \"<unknown>\",\n \"output_schema_transport\": \"<unknown>\",\n \"managed_adapter_release\": \"<unknown>\",\n \"protocol\": \"acp-v1\",\n \"arguments\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"organization_id": "<string>",
"digest": "<string>",
"artifact": {
"kind": "managed",
"protocol": "mock",
"preset": "<string>",
"adapter_version": "<string>",
"recipe_digest": "<string>"
},
"configuration_schema": true,
"created_at": "<string>",
"source_provenance": {
"kind": "github",
"repository": "<string>",
"commit_sha": "<string>",
"runner_id": "<string>",
"build_id": "<string>"
}
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
2026-08-27 255Path Parameters
^org_[0-9a-f]{32}$Body
- Option 1
- Option 2
4096^\/(?!\.{1,2}(?:\/|$))[A-Za-z0-9._-]+(?:\/(?!\.{1,2}(?:\/|$))[A-Za-z0-9._-]+)*$4096^\/(?!\.{1,2}(?:\/|$))[A-Za-z0-9._-]+(?:\/(?!\.{1,2}(?:\/|$))[A-Za-z0-9._-]+)*$Show child attributes
Show child attributes
1 - 4 elementsanthropic_messages, openai_chat, openai_responses, fal_queue acp-v1 At most 256 exact process arguments and 131072 aggregate UTF-8 bytes including one terminator per argument
256Exact process argument text, preserving whitespace; U+0000 is forbidden and UTF-8 encoding is limited to 65536 bytes
65536^[^\u0000]*$session_http, none Response
Success
^hrel_[0-9a-f]{32}$^org_[0-9a-f]{32}$^sha256:[0-9a-f]{64}$- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Show child attributes
Show child attributes