agent_type_id
. Agent types define the behavior or role an AI agent plays — for example, "QnA"
for answering questions, or "Tutor"
for explaining concepts.curl --location -g --request GET 'https:///v2/api/agent/type/0' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Agent Type Data fetched successfully",
"data": [
{
"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": ""
}
]
}