curl --request POST \
--url https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke \
--header 'Authorization: Bearer <token>' \
--header 'checkfu-version: <checkfu-version>' \
--header 'idempotency-key: <idempotency-key>'import requests
url = "https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke"
headers = {
"checkfu-version": "<checkfu-version>",
"idempotency-key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'idempotency-key': '<idempotency-key>',
Authorization: 'Bearer <token>'
}
};
fetch('https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke', 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/agent-blueprint-application-input-bindings/{id}/revoke",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"checkfu-version: <checkfu-version>",
"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"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("idempotency-key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
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/agent-blueprint-application-input-bindings/{id}/revoke")
.header("checkfu-version", "<checkfu-version>")
.header("idempotency-key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["idempotency-key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"disposition": "blocked",
"readiness": "not_applicable",
"lifecycle": "planned",
"approval_event_capacity": "available",
"execution": null,
"id": "<string>",
"workspace_id": "<string>",
"publication": {
"receipt_id": "<string>",
"agent_blueprint_release": {
"id": "<string>",
"blueprint_name": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"release_number": 1,
"content_sha256": "<string>",
"required_wire_version": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
}
},
"source_type": "inline_files",
"source_sha256": "<string>",
"source_revision": null,
"source_root": null,
"source_map_sha256": "<string>",
"compiler_version": "<string>",
"authoring_epoch": "checkfu.dev/v1alpha1"
},
"protocol": {
"planner_version": "<string>",
"contract_epoch": "checkfu.agent-configuration-plan/v1alpha1"
},
"base": {
"agent_blueprint_application": {
"id": "<string>",
"materialization": "pending",
"compatibility_blueprint_installation_id": "<string>",
"resource_version": 1
},
"authority_precondition_count": 1
},
"entries": [
{
"sequence": 1,
"operation": "create",
"resource": {
"resource_kind": "action_policy",
"resource_id": "<string>"
},
"logical_name": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"authoring_owner": {
"intended_owner": {
"type": "agent_source",
"id": "<string>"
},
"current_claim": {
"state": "absent",
"claim_id": null,
"current_owner": null,
"generation": null,
"absence_revision": 1
}
},
"adoption_horizon": "versioned_behavior",
"consequential": true,
"source_location": {
"file": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"canonical_path": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"start": {
"line": 1,
"column": 1,
"byte": 1
},
"end": {
"line": 1,
"column": 1,
"byte": 1
},
"derived": true
},
"changes": [
{
"semantic_path": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"before": {
"sha256": "<string>",
"utf8_bytes": 1
},
"after": {
"sha256": "<string>",
"utf8_bytes": 1
},
"redacted": true
}
],
"reason_code": "create_required",
"blocked_on_code": "configuration.source_invalid"
}
],
"change_count": 2048,
"risk": {
"horizons": [
"versioned_behavior"
],
"consequential_actions": 1,
"live_expansion_actions": 1
},
"required_inputs": [
{
"input_id": 1,
"display_name": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"type": "secret",
"write_only": true,
"reason_code": "secret_required"
}
],
"input_binding": {
"state": "not_required",
"active_binding": null,
"binding_count": 1,
"revocation_count": 1
},
"review_artifact": {
"id": "<string>",
"revision": 1,
"reviewed_body_digest": "<string>",
"expires_at": "<string>",
"access": "authorized_person_non_model_only"
},
"reviewed_provenance": {
"kind": "git_merge",
"source": {
"kind": "agent_blueprint_source",
"id": "<string>"
},
"repository_id": "<string>",
"root": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"reviewed_commit_sha": "<string>",
"merged_commit_sha": "<string>",
"review_artifact_id": "<string>",
"review_artifact_revision": 1,
"review_equivalence_fingerprint": "<string>"
},
"approval_requirements_digest": "<string>",
"plan_fingerprint": "<string>",
"approval": {
"state": "not_required",
"atom_count": 1,
"atoms": [
{
"atom_id": "<string>",
"kind": "person",
"required_receipt_count": 1,
"valid_candidate_count": 1,
"action_count": 1,
"satisfied": true
}
],
"current_witness_digest": "<string>",
"receipt_count": 1,
"revocation_count": 1,
"last_approval_event_sequence": 1
},
"expires_at": "<string>",
"resource_version": 1,
"created_at": "<string>",
"updated_at": "<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"
}
}Revoke a plan input binding
Appends an attributed revocation fact that retires one input binding; a planned plan returns to input_required. Binding revocation during an active operation is an ordered stop that lands with Cut E (§7.8).
Checkfu support posture: alpha; hosted. Required evidence journey: blueprint-authority. Deployment-specific readiness and the latest proven release are available from GET /v1/support/capabilities.
curl --request POST \
--url https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke \
--header 'Authorization: Bearer <token>' \
--header 'checkfu-version: <checkfu-version>' \
--header 'idempotency-key: <idempotency-key>'import requests
url = "https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke"
headers = {
"checkfu-version": "<checkfu-version>",
"idempotency-key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'idempotency-key': '<idempotency-key>',
Authorization: 'Bearer <token>'
}
};
fetch('https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke', 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/agent-blueprint-application-input-bindings/{id}/revoke",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"checkfu-version: <checkfu-version>",
"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"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("idempotency-key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
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/agent-blueprint-application-input-bindings/{id}/revoke")
.header("checkfu-version", "<checkfu-version>")
.header("idempotency-key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/agent-blueprint-application-input-bindings/{id}/revoke")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["idempotency-key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"disposition": "blocked",
"readiness": "not_applicable",
"lifecycle": "planned",
"approval_event_capacity": "available",
"execution": null,
"id": "<string>",
"workspace_id": "<string>",
"publication": {
"receipt_id": "<string>",
"agent_blueprint_release": {
"id": "<string>",
"blueprint_name": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"release_number": 1,
"content_sha256": "<string>",
"required_wire_version": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
}
},
"source_type": "inline_files",
"source_sha256": "<string>",
"source_revision": null,
"source_root": null,
"source_map_sha256": "<string>",
"compiler_version": "<string>",
"authoring_epoch": "checkfu.dev/v1alpha1"
},
"protocol": {
"planner_version": "<string>",
"contract_epoch": "checkfu.agent-configuration-plan/v1alpha1"
},
"base": {
"agent_blueprint_application": {
"id": "<string>",
"materialization": "pending",
"compatibility_blueprint_installation_id": "<string>",
"resource_version": 1
},
"authority_precondition_count": 1
},
"entries": [
{
"sequence": 1,
"operation": "create",
"resource": {
"resource_kind": "action_policy",
"resource_id": "<string>"
},
"logical_name": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"authoring_owner": {
"intended_owner": {
"type": "agent_source",
"id": "<string>"
},
"current_claim": {
"state": "absent",
"claim_id": null,
"current_owner": null,
"generation": null,
"absence_revision": 1
}
},
"adoption_horizon": "versioned_behavior",
"consequential": true,
"source_location": {
"file": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"canonical_path": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"start": {
"line": 1,
"column": 1,
"byte": 1
},
"end": {
"line": 1,
"column": 1,
"byte": 1
},
"derived": true
},
"changes": [
{
"semantic_path": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"before": {
"sha256": "<string>",
"utf8_bytes": 1
},
"after": {
"sha256": "<string>",
"utf8_bytes": 1
},
"redacted": true
}
],
"reason_code": "create_required",
"blocked_on_code": "configuration.source_invalid"
}
],
"change_count": 2048,
"risk": {
"horizons": [
"versioned_behavior"
],
"consequential_actions": 1,
"live_expansion_actions": 1
},
"required_inputs": [
{
"input_id": 1,
"display_name": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"type": "secret",
"write_only": true,
"reason_code": "secret_required"
}
],
"input_binding": {
"state": "not_required",
"active_binding": null,
"binding_count": 1,
"revocation_count": 1
},
"review_artifact": {
"id": "<string>",
"revision": 1,
"reviewed_body_digest": "<string>",
"expires_at": "<string>",
"access": "authorized_person_non_model_only"
},
"reviewed_provenance": {
"kind": "git_merge",
"source": {
"kind": "agent_blueprint_source",
"id": "<string>"
},
"repository_id": "<string>",
"root": {
"keyed_sha256": "<string>",
"digest_key_version": "<string>",
"utf8_bytes": 1
},
"reviewed_commit_sha": "<string>",
"merged_commit_sha": "<string>",
"review_artifact_id": "<string>",
"review_artifact_revision": 1,
"review_equivalence_fingerprint": "<string>"
},
"approval_requirements_digest": "<string>",
"plan_fingerprint": "<string>",
"approval": {
"state": "not_required",
"atom_count": 1,
"atoms": [
{
"atom_id": "<string>",
"kind": "person",
"required_receipt_count": 1,
"valid_candidate_count": 1,
"action_count": 1,
"satisfied": true
}
],
"current_witness_digest": "<string>",
"receipt_count": 1,
"revocation_count": 1,
"last_approval_event_sequence": 1
},
"expires_at": "<string>",
"resource_version": 1,
"created_at": "<string>",
"updated_at": "<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-31 1 - 255Path Parameters
^bbind_[0-9a-f]{32}$Response
Sole bounded REST and generated-SDK projection of a reviewed Application plan.
- Option 1
- Option 2
- Option 3
- Option 4
- Option 5
- Option 6
- Option 7
- Option 8
- Option 9
- Option 10
- Option 11
- Option 12
blocked not_applicable planned available ^bplan_[0-9a-f]{32}$^wrkspc_[0-9a-f]{32}$Model-safe immutable publication provenance for a reviewed Application plan.
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
1024Show child attributes
Show child attributes
0 <= x <= 4096Bounded risk counts and the non-ranked canonical horizon set.
Show child attributes
Show child attributes
256Show child attributes
Show child attributes
Opaque bounded state of the plan's protected input binding.
- Option 1
- Option 2
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Attenuated projection of the canonical server-issued review provenance.
- Option 1
- Option 2
Show child attributes
Show child attributes
^sha256:[0-9a-f]{64}$^sha256:[0-9a-f]{64}$Show child attributes
Show child attributes
A canonical UTC ISO-8601 timestamp with millisecond precision.
24^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$x > 0A canonical UTC ISO-8601 timestamp with millisecond precision.
24^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$A canonical UTC ISO-8601 timestamp with millisecond precision.
24^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$