projectTeam_id
is provided, it returns agents for that specific project team. If query
is provided without projectTeam_id
, it searches for agents within the user's teams matching the query. If neither projectTeam_id
nor query
is provided, it returns agents from all user-associated teams.curl --location --request GET '/agent/team/all/' \
--header 'Ocp-Apim-Subscription-Key: {{your-api-key}}' \
--header 'Authorization: Bearer {{your-access-token}}'
{
"success": true,
"message": "Agent Data fetched successfully.",
"data": [
{
"id": 809,
"name": "Sample Agent",
"specialization": "Provides assistance for JavaScript coding"
}
]
}