Data Partner API
  1. Surveys
Data Partner API
  • Data Partner API
    • Getting Started
      • Introduction to API
      • Become a Supplier
      • Authentication
      • Urls
    • API Reference
      • Account
        • Get Supplier Details
        • Update redirect urls
        • Update S2S redirect urls
      • Surveys
        • Get Surveys
          GET
        • Get Survey Qualifications
          GET
        • Get Survey Quotas
          GET
        • Get Survey Stats
          GET
        • Get Survey Groups
          GET
      • Collections
        • Languages
        • Industries
        • StudyTypes
        • SurveyStatuses
        • QualificationCategories
        • QualificationCategoryTypes
        • QualificationTypes
        • Qualifications
        • QualificationDetailById
    • Schemas
      • Survey
      • SupplierAccountResponse
      • SupplierSurveyResponse
      • Qualification
      • SurveyQualificationResponse
      • QuotaCondition
      • SurveyQuotaResponse
      • Quotas
      • SurveyStat
      • SurveyStatsResponse
      • SurveyGroup
      • SurveyGroupsResponse
  1. Surveys

Get Surveys

GET
/surveys
Surveys
This api call returns the list of all live surveys

Request

Authorization
API Key
Add parameter in header
EQ-PARTNER-ACCESS-KEY
Example:
EQ-PARTNER-ACCESS-KEY: ********************
or
Header Params

Responses

🟢200OK
application/json
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sandbox-partner-api2.voqall.com/api/v1/surveys' \
--header 'EQ-PARTNER-ACCESS-KEY: <api-key>'
Response Response Example
{
    "status": "ok",
    "hasError": false,
    "messages": [],
    "error": {
        "errorCode": ""
    },
    "Surveys": [
        {
            "SurveyId": 0,
            "Name": "string",
            "Cpi": "string",
            "Ir": "string",
            "Loi": "string",
            "StudyTypeId": 0,
            "Completes": 0,
            "LanguageId": 0,
            "SurveyUrl": "../dictionary",
            "DesktopAllowed": true,
            "MobileAllowed": true,
            "TabletAllowed": true,
            "LastUpdatedOnUTC": "2019-08-24T14:15:22.123Z",
            "Has_Qualifications": true,
            "Has_Quotas": true,
            "Has_Survey_Groups": true,
            "IndustryId": 0,
            "CollectPii": true,
            "BuyerId": 0,
            "StartDate": "2019-08-24T14:15:22.123Z",
            "EndDate": "2019-08-24T14:15:22.123Z",
            "Qual_LastUpdatedOnUTC": "2019-08-24T14:15:22.123Z",
            "Quota_LastUpdatedOnUTC": "2019-08-24T14:15:22.123Z",
            "Revenue": 0,
            "IncidentRate": 0,
            "LengthOfInterview": 0
        }
    ],
    "SupplierId": 0
}
Previous
Surveys
Next
Get Survey Qualifications
Built with