Fetch agent details & categories
Agent Fetch
fetch_payload = {
"groc_account_id": "your_account_id",
"agent_uuid": register_payload["agent_uuid"], # Use the UUID from the registration payload
"uname": "agent_smith"
}
# Fetch agent details
fetch_payload = {
"groc_account_id": "your_account_id",
"agent_uuid": register_payload["agent_uuid"], # Use the UUID from the registration payload
"uname": "agent_smith"
}
fetch_response = agent.agent_fetch(fetch_payload)
print("Agent Fetch Response:", fetch_response)
Fetch Categories of Agent
Last updated