HookPipe API 🚀
    • Pipelines
      • List all pipelines
        GET
      • Create a new pipeline
        POST
      • Get pipeline by source path
        GET
      • Update a pipeline
        PATCH
      • Delete a pipeline
        DELETE
    • Ingestion
      • Ingest webhook payload
        POST
    • Jobs & Monitoring
      • Query job status
        GET
      • Get delivery attempt logs
        GET
    • Schemas
      • CreatePipelineInput
      • UpdatePipelineInput
      • Action
      • TransformAction
      • FilterAction
      • EnrichAction
      • JobStatus
      • IngestionResponse

    CreatePipelineInput

    {
        "name": "string",
        "action": {
            "actionType": "transform",
            "actionConfig": {
                "mapping": {
                    "property1": "string",
                    "property2": "string"
                }
            }
        },
        "subscriberUrls": [
            "http://example.com"
        ]
    }
    Built with