Skip to main content
POST
/
conversations
/
{conversation_id}
/
agent-stream
/
{runId}
/
tool-result
Submit a client tool result for a waiting project-agent run
curl --request POST \
  --url https://api.veryfront.com/conversations/{conversation_id}/agent-stream/{runId}/tool-result \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "toolCallId": "<string>",
  "result": null,
  "isError": false
}
'
{
  "accepted": true,
  "duplicate": true
}

Authorizations

Authorization
string
header
required

Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.

Path Parameters

conversation_id
string<uuid>
required
runId
string
required
Minimum string length: 1

Body

application/json
toolCallId
string
required
Required string length: 1 - 128
result
unknown
required
isError
boolean
default:false

Response

Tool result accepted

accepted
boolean
required
duplicate
boolean