Question DELETE Resources


Remove a question

DELETE /questions/:id

This request does not have a body, and in case of success, a HTTP 200 OK without body will be sent.


Remove question image

This endpoint is deprecated since 2.94.0. The endpoint will always return successfully with the question object, but no question image will be deleted.

DELETE /questions/:id/image

Response

{
    "id": "47",
    "is_published": false,
    "language": "en",
    "title": "Is Sherlock really dead?",
    "slug": "is-sherlock-holmes-really-dead",
    "description": "<p>Post any information to 221B Baker Street, London.</p>",
    "solution_count": 0,
    "view_count": 28,
    "image": "https://cdn.example.com/avatar/default/2d/1b84215e2f035a22f6fec213d3b1d9.jpg",
    "created": "2014-01-02T10:13:21.000Z",
    "updated": "2014-01-03T12:16:45.000Z",
    "content_updated": "2014-01-03T12:16:45.000Z",
    "tag_relations": [
        {
             "tag": "Sherlock Holmes",
             "is_auto": false
        },
        {
             "tag": "Moriarty",
             "is_auto": false
        }
    ],
    "comments": "/questions/47/comments",
    "solutions": "/questions/47/solutions"
}