Fetch asynchronous job history or status for a specified router.
cURL
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>" } ] }
Use the Authorization: Bearer <token> header format
Authorization: Bearer <token>
The UUID of the router.
Array of jobs
The response is of type object.
object
Was this page helpful?