Delete a question
/products/{product_id}/questions/{question_id}Deletes the question together with all of its replies. The question and its replies are no longer returned by the API.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X DELETE "https://example.com/products/string/questions/string"Update a question PATCH
Reopens a question or changes whether it is pinned. The question text belongs to the user and cannot be changed. Setting `status` to `open` returns the question to the queue of questions awaiting a reply and requires the `questions.reopen` permission. Any published reply remains visible. Changing `pinned` requires the `questions.pin` permission. Send the `ETag` returned by the retrieve operation in the `If-Match` header to avoid overwriting a newer version.
List replies to a question GET
Returns all replies to a question in a single response, in chronological order, while preserving the standard collection response format. Private replies and the draft reply (ID `qrp_draft_<question_id>`) are included only when the credentials have the `questions.read_private` permission. When present, the draft is listed last.