Skip to main content
GET
/
api
/
automl
/
feature-engineering
/
jobs
/
{job_id}
/
materialization
Get materialization status
curl --request GET \
  --url https://api.example.com/api/automl/feature-engineering/jobs/{job_id}/materialization \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "trino_query_id": "<string>",
  "rows_processed": 123,
  "error": "<string>",
  "started_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "training_job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

job_id
string<uuid>
required

Feature engineering job ID.

Response

Successful Response

Status of the materialization step.

job_id
string<uuid>
required
status
enum<string>
required

Lifecycle of an AutoML feature engineering job.

Available options:
running,
pending_approval,
failed,
approved,
materializing,
complete
trino_query_id
string | null
rows_processed
integer | null
error
string | null
started_at
string<date-time> | null
completed_at
string<date-time> | null
training_job_id
string<uuid> | null

AutoML training job chained from this feature engineering job when auto_train is true.