API referenceDEL
Delete website
Stop monitoring a website and its keywords.
DELETE
https://ai.redreplier.com/ai-app/api/v1/websites/{websiteId}Stop monitoring a website and its keywords.
Bearer Token (RedReplier API token)
Parameters
websiteId(path, UUID, required): Website to stop monitoring.
Request body
This endpoint does not require a JSON body.
Response
Returns a deletion confirmation.
deleted(boolean): Alwaystruewhen the delete operation succeeds.
Notes
This is a monitoring stop action. Confirm the website before calling it.
Errors
400 Bad Request: Invalid input, URL, UUID, enum, query parameter, or body.401 Unauthorized: Missing or invalid Bearer token.404 Not Found: The resource does not exist for the token account.500 Internal Server Error: Unexpected server error.
Example request (curl)
curl --request DELETE \
--url https://ai.redreplier.com/ai-app/api/v1/websites/9b0f2b8d-4a76-4f59-9f0b-6b4b6f6c2a10 \
--header 'Authorization: Bearer redreplier_test_1234567890'200
{
"deleted": true
}