Keboola · Example Payload

Queue Api Createjob Request

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Queue Api Createjob Request is an example object payload from Keboola, with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

Job with configRowsJob with configDataJob with image tagJob in debug modeJob in dev branchJob with pre-defined variable ValuesJob with inline variable valuesJob with customized backendJob with customized backend context

Example Payload

Raw ↑
{
  "Job with configRows": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "run",
      "config": "123456789",
      "configRowIds": [
        "12345",
        "67890"
      ]
    }
  },
  "Job with configData": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "run",
      "configData": {
        "parameters": {
          "foo": "bar",
          "baz": "mek"
        }
      }
    }
  },
  "Job with image tag": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "run",
      "config": "123456789",
      "tag": "1.2.3"
    }
  },
  "Job in debug mode": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "debug",
      "config": "123456789"
    }
  },
  "Job in dev branch": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "debug",
      "config": "123456789",
      "branchId": "456789"
    }
  },
  "Job with pre-defined variable Values": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "debug",
      "config": "123456789",
      "variableValuesId": "456789"
    }
  },
  "Job with inline variable values": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "debug",
      "config": "123456789",
      "variableValuesData": {
        "values": [
          {
            "name": "someVariable",
            "value": "someValue"
          }
        ]
      }
    }
  },
  "Job with customized backend": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "run",
      "config": "123456789",
      "backend": {
        "type": "medium"
      }
    }
  },
  "Job with customized backend context": {
    "value": {
      "component": "keboola.ex-db-snowflake",
      "mode": "run",
      "config": "123456789",
      "backend": {
        "context": "123_extractor"
      }
    }
  }
}