Skip to main content
GET
/
api
/
v1
/
spaces
/
{spaceId}
/
agents
Get all agents in a space
curl --request GET \
  --url https://dashboard.sequentum.com/api/v1/spaces/{spaceId}/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "configType": 1,
    "status": 123,
    "validationStatus": 1,
    "lastActivity": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authorization header. Example: "Authorization: ApiKey {your-api-key}"

Authorization
string
header
required

OAuth 2.0 Bearer token. Example: "Authorization: Bearer {access-token}"

Path Parameters

spaceId
integer<int32>
required

The ID of the space

Response

Returns the list of agents

id
integer<int32>
name
string | null
description
string | null
configType
enum<integer>
Available options:
1,
2,
3,
4
status
integer<int32> | null
validationStatus
enum<integer>
Available options:
1,
2,
3
lastActivity
string<date-time> | null