Get Agent Data
GET/api/v1/beta/agent-data/{item_id}
Get agent data by ID.
Path Parameters
item_id: string
Query Parameters
organization_id: optional string
project_id: optional string
Cookie Parameters
session: optional string
Returns
Get Agent Data
curl https://api.cloud.llamaindex.ai/api/v1/beta/agent-data/$ITEM_ID \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"{
"data": {
"foo": "bar"
},
"deployment_name": "deployment_name",
"id": "id",
"collection": "collection",
"created_at": "2019-12-27T18:11:19.117Z",
"project_id": "project_id",
"updated_at": "2019-12-27T18:11:19.117Z"
}Returns Examples
{
"data": {
"foo": "bar"
},
"deployment_name": "deployment_name",
"id": "id",
"collection": "collection",
"created_at": "2019-12-27T18:11:19.117Z",
"project_id": "project_id",
"updated_at": "2019-12-27T18:11:19.117Z"
}