Python
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>" }
Send a human response to a waiting agent and resume its execution.
Requires API key authentication.
API key authentication
Human response sent to agent
The response is of type object.
object