Skip to main content

Delete Author

DELETE/api/v1/dashboard/content/authors/{author_id}

Overview

Soft-deletes an author by deactivating their profile. Deactivated authors are hidden from the public List Authors endpoint but their existing posts remain accessible. This operation can be reversed by updating the author via the Update Author endpoint.

Authentication

info

Bearer authentication required - Pass your credentials as Authorization: Bearer <client_id>:<api_key>:<api_secret>.

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer <client_id>:<api_key>:<api_secret>

Path Parameters

ParameterTypeRequiredDescription
author_idstring (UUID)YesThe unique identifier of the author to deactivate

Response

successboolean

Always true on successful deactivation

Example Request

curl -X DELETE "https://spideriq.ai/api/v1/dashboard/content/authors/b2c3d4e5-f6a7-8901-bcde-f12345678901" \
-H "Authorization: Bearer $CLIENT_TOKEN"

Example Response

{
"success": true
}

Status Codes

Status CodeMeaningDescription
200OKAuthor deactivated successfully
401UnauthorizedInvalid or missing Bearer token
404Not FoundAuthor not found or belongs to another client