For the complete documentation index, see llms.txt. This page is also available as Markdown.

rerun_webhook

imerit_ango.sdk.SDK.

rerun_webhook(project_id, webhook_stage_id)

Re-run a webhook stage in your project.

Parameters

  • project_id: string

  • webhook_stage_id: string

    • The unique identifier for the webhook stage to re-run.

    • You can retrieve webhook stage IDs by calling the get_project function

Returns:

  • output: dict

    • A dictionary containing the result of the operation.

    • Including a status field indicating whether the request was successful and a data field containing the response payload with updated resources produced by the operation.

How to verify in Ango Hub?

After successfully executing the rerun_webhook function, you can validate the changes directly in Ango Hub.

Navigate to: Projects → [Your Project] → Workflow

  • Click on the webhook stage.

  • Open the Logs section.

  • Confirm that the webhook has been triggered and is operating as expected.

Changes made via the SDK are reflected in Ango Hub in near real-time. If updates are not immediately visible, please refresh the page.

Example:

Last updated