Prodege API Documentation
  • Surveys Feed
    • Overview
    • Getting Started
    • API Reference
      • Lookup Calls
        • Lookup Request Time Offset
        • Lookup All Supported Countries
        • Lookup Questions By CountryID
        • Lookup Panelist Info
      • Authentication
        • Request Expiration
        • Request Signing
      • Panelist vs. Survey Matching
      • Survey Matching
        • Surveys
        • Quota Structure
        • Quota Matching Requirements
        • Survey Eligibility Check
        • Multiple Survey Eligibility Check
        • Survey URL
      • Panelist Matching
        • Panelists
        • Surveys
        • Survey URL
    • Redirects
    • Term Reasons
    • Reconciliations
    • Helpful Links
Powered by GitBook
On this page
  1. Surveys Feed
  2. API Reference
  3. Lookup Calls

Lookup Panelist Info

Returns the current profile information of a registered panelist.

Request URL

/lookup-user-info

Request Method

GET

Request Parameters

Parameter Name

Parameter Type

Required?

Description

apik

String

Yes

Key uniquely identifying the supplier

request_date

Numeric

Yes (in milliseconds)

signature

String

Required to authenticate supplier call

vpid

String

Yes

The supplier’s static panelist ID

Response Parameters

Parameter Name

Parameter Type

Description / Notes

return_status

String

The return status for this api call

vpid

String

The supplier’s static panelist ID

country_id

Numeric

data

Array

data Model

Parameter Name

Parameter Type

Description / Notes

question_id

Numeric

The question ID of the profile question

answers

Numeric

The corresponding answer ID(s) for the profile question. Multple answers (for multiple choice questions) will be comma separated.

Example Response

{
   "vpid":"45773",
   "country_id":1,
   "data":[
      {
         "question_id":1,
         "answers":[
            25
         ]
      },
      {
         "question_id":3,
         "answers":[
            1
         ]
      },
      {
         "question_id":20,
         "answers":[
            1,
            3
         ]
      }
   ],
   "return_status":{
      "status_id":1,
      "message":[
         "Request Successful"
      ]
   }
}

PreviousLookup Questions By CountryIDNextAuthentication

Last updated 7 months ago

See

Yes (see )

The of the panelist

The panelist's current profile data, represented as an array of question and answer IDs, based on

authentication
here
countryID
Lookup Questions By CountryID