GET
https://release0.com/api
/
v1
/
agents
curl --request GET \
  --url https://release0.com/api/v1/agents \
  --header 'Authorization: Bearer <token>'
{
  "agents": [
    {
      "name": "<string>",
      "icon": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "id": "<string>",
      "url": "<string>",
      "description": "<string>",
      "publicId": "<string>",
      "isPublished": true,
      "publishedAt": "<string>",
      "domainId": "<string>",
      "accessRight": "read",
      "tags": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Response

200
application/json

Successful response

The response is of type object.