GET
/
api
/
routers
/
{router_id}
/
jobs
curl --request GET \
  --url https://api.altostrat.io/api/routers/{router_id}/jobs \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "data": [
    {
      "id": "<string>",
      "token": "<string>",
      "idempotency_key": "<string>",
      "description": "<string>",
      "express_execute": true,
      "needs_acknowledgement": true,
      "make_backup": true,
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "failed_at": "2023-11-07T05:31:56Z",
      "deleted_at": "2023-11-07T05:31:56Z",
      "status": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use the Authorization: Bearer <token> header format

Path Parameters

router_id
string
required

The UUID of the router.

Response

200 - application/json
Array of jobs
status
string
data
object[]