Skip to main content
GET
/
radius
/
migration
/
jobs
/
{jobId}
Get Job Status
curl --request GET \
  --url https://api.altostrat.io/radius/migration/jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "mig_job_01HGN7RXYZABC123",
    "type": "dry-run",
    "filename": "user_import_q4.csv",
    "status": "completed",
    "total_rows": 1000,
    "processed_rows": 1000,
    "created_count": 990,
    "updated_count": 0,
    "skipped_count": 5,
    "error_count": 5,
    "results_url": "<string>",
    "summary": {
      "total_rows": 123,
      "created": 123,
      "updated": 123,
      "skipped": 123,
      "errors": 123
    },
    "started_at": "2023-11-07T05:31:56Z",
    "completed_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Enter your API key in the format: Bearer <token>

Path Parameters

jobId
string
required

The unique identifier for the migration job, prefixed with mig_job_.

Response

The current status of the migration job.

data
object