Azure Databricks · Example Payload

Microsoft Azure Databricks Runjobnow Example

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Microsoft Azure Databricks Runjobnow Example is an example object payload from Azure Databricks, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "runJobNow",
  "method": "POST",
  "path": "/2.1/jobs/run-now",
  "summary": "Azure Databricks Trigger a New Job Run",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "RunjobnowRequestExample",
      "example": {
        "job_id": "500123",
        "idempotency_token": "example_value",
        "notebook_params": "example_value",
        "python_params": [
          "example_value"
        ],
        "spark_submit_params": [
          "example_value"
        ],
        "jar_params": [
          "example_value"
        ],
        "pipeline_params": {
          "full_refresh": true
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Runjobnow200Example",
      "example": {
        "run_id": "500123",
        "number_in_job": 10
      }
    }
  ]
}