1. Pipelines
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
  1. Pipelines

Update a pipeline

PATCH
/api/pipelines/{id}

Request

Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200
Pipeline updated successfully.
This response does not have a body.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'http://localhost:3000/api/pipelines/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "isActive": true,
    "action": {
        "actionType": "transform",
        "actionConfig": {
            "mapping": {
                "property1": "string",
                "property2": "string"
            }
        }
    },
    "subscriberUrls": [
        "string"
    ]
}'
Modified at 2026-03-28 09:04:00
Previous
Get pipeline by source path
Next
Delete a pipeline
Built with