List all agents
GET/v1/agents/
Returns a list of agents.
Request
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
3.9
- 3.93.10
- 3.103.11
- 3.113.12
- 3.12]
total_count integer
current_page integer
next urinullable
previous urinullable
results
object[]
id uuidrequired
name stringrequired
script stringrequired
requirements stringrequired
env_vars stringrequired
python_version stringrequired
Possible values: [3.9
, 3.10
, 3.11
, 3.12
]
created date-timerequired
modified date-timerequired
{
"total_count": 123,
"current_page": 1,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"script": "string",
"requirements": "string",
"env_vars": "string",
"python_version": "3.9",
"created": "2024-12-13T08:33:24.929Z",
"modified": "2024-12-13T08:33:24.929Z"
}
]
}
Loading...