Start a conversation

Verify a Question is a Question

Overview

This will help double check that users are posting questions.


Information

/services/v2/question/isQuestion.json?q=[data]

You can use the following parameters in your verify a question is new request:

Search: q
Other options: wrap, v1

Permissions & Notes:

  • You must have the "Use site" permission under Anonymous Roles in the Advanced Editor.

  • The request parameter q specifies the text to search for (in the body of a question).

    • This is a required field.
  • The response is a boolean value.

  • We added this request in version 1.6.3.

Sample Request

A GET verify a question is new request for a question ("Is it secret?") sent to https://apidocs.cloud.answerhub.com using a human-readable Username/Password (answerhub/test123) would look like this:

  • cURL
curl -u answerhub:test123 -H "Accept: application/json" -H "Content-type: application/json" -X GET "https://apidocs.cloud.answerhub.com/services/v2/question/isQuestion.json?q=Is%20it%20secret?"
curl 
-u answerhub:test123 
-H "Accept: application/json" 
-H "Content-type: application/json" 
-X GET "https://apidocs.cloud.answerhub.com/services/v2/question/isQuestion.json?q=Is%20it%20secret?"

Expected Response

Successful Response:

  • HTTP Status 200 - OK
  • JSON
{ "result": true }
{
    "result": true
}
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments