Skip to main content
DELETE
/
tasks
/
{id}
/
comments
/
{commentId}
Delete a comment from a task
curl --request DELETE \
  --url https://slog.ai/tasks/{id}/comments/{commentId} \
  --header 'slog-api-key: <api-key>'
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Authentication required"
  }
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Path Parameters

id
string
required

Resource ID (UPID) or, for tasks and projects, the human-readable reference such as ENG-42.

commentId
string
required

ID of the comment to delete.

Response

Comment deleted.