curl --request GET \
--url http://localhost:3000/api/agents/{agentId}/panels
{
"success": true,
"data": [
{
"name": "<string>",
"path": "<string>"
}
]
}
Get public UI panels available for this agent from its plugins
curl --request GET \
--url http://localhost:3000/api/agents/{agentId}/panels
{
"success": true,
"data": [
{
"name": "<string>",
"path": "<string>"
}
]
}
ID of the agent
Agent panels retrieved successfully
The response is of type object
.
Was this page helpful?