API Methods
Account ...
Blogs ...
Bookings ...
CreditHistory ...
Dashboard ...
DirectCam ...
DirectChat ...
Email ...
FieldReport ...
Groups ...
HotLists ...
Interview ...
Lists ...
Movie ...
Newsfeed ...
PhoneChat ...
Pictures ...
Profile ...
Search ...
Tours ...
Webcam ...

GetQuestions

This method returns a list of Questions with their associated QuestionID and possible Answers.

Note: The answers can be null. When the answer is null you can supply the answer yourself in searchProfiles. Or simply use one or more of the answers provided.

URL / Endpoint

Need help with Postman?

GET /v1/interview/getQuestions

Request

PropertyTypeDescription
This operation does not accept any parameters.

Request Information

HTTP Method / Verb

Parameters can be passed to this operation using the HTTP GET method.

Headers

The REST API uses HTTP request headers to determine what data type is returned or to authenticate the developer's API key. More information can be found in the overview section.

Authentication

Your API-Key is required with every request and can be passed in as a header or a query-string parameter. Don't have an API-Key? Get one now.

Samples

GET method

https://api-sandbox.adultwork.com/v1/interview/getQuestions
  ?apiKey={your-api-key}
  

Response

PropertyTypeDescription
  Array of aws:InterviewQuestion List of InterviewQuestion.

Response Sample

The following example returns a list of InterviewQuestions.

[
    {
        "QuestionID":1,
        "Question":"Who are you looking to meet?",
        "Answers": [
            {
                "Answer": "Couples MF"
            },
	    {
                "Answer": "Couples FF"
            }
         ],
        "MultipleAnswers": true,
        "MaxLength": null,
"UserTypeID": 1,
"Roles":8 }, { "QuestionID":2, "Question":"How old are you?", "Answers": [ { "Answer": "18-21" }, { "Answer": "22-25" }
], "MultipleAnswers": false, "MaxLength": null,
"UserTypeID": 0,
"Roles":1 } ]
<ArrayOfInterviewQuestions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://schemas.datacontract.org/2004/07/API.Models.Questions">
<InterviewQuestions>
<MultipleAnswers>
true
</MultipleAnswers>
<MaxLength i:nil="true"/>
<Answers> <InterviewQuestionAnswers> <Answer> Couples MF </Answer> <Answer> Couples FF </Answer> </InterviewQuestionAnswers> <QuestionID>1</QuestionID> <Question>Who are you looking to meet?</Question> </InterviewQuestions> <InterviewQuestions>
<MultipleAnswers>
true
</MultipleAnswers>
<MaxLength i:nil="true"/> <Answers> <InterviewQuestionAnswers> <Answer> 18-21 </Answer> <Answer> 22-25 </Answer> </InterviewQuestionAnswers> <QuestionID>2</QuestionID> <Question>How old are you?</Question> </InterviewQuestions> </ArrayOfInterviewQuestions>