1. --- APIs ---
  • Supplier API
    • Supplier API – FAQ
    • HTTP Status Codes
    • --- Start Here ---
      • Onboarding Process
      • Mapping
      • Survey Inventory Management
      • Respondent-Survey Flow
      • Statuses, Term Reasons & Categories
      • Onboarding Checklist
      • API Call Flow
      • Frequently Asked Questions (FAQ)
      • Complete Validation Notifications
    • --- APIs ---
      • Lookup Question Library
        GET
      • Set Global redirect URLs and Pixels for supplier’s
        PUT
      • Delete Global redirect URLs and Pixels for supplier’s account
        DELETE
      • Core Metadata Fields
        GET
      • Get Question Categories
        GET
      • Get Allocated Surveys (all live surveys)
        GET
      • Get Allocated Surveys By Id
        GET
      • Get Allocated Surveys By Date (live surveys only)
        GET
      • Get Allocated Surveys With Pagination (live surveys only)
        GET
      • Get Redirect Method for Survey
        GET
      • Set Redirect Method for Survey
        PUT
      • Delete Redirect Method for Survey
        DELETE
      • Get Closed Survey List (allocated to supplier only)
        GET
      • Get Survey Transactions data
        GET
      • Get Survey Transactions data By Date Range
        GET
      • Survey Allow for Unique IP
        POST
      • Allow Unique PID & IP
        POST
      • Get Panellist Profiling
        GET
      • Survey Availability Endpoint
        GET
      • Get Survey Stats data By Date Range
        GET
      • Get Questions By Category
        GET
      • Answer Lookup
        GET
      • Get Survey Transactions data By PID and survey number
        GET
      • Get PIDs for re-contact surveys (studies)
        GET
      • Get survey stats
        GET
      • Set Panellist Profiling
        POST
      • Update Panellist Profiling
        PUT
      • Get surveys for respondent
        POST
      • Respondent Pre Survey Check
        POST
      • Single Term Reason Category Code
        GET
      • Term reason category
        GET
      • Get Allocated High Priority Surveys(All Live Surveys)
        GET
      • Get Survey Targeting
        GET
      • Get Quota for Survey
        GET
  • Buyer API
    • Buyer API - FAQ
    • Create Job
    • Update Job
    • Get Job Details
    • Update Job Status
    • Get Job List By Status
    • Create Group
    • Update Group
    • Get Group Details
    • Update Group Status
    • Add Target to group
    • Update Target to group
    • Remove Target Question
    • Add Quota to Group
    • Update Group Quota
    • Get Group Quotas
    • Get Group Feasibility
    • Feasibility (Find estimates)
    • Questions Library
    • Get Job Stats
    • Get Group Stats
    • Get Group Quota Stats
  • Text Analyzer API
    • Text Analyzer API - FAQ
    • API Details
  • Postbacks/Redirects
    • Redirect URL
    • PostBack URL
    • Hashing Mechanism
  • View Change Log
    • View Change Log
  • Schemas
    • Supplier API
      • surveyTransModel1
      • surveyTransModel2
      • surveyTransModel3
      • questionCategoryModel
      • termCatModel
      • questionModel
      • surveyTargetingModel
      • surveyStatsModel
      • surveyStatsByIdModel
      • respondentPreSurveyCheckModel
      • getAllocatedSurveysModel
      • surveyStatusModel
      • closedSurveyModel
      • surveyStatsModel
      • respondantQualificationModel2
      • answerModel
      • surveyRedirectsModel
      • accountUrlsModel
      • accountUrlsModel2
      • recontactSurveyModel
      • deleteUpdatesurveyRedirectsModel
      • masterDataModel
      • quotaModel
      • commonSurveyTransaModel
    • Buyer API
      • Create Job
      • UpdateJob
      • GetJobDetail
      • UpdateJobStatus
      • GetJobListByStatus
      • CreateGroup
      • UpdateGroup
      • GetGroupDetails
      • UpdateGroupStatus
      • AddTargetToGroup
      • UpdateTargetToGroup
      • RemoveTargetQuestion
      • AddQuotaToGroup
      • UpdateGroupQuota
      • GetGroupQuotas
      • GetGroupFeasibility
      • Feasibility
      • QuestionLibrary
      • GetJobStats
      • getGroupStats
      • GetGroupQuotaStats
  1. --- APIs ---

Get Quota for Survey

Production Endpoint
https://supplier.innovatemr.net/api/v2
Production Endpoint
https://supplier.innovatemr.net/api/v2
GET
/supply/getQuotaForSurvey/{Survey ID}
This API will allow supplier to get quotas associated with each survey. Each quota will be returned with sample size and targeting criteria .

Request

Path Params

Header Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://supplier.innovatemr.net/api/v2/supply/getQuotaForSurvey/' \
--header 'x-access-token;' \
--header 'Content-Type: application/json'
Response Response Example
{
    "apiStatus": "success",
    "msg": "Quotas are successfully searched",
    "result": [
        {
            "_id": "59b778c66e4c0b1c8288f6ad",
            "id": 780275,
            "quotaN": 10,
            "title": " 13 - 99 Yes, for business Yes, for personal Yes, for both",
            "quotaName": "",
            "hardStopType": 0,
            "cmp": 1,
            "clk": 1,
            "hardStop": 1,
            "quotaStatus": "Open",
            "RemainingN": 9,
            "targeting": {
                "AGE": [
                    {
                        "ageEnd": 99,
                        "ageStart": 13,
                        "OptionId": 1
                    }
                ],
                "TECHNOLOGY_87": [
                    {
                        "OptionText": "Yes, for business",
                        "OptionId": 1
                    },
                    {
                        "OptionText": "Yes, for personal",
                        "OptionId": 2
                    },
                    {
                        "OptionText": "Yes, for both",
                        "OptionId": 3
                    }
                ]
            }
        },
        {
            "_id": "59b778c66e4c0b1c8288f6af",
            "id": 780276,
            "quotaN": 10,
            "title": " 3rd Grade or less Middle School - Grades 4 - 8 Completed some high school High school graduate Completed some college, but no degree",
            "quotaName": "",
            "hardStopType": 0,
            "cmp": 0,
            "clk": 0,
            "hardStop": 1,
            "quotaStatus": "Open",
            "RemainingN": 10,
            "targeting": {
                "EDUCATION": [
                    {
                        "OptionId": 1,
                        "OptionText": "3rd Grade or less"
                    },
                    {
                        "OptionId": 2,
                        "OptionText": "Middle School - Grades 4 - 8"
                    },
                    {
                        "OptionId": 3,
                        "OptionText": "Completed some high school"
                    },
                    {
                        "OptionId": 4,
                        "OptionText": "High school graduate"
                    },
                    {
                        "OptionId": 6,
                        "OptionText": "Completed some college, but no degree"
                    }
                ]
            }
        }
    ]
}
Modified at 2025-12-10 10:38:28
Previous
Get Survey Targeting
Next
Buyer API
Built with