Skip to main content
GET
/
api
/
automl
/
feature-engineering
/
jobs
List feature engineering jobs
curl --request GET \
  --url https://api.example.com/api/automl/feature-engineering/jobs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "target_table_name": "<string>",
      "domain": "<string>",
      "owner": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.nx1cloud.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

domain
string | null

Filter by business domain.

owner
string | null

Filter by owner username.

status
enum<string> | null

Filter by status. Lifecycle of an AutoML feature engineering job.

Available options:
running,
pending_approval,
failed,
approved,
materializing,
complete
limit
integer
default:50
Required range: 1 <= x <= 500
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

items
AutoMLFeatureEngineeringJobSummary · object[]
required
total
integer
required
limit
integer
required
offset
integer
required