LogoLogo
Back to OsmosDeveloper DocsOsmos BlogWhat's New
  • Welcome to Osmos
  • ๐Ÿ‘‹Getting Started with Osmos
    • Terminology
  • ๐ŸŽ‰What's New
  • ๐ŸงฉOsmos API Reference
  • โŒจ๏ธOsmos Chat
  • ๐Ÿ‘ฉโ€๐Ÿ’ปDeveloper Docs
    • Manage API Keys
    • Embedding an Osmos Uploader
    • Embedding Uploader Jobs Table
    • Turning on Advanced Mode Uploader
    • Customizing Uploader Styling
    • Passing Parameterized Fields
    • Configuring Uploader's "Recall" functionality
    • Optional Uploader Settings
    • Uploader Submission Callback
    • Configuring AutoClean for your Uploader
    • Uploader Client-Side Validation
      • Data Validators
      • Checking for Duplicate values in a field
      • Creating Dropdown-Controlled Fields
      • Dynamic Dropdown Options
      • Dropdown Interaction with Validation Functions
    • Validation and Transformation Webhooks
      • OpenAPI Validation Webhook Testing
    • Parser Webhook for file based connectors
  • ๐Ÿ” Datasets
    • Osmos Datasets
      • Uploading Data to your Table
      • Creating Primary and Foreign keys
      • Osmos Dataset Destination Connector
      • Osmos Dataset Source Connector
      • Dataset Edits
    • Datasets Query Builder
      • Query Builder Metadata
    • Performing Look Ups
      • Performing Joins
        • Types of Joins
  • โ๏ธUploader
    • Creating an Osmos Uploader
      • Testing your Osmos Uploader
    • Uploader Validation Summary
    • Advanced Mode
      • Overview
      • Process
    • Standard Mode
      • Overview
      • AutoClean
      • Process
    • AI AutoMapping
    • Uploaders Page
    • Uploader Details Page
  • ๐Ÿ”€Pipelines
    • Step 1. Select the Source
    • Step 2. Select a Destination
    • Step 3. Map & Transform Data
    • Step 4. Schedule the Pipeline
    • Step 5. Review & Confirm
    • Pipelines Page
    • Pipeline Details Page
  • โฉData Transformations
    • AutoMap
    • Column Mapping & Data Cleanup Panel
    • QuickFixes
    • AI Value Mapping
    • AI AutoClean
    • Lookups
      • Performing Lookups
    • SmartFill
    • Formulas
      • Date & Time Formulas
        • DateTime Format Specifiers
        • Timezone specifiers
      • Math Formulas and Operators
      • Logical Formulas & Operators
        • True & False Casting
      • Text Formulas
      • Other Formulas
    • Deduplication
  • โ†˜๏ธSource Connectors
    • Amazon S3
    • Azure Blob Storage
    • BigQuery
    • Email
    • FTP
    • Google Cloud Storage (GCS)
    • Google Drive
    • Google Sheets
    • HTTP API (Call an Osmos API)
    • HTTP API (Osmos Calls Your API)
    • Osmos Dataset
    • Snowflake
    • Accessing Sources behind firewall
  • โ†–๏ธDestination Connectors
    • Amazon S3
    • BigQuery
    • FTP
    • Google Cloud Storage (GCS)
    • Google Drive
    • Google Sheets
    • HTTP API (Call an Osmos API)
    • HTTP API (Osmos Calls Your API)
      • Passing Dynamic Tokens in the API Header
    • MySQL
    • Osmos Dataset
    • PostgreSQL
    • Snowflake
    • Accessing Destinations behind firewall
  • ๐Ÿ—‚๏ธProjects
  • โš™๏ธAdministration
    • Email Notifications
  • ๐Ÿ”’Security
  • ๐Ÿ“žSupport
  • Back to Osmos.io
Powered by GitBook
On this page

Was this helpful?

  1. Developer Docs

Parser Webhook for file based connectors

In this section we provide a tutorial in which you will learn how to implement a webhook server that receives the bytes of a file and parses it to return the data inside the file in tabular form.

PreviousOpenAPI Validation Webhook TestingNextDatasets

Last updated 8 months ago

Was this helpful?

A parser webhook is used to pre-process source data before it goes through an Osmos Pipeline. An example includes combining multiple rows.

Parser webhooks are only available in Source Connectors, and hence usable only with Pipelines.

๐Ÿ‘ฉโ€๐Ÿ’ป
Logoexamples/examples/parser-webhook-csv at main ยท Osmos-io/examplesGitHub
Parser Webhook Example
Logoexamples/examples/parser-webhook-fixed-width at main ยท Osmos-io/examplesGitHub
Parser Webhook Fixed Width Example