Airbyte · Example Payload

Airbyte Createjob Example

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Airbyte Createjob Example is an example object payload from Airbyte, 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": "createJob",
  "method": "POST",
  "path": "/jobs",
  "summary": "Airbyte Trigger a Sync or Reset Job of a Connection",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "Job Creation Request Example",
      "example": {
        "connectionId": "e735894a-e773-4938-969f-45f53957b75b",
        "jobType": "sync"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Job Creation Response Example",
      "example": {
        "jobId": 1234,
        "status": "running",
        "jobType": "sync"
      }
    }
  ]
}