View Categories

List agents

< 1 min read

GET/agents

Code Samples #

  • 💻 cURL
  • 📄 JavaScript
  • 🐍 Python
  • 🐘 PHP
  • 🔷 C#
  • Java
Copy
curl --request GET \
  --url 'https://api.taskflow.example.com/v2/agents' \
  --header 'Authorization: Bearer YOUR_TOKEN'

Response #

Copy
[
    {
        "id": "string",
        "name": "string",
        "online": true
    }
]

Responses #

200 — Agents #

FieldTypeRequiredDescription
[].idstringOptional
[].namestringOptional
[].onlinebooleanOptional
📋
Example 200 response
Copy
[
    {
        "id": "string",
        "name": "string",
        "online": true
    }
]

Powered by BetterDocs

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is registered on wpml.org as a development site. Switch to a production site key to remove this banner.