Finalize an inspected Handoff Draft

POST
/v1/handoff/finalize

Authorization

BearerAuth
AuthorizationBearer <token>

Bearer credential resolved to an opaque authenticated Principal by the Server deployment.

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

application/json

curl -X POST "https://example.com/v1/handoff/finalize" \  -H "Content-Type: application/json" \  -d '{    "scope_id": "string",    "draft": {      "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"            }          }        }      ]    }  }'
{  "generation": {    "receipt": "string"  },  "schema": "powercontext.prepared-handoff.v1",  "scope_id": "string",  "base": {    "family": "string",    "artifact_id": "string",    "revision": 1  },  "content": {    "generation": {      "scope_id": "string",      "prompt_key": "handoff.generate",      "selection": "built_in",      "artifact": {        "family": "string",        "artifact_id": "string",        "revision": 1      },      "definition_version": "string",      "builtin_version": "string",      "compiled_digest": "string",      "original_draft_digest": "string",      "edit_status": "unchanged"    },    "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"          }        }      }    ]  }}