Resolve a Handoff as untrusted historical input

POST
/v1/handoff/continue

Authorization

BearerAuth
AuthorizationBearer <token>

Static bearer token used when local Server authentication is enabled.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/handoff/continue" \  -H "Content-Type: application/json" \  -d '{    "scope_id": "string",    "selection": "prepared"  }'
{  "trust": "untrusted_history",  "status": "empty",  "scope_id": "string",  "content": {    "schema": "powercontext.handoff.v1",    "objective": "string",    "state": [      {        "text": "string",        "citations": [          {            "kind": "source",            "source_ref": {              "name": "string",              "source_id": "string"            }          }        ]      }    ],    "disposition": "continuable",    "next_action": {      "text": "string",      "citations": [        {          "kind": "source",          "source_ref": {            "name": "string",            "source_id": "string"          }        }      ]    },    "omissions": [      {        "text": "string",        "citation": {          "kind": "source",          "source_ref": {            "name": "string",            "source_id": "string"          }        }      }    ]  },  "selection": "prepared",  "selected_revision": {    "family": "string",    "artifact_id": "string",    "revision": 1  },  "current_revision": {    "family": "string",    "artifact_id": "string",    "revision": 1  },  "evidence_checks": [    {      "claim": "state",      "state_index": 0,      "status": "available",      "unavailable_evidence": [        {          "kind": "source",          "source_ref": {            "name": "string",            "source_id": "string"          }        }      ]    }  ]}