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.9
- 3.10- 3.10
- 3.11- 3.11
- 3.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]
store_id uuidrequired
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",
      "store_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "created": "2024-12-28T11:16:10.049Z",
      "modified": "2024-12-28T11:16:10.049Z"
    }
  ]
}
Loading...