RenderIO
Api referenceWebhooks

Delete Webhook Config

Deactivate your webhook configuration to stop receiving delivery notifications.

Delete Webhook Config

DELETE /api/v1/webhook-config

Deactivate your webhook configuration. This sets the webhook to inactive so that RenderIO stops sending POST requests when commands complete. The configuration is retained but disabled.

Authentication

Requires API key via X-API-KEY header.

Request

Headers

HeaderTypeRequiredDescription
X-API-KEYstringYesYour API key with ffsk_ prefix

Response

200 OK

{
  success: true;
}
FieldTypeDescription
successbooleanAlways true on success.

Error responses

StatusErrorDescription
401UNAUTHORIZEDMissing or invalid API key.
429RATE_LIMITEDToo many requests. Retry after the period indicated in the Retry-After header.

Examples

curl

curl -X DELETE https://renderio.dev/api/v1/webhook-config \
  -H "X-API-KEY: ffsk_your_api_key_here"

JavaScript (fetch)

const response = await fetch(
  "https://renderio.dev/api/v1/webhook-config",
  {
    method: "DELETE",
    headers: {
      "X-API-KEY": "ffsk_your_api_key_here",
    },
  },
);

const result = await response.json();
console.log("Webhook deactivated:", result.success);

Python (requests)

import requests

response = requests.delete(
    "https://renderio.dev/api/v1/webhook-config",
    headers={"X-API-KEY": "ffsk_your_api_key_here"},
)

result = response.json()
print("Webhook deactivated:", result["success"])

On this page