Internal site. Jolli authentication required to view.
Skip to Content
API ReferenceOutput ConnectorsPOST /v0/pipelines/{pipeline_name}/views/{view_name}/connectors/{connector_name}/reset

Reset Output Connector

POST/v0/pipelines/{pipeline_name}/views/{view_name}/connectors/{connector_name}/resetOutput Connectors

Try it

POST/v0/pipelines/{pipeline_name}/views/{view_name}/connectors/{connector_name}/reset
Authentication
Parameters

Reset an output connector configured in snapshot_and_follow mode.

This clears buffered output, asks the sink to reset itself, and then replays a full snapshot before resuming incremental updates.

Authentication

  • JSON web token (JWT) or API keyBearer token

Parameters

Path parameters

NameTypeRequiredDescription
pipeline_namestringYesUnique pipeline name
view_namestringYesSQL view name
connector_namestringYesOutput connector name

Response

200Output connector reset request has been processed
400The output connector does not support resetapplication/json
  • object
    Information returned by REST API endpoints on error.
    • detailsobjectrequired
      Detailed error metadata. The contents of this field is determined by `error_code`.
    • error_codestringrequired
      Error code is a string that specifies this error type.
    • messagestringrequired
      Human-readable error message.
404Pipeline, view and/or output connector with that name does not existapplication/json
  • object
    Information returned by REST API endpoints on error.
    • detailsobjectrequired
      Detailed error metadata. The contents of this field is determined by `error_code`.
    • error_codestringrequired
      Error code is a string that specifies this error type.
    • messagestringrequired
      Human-readable error message.
500application/json
  • object
    Information returned by REST API endpoints on error.
    • detailsobjectrequired
      Detailed error metadata. The contents of this field is determined by `error_code`.
    • error_codestringrequired
      Error code is a string that specifies this error type.
    • messagestringrequired
      Human-readable error message.
503application/json
  • object
    Information returned by REST API endpoints on error.
    • detailsobjectrequired
      Detailed error metadata. The contents of this field is determined by `error_code`.
    • error_codestringrequired
      Error code is a string that specifies this error type.
    • messagestringrequired
      Human-readable error message.
Request
curl -X POST 'https://api.example.com/v0/pipelines/{pipeline_name}/views/{view_name}/connectors/{connector_name}/reset' \ -H 'Authorization: Bearer YOUR_TOKEN'