Skip to main content
POST
/
v1
/
ask-feather
/
sessions
/
{session_id}
/
messages
/
approve
Approve Message
curl --request POST \
  --url https://api-sandbox.featherhq.com/v1/ask-feather/sessions/{session_id}/messages/approve \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "decisions": [
    {
      "tool_call_id": "<string>",
      "approved": true
    }
  ]
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

session_id
string<uuid>
required

Body

application/json
decisions
ApprovalDecision · object[]
required
Minimum array length: 1

Response

Successful Response