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

Yes (see here)

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

The countryID of the panelist

data

Array

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

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"
      ]
   }
}

Last updated