Fetch agent details & categories

Agent Fetch

Retrieve agent information using unique identifiers (agent_uuid).

Payload Example

fetch_payload = {
    "groc_account_id": "your_account_id",
    "agent_uuid": register_payload["agent_uuid"],  # Use the UUID from the registration payload
    "uname": "agent_smith"
}

Example Code

# 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)

Example Response

Fetch Categories of Agent

Fetches a list of available agent categories from Agentlake.

Example Code

Example Response


Last updated