Skip to main content
POST
/
api
/
v2
/
browser-agents
/
{slug}
/
invoke
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.browser_agents.invoke(
    slug="slug",
)
print(response.async_result_id)
{
  "asyncResultId": "<string>",
  "browserAgentRunId": "<string>"
}

Path Parameters

slug
string
required

Browser agent slug

Body

application/json
variables
object

Variables to pass to the browser agent

Response

Successfully started browser agent invocation

asyncResultId
string
required

ID to track the browser agent invocation status

browserAgentRunId
string
required

ID to track the browser agent run

I