runninghub-api
    runninghub-api
    • Instructions for Use
    • About nodeInfoList
    • About Enterprise ComfyUI API
    • Native ComfyUI API Integration Guide
    • Start ComfyUI Task 1 - Basic
      POST
    • Start ComfyUI Task 2 - Advanced
      POST
    • Start AI App Task
      POST
    • Get Workflow JSON
      POST
    • Check Task Status
      POST
    • Check Task Output
      POST
    • Cancel ComfyUI Task
      POST
    • Get Account Information
      POST
    • Upload Resource(image\video\audio)
      POST
    • Upload Lora
      POST
    • Get Webhook Event Details
      POST
    • Resend Specific Webhook Event
      POST

      Resend Specific Webhook Event

      POST
      /task/openapi/retryWebhook
      The webhookId refers to the id field returned by the Get Webhook Event Details API.
      You will use this webhookId when calling the Resend Specific Webhook Event API to retry sending that particular webhook event.

      Request

      Authorization
      Header Params
      Host
      string 
      required
      Example:
      www.runninghub.ai
      Body Params application/json
      apiKey
      string 
      optional
      Example:
      {{apiKey}}
      webhookId
      string 
      optional
      Example:
      1904154698688159745
      webhookUrl
      string 
      optional
      Example:
      https://your-webhook-url
      Example
      {
          "apiKey": "{{apiKey}}",
          "webhookId": "1904154698688159745",
          "webhookUrl": "https://your-webhook-url"
      }

      Request samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://www.runninghub.ai/task/openapi/retryWebhook' \
      --header 'Host: www.runninghub.ai' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "apiKey": "Please enter your own apiKey and keep it safe.",
          "webhookId": "1904154698688159745",
          "webhookUrl": "https://your-webhook-url"
      }'

      Responses

      🟢200成功
      application/json
      Body
      code
      integer 
      optional
      返回标记:成功标记=0,非0失败,或者是功能码
      msg
      string 
      optional
      返回信息
      data
      null 
      optional
      数据
      Example
      {
        "code": 0,
        "msg": "",
        "data": null
      }
      Modified at 2025-03-26 11:24:47
      Previous
      Get Webhook Event Details
      Built with