Skip to main content
POST
/
api
/
hyper-ai
/
confirm-tool
Submit a runtime checkpoint response for a pending Hyper AI tool call.
curl --request POST \
  --url https://api.production.hyperoru.com/api/hyper-ai/confirm-tool \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "confirmation_id": "<string>",
  "confirmed": true,
  "task_id": "<string>"
}
'
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.

Body

application/json
confirmation_id
string
required
confirmed
boolean
required
task_id
string
required

Response

Confirmation accepted

Generic { "status": "success", "message": "..." } ack used by handlers whose primary purpose is side effects (toggles, deletes, async starts).

status
string
required
Example:

"success"

message
string | null