Skip to main content
GET
/
radius
/
migration
/
jobs
List Jobs
curl --request GET \
  --url https://api.altostrat.io/radius/migration/jobs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "filename": "<string>",
      "status": "<string>",
      "total_rows": 123,
      "processed_rows": 123,
      "created_count": 123,
      "updated_count": 123,
      "skipped_count": 123,
      "error_count": 123,
      "results_url": "<string>",
      "summary": {},
      "started_at": "<string>",
      "completed_at": "<string>"
    }
  ],
  "pagination": {
    "per_page": 123,
    "has_more": true,
    "next_cursor": "<string>",
    "total_items": 123
  },
  "links": {
    "first": "<string>",
    "next": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

per_page
integer
default:25
cursor
string

Response

200 - application/json

List of jobs.

data
object[]
pagination
object