POST
/
agent
/
answer
/
{agent_id}
Python (SDK)
import os
from skylight_sdk import Skylight


with Skylight(
    apikey=os.getenv("SKYLIGHT_APIKEY", ""),
) as skylight:

    res = skylight.agent.answer(agent_id="<id>", request_body={})

    # Handle response
    print(res)
{
  "message": "<string>",
  "status": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key authentication

Path Parameters

agent_id
string
required

Body

application/json · Response · object

Response

200
application/json

Human response sent to agent

The response is of type object.