Airbyte · Example Payload

Airbyte Patchsource Example

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Airbyte Patchsource 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": "patchSource",
  "method": "PATCH",
  "path": "/sources/{sourceId}",
  "summary": "Airbyte Update a Source",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "Source Update Request Example",
      "example": {
        "configuration": {
          "airbyte_source_name": "google-ads",
          "conversion_window_days": 14,
          "customer_id": "1234567890",
          "start_date": 1672531200000,
          "end_date": 1704067200000
        },
        "name": "My Source",
        "workspaceId": "744cc0ed-7f05-4949-9e60-2a814f90c035"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Source Update Response Example",
      "example": {
        "sourceId": "18dccc91-0ab1-4f72-9ed7-0b8fc27c5826",
        "name": "running",
        "sourceType": "postgres",
        "workspaceId": "744cc0ed-7f05-4949-9e60-2a814f90c035"
      }
    }
  ]
}