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 Survey Groups

GET
/survey-groups/{surveyId}
Surveys
Thi api fetches the existing survey groups on the survey based on the surveyId.

Request

Authorization
API Key
Add parameter in header
EQ-PARTNER-ACCESS-KEY
Example:
EQ-PARTNER-ACCESS-KEY: ********************
or
Path 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/survey-groups/' \
--header 'EQ-PARTNER-ACCESS-KEY: <api-key>'
Response Response Example
{
    "status": "ok",
    "hasError": false,
    "messages": [],
    "error": {
        "errorCode": ""
    },
    "SurveyId": 0,
    "SurveyGroups": [
        {
            "SurveyGroupId": 0,
            "SurveyGroupName": "string",
            "SurveyGroupSurveys": [
                0
            ]
        }
    ]
}
Previous
Get Survey Stats
Next
Collections
Built with