Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Get Surveys - POST /attributes - http://api.spectrumsurveys.com/buyers/v1/attributes

...

Call this API to view the respondent's question text, condition codes, and condition code texts for unfamiliar qualification codes/condition codes.  Survey_localization is a required Query String parameter.

...

Code Block
GET /buyers/v1/attributes/
{
  "Q_ID" : 1110
   "Buyer_Attribute_ID" : "ABC123",
   "Desc" : "Pet Food Preferences",
   "Category" : "Pets",
   "Type":1,
   "localizations":[
    {
    {    "localization" : "en_us",
        "Q_text": "Do you purchase dry or wet Dog Food?"
        "answers":[
             {
                  "buyer_Answer_ID" : "DEF456",
                  "Answer_Text" : "Dry Food"
                  "PS_C_ID" : 111
             },

             {
                  "buyer_Answer_ID" : "DEF456",
                  "Answer_Text" : "WetFood"
                  "PS_C_ID" : 112
 111            }
          ]
    }
 }    ]
}







Example 3: Singlepunch - alt

...