Api referenceWebhooks
Delete Webhook Config
Deactivate your webhook configuration to stop receiving delivery notifications.
Delete Webhook Config
DELETE /api/v1/webhook-configDeactivate 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
| Header | Type | Required | Description |
|---|---|---|---|
X-API-KEY | string | Yes | Your API key with ffsk_ prefix |
Response
200 OK
{
success: true;
}| Field | Type | Description |
|---|---|---|
success | boolean | Always true on success. |
Error responses
| Status | Error | Description |
|---|---|---|
401 | UNAUTHORIZED | Missing or invalid API key. |
429 | RATE_LIMITED | Too 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"])