v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Cloud

Get "Update Azure Data Source" Job Status

Get the status of a data source update request started by Update Azure Data Source or Update Azure Data Source from File.

get/v1/dataSources/azure/{azureDataSourceId}/{jobReferenceId}/status

Path parameters

azureDataSourceIdstring required

Azure data source ID

Example:azureds_34567

The ID of the Azure data source associated with the job

jobReferenceIdstring required

Unique identifier for an asynchronous job

Example:jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454

Response

OK. Returns the job status.

jobIdstring required

Unique identifier for an asynchronous job

status'PENDING' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' required

Status of an asynchronous job

Example response

{
  "jobId": "jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454",
  "status": "SUCCEEDED",
  "response": {
    "name": "Example Azure Data Source",
    "dataSourceId": "azureds_34567"
  }
}