agentType_id
query parameter is provided, the response will return details for the specified agent type. Otherwise, all available agent types will be returned.curl --location --request GET '/agenttype/all' \
--header 'Ocp-Apim-Subscription-Key: {{your-api-key}}' \
--header 'Authorization: Bearer {{your-access-token}}'
{
"success": true,
"message": "status code 200: Agent Type Data fetched successfully",
"data": [
{
"id": 1,
"created_by": "System",
"created_on": "2024-08-23T21:38:47.044052Z",
"modified_by": "",
"modified_on": "2024-08-23T21:38:47.044079Z",
"name": "testAgent",
"description": "i am testing"
}
]
}