Get All Agents Of Project
GET
/v2/api/agent/project/{project_id}
Project
project_id
, allowing users to view comprehensive agent configurations, ownership, and functional details.page
query parameter to efficiently navigate large sets of agent records.project_id
?project_id
is a unique numeric identifier assigned to each project in the Ejento platform.How to Find Your Project ID
project_id
, follow this guide:How to View Project ID
project_id
is mandatory and must be a valid integer.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v2/api/agent/project/4?page=1'
Response Response Example
200 - Example 1
{
"success": true,
"message": "Agent Project Data fetched successfully",
"data": [
{
"id": 169,
"user": {
"id": 4,
"email": "user@example.com",
"first_name": "user",
"last_name": "user",
"organization": 1
},
"agent_type": {
"id": 1,
"created_by": "System",
"created_on": "2024-04-17T23:10:22.313394Z",
"modified_by": "user@example.com",
"modified_on": "2024-04-17T23:10:22.313414Z",
"name": "QnA",
"description": ""
},
"instructions": [],
"connected_tool_names": [
"Rag Tool"
],
"agent_name": "Expertise Guide",
"industry_area": "",
"domain": "Expert AI assistant providing guidance and assistance in LLM field.",
"sample_q1": "What are the components needed for AI software?",
"sample_q2": "What criteria should be considered when selecting a supplier for AI software components?",
"sample_q3": "What factors contribute to the sustainability of AI software components?",
"prefix_prompt": "You are an LLM Expert agent who specializes in providing expert guidance on LLM programs.",
"alias": null,
"is_active": false,
"is_deleted": false,
"created_by": "user@example.com",
"created_on": "2024-03-27T22:13:43.965931Z",
"agent_image": "https://testenvrstorage.blob.core.windows.net/dev-dall-e-images/ExpertiseGuide_f9b8c45e-c714-42ea-a03b-cc53a4415736.jpg",
"access": "Public",
"status": "Live",
"caching_enabled": false,
"chunk_count": 32,
"react_enabled": false,
"react_max_iteration_count": 50,
"project": 4,
"llm_config": 1,
"cloned_from": null
}
]
}
Request
Path Params
project_id
integerÂ
required
Example:
4
Query Params
page
integer <int32>
optional
Example:
1