curl --request POST \
  --url https://inbound.xpander.ai/agents/{agent_id}/operations/{operation_id} \
  --header "X-API-KEY: your_api_key" \
  --data '{"param1": "value1", "param2": "value2"}'
{
  "result": "Operation executed successfully",
  "output": { "status": "ok" }
}

Execute a specific operation for an agent with the provided parameters.

curl --request POST \
  --url https://inbound.xpander.ai/agents/{agent_id}/operations/{operation_id} \
  --header "X-API-KEY: your_api_key" \
  --data '{"param1": "value1", "param2": "value2"}'