{"id":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","name":"TR DIY - Sandbox Testing","description":"Quickly get up and running with the TheoremReach DIY sandbox environment collection.","auth":{"type":"apikey","apikey":[{"key":"value","value":"{{api_key}}"},{"key":"key","value":"X-Api-Key"},{"key":"in","value":"header"}]},"events":[{"listen":"prerequest","script":{"id":"a34eebe9-f038-4660-b052-e541f58833c7","type":"text/javascript","exec":["class Sha3 {","    static hash256(M, options) {","        const r = 1088","        const c = 512"," ","        const defaults = { padding: 'sha-3', msgFormat: 'string', outFormat: 'hex' };","        const opt = Object.assign(defaults, options);","","        const l = c / 2; // message digest output length in bits","","        let msg = null;","        switch (opt.msgFormat) {","            default: // convert string to UTF-8 to ensure all characters fit within single byte","            case 'string':    msg = utf8Encode(M);       break;","            case 'hex-bytes': msg = hexBytesToString(M); break; // mostly for NIST test vectors","        }","","        const state = [ [], [], [], [], [] ];","        for (let x=0; x<5; x++) {","            for (let y=0; y<5; y++) {","                state[x][y] = new Sha3.Long(0, 0);","            }","        }","","        const q = (r/8) - msg.length % (r/8);","        if (q == 1) {","            msg += String.fromCharCode(opt.padding=='keccak' ? 0x81 : 0x86);","        } else {","            msg += String.fromCharCode(opt.padding=='keccak' ? 0x01 : 0x06);","            msg += String.fromCharCode(0x00).repeat(q-2);","            msg += String.fromCharCode(0x80);","        }","","        // absorbing phase: work through input message in blocks of r bits (r/64 Longs, r/8 bytes)","","        const w = 64; // for keccak-f[1600]","        const blocksize = r / w * 8; // block size in bytes (≡ utf-8 characters)","","        for (let i=0; i<msg.length; i+=blocksize) {","            for (let j=0; j<r/w; j++) {","                const lo = (msg.charCodeAt(i+j*8+0)<< 0) + (msg.charCodeAt(i+j*8+1)<< 8)","                         + (msg.charCodeAt(i+j*8+2)<<16) + (msg.charCodeAt(i+j*8+3)<<24);","                const hi = (msg.charCodeAt(i+j*8+4)<< 0) + (msg.charCodeAt(i+j*8+5)<< 8)","                         + (msg.charCodeAt(i+j*8+6)<<16) + (msg.charCodeAt(i+j*8+7)<<24);","                const x = j % 5;","                const y = Math.floor(j / 5);","                state[x][y].lo = state[x][y].lo ^ lo;","                state[x][y].hi = state[x][y].hi ^ hi;","            }","            Sha3.keccak_f_1600(state);","        }","","        // squeezing phase: first l bits of state are message digest","","        // transpose state, concatenate (little-endian) hex values, & truncate to l bits","        let md = transpose(state).map(plane => plane.map(lane => lane.toString().match(/.{2}/g).reverse().join('')).join('')).join('').slice(0, l/4);","","        // if required, group message digest into bytes or words","        if (opt.outFormat == 'hex-b') md = md.match(/.{2}/g).join(' ');","        if (opt.outFormat == 'hex-w') md = md.match(/.{8,16}/g).join(' ');","","        return md;","","        /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */","","        function transpose(array) { // to iterate across y (columns) before x (rows)","            return array.map((row, r) => array.map(col => col[r]));","        }","","        function utf8Encode(str) {","            try {","                return new TextEncoder()","                .encode(str, 'utf-8')","                .reduce((prev, curr) => prev + String.fromCharCode(curr), '');","            } catch (e) { // no TextEncoder available?","                return unescape(encodeURIComponent(str));","            }","        }","","        function hexBytesToString(hexStr) { // convert string of hex numbers to a string of chars (eg '616263' -> 'abc').","            const str = hexStr.replace(' ', ''); // allow space-separated groups","            return str==='' ? '' : str.match(/.{2}/g).map(byte => String.fromCharCode(parseInt(byte, 16))).join('');","        }","    }","","","    static keccak_f_1600(a) {","        const nRounds = 24;","        const RC = [","            '0000000000000001', '0000000000008082', '800000000000808a',","            '8000000080008000', '000000000000808b', '0000000080000001',","            '8000000080008081', '8000000000008009', '000000000000008a',","            '0000000000000088', '0000000080008009', '000000008000000a',","            '000000008000808b', '800000000000008b', '8000000000008089',","            '8000000000008003', '8000000000008002', '8000000000000080',","            '000000000000800a', '800000008000000a', '8000000080008081',","            '8000000000008080', '0000000080000001', '8000000080008008',","        ].map(c => Sha3.Long.fromString(c));","","        for (let r=0; r<nRounds; r++) {","            const C = [], D = []; // intermediate sub-states","            for (let x=0; x<5; x++) {","                C[x] = a[x][0].clone();","                for (let y=1; y<5; y++) {","                    C[x].hi = C[x].hi ^ a[x][y].hi;","                    C[x].lo = C[x].lo ^ a[x][y].lo;","                }","            }","            for (let x=0; x<5; x++) {","                // D[x] = C[x−1] ⊕ ROT(C[x+1], 1)","                const hi = C[(x+4)%5].hi ^ ROT(C[(x+1)%5], 1).hi;","                const lo = C[(x+4)%5].lo ^ ROT(C[(x+1)%5], 1).lo;","                D[x] = new Sha3.Long(hi, lo);","                // a[x,y] = a[x,y] ⊕ D[x]","                for (let y=0; y<5; y++) {","                    a[x][y].hi = a[x][y].hi ^ D[x].hi;","                    a[x][y].lo = a[x][y].lo ^ D[x].lo;","                }","            }","","            // ρ + π [Keccak §2.3.4]","            let [ x, y ] = [ 1, 0 ];","            let current = a[x][y].clone();","            for (let t=0; t<24; t++) {","                const [ X, Y ] = [ y, (2*x + 3*y) % 5 ];","                const tmp = a[X][Y].clone();","                a[X][Y] = ROT(current, ((t+1)*(t+2)/2) % 64);","                current = tmp;","                [ x, y ] = [ X, Y ];","            }","","","            for (let y=0; y<5; y++) {","                const C = [];  // take a copy of the plane","                for (let x=0; x<5; x++) C[x] = a[x][y].clone();","                for (let x=0; x<5; x++) {","                    a[x][y].hi = (C[x].hi ^ ((~C[(x+1)%5].hi) & C[(x+2)%5].hi)) >>> 0;","                    a[x][y].lo = (C[x].lo ^ ((~C[(x+1)%5].lo) & C[(x+2)%5].lo)) >>> 0;","                }","            }","","            a[0][0].hi = (a[0][0].hi ^ RC[r].hi) >>> 0;","            a[0][0].lo = (a[0][0].lo ^ RC[r].lo) >>> 0;","        }","","        function ROT(a, d) {","            return a.rotl(d);","        }","","        function debugNist(s) { // debug of state s in NIST format","            const d = transpose(s).map(plane => plane.join('')).join('')","                .match(/.{2}/g).join(' ')","                .match(/.{23,48}/g).join('\\n');","            console.info(d);","        }","","        function debug5x5(s) { // debug of state s in 5×5 format 64-bit words","            const d = transpose(s).map(plane => plane.join(' ')).join('\\n');","            console.info(d);","        }","","        function transpose(array) { // to iterate across y (columns) before x (rows)","            return array.map((row, r) => array.map(col => col[r]));","        }","    }","","}","","Sha3.Long = class {","    constructor(hi, lo) {","        this.hi = hi;","        this.lo = lo;","    }","","    static fromString(str) {","        const [ hi, lo ] = str.match(/.{8}/g).map(i32 => parseInt(i32, 16));","        return new Sha3.Long(hi, lo);","    }","","    clone() {","        return new Sha3.Long(this.hi, this.lo);","    }","","    rotl(n) {","        if (n < 32) {","            const m = 32 - n;","            const lo = this.lo<<n | this.hi>>>m;","            const hi = this.hi<<n | this.lo>>>m;","            return new Sha3.Long(hi, lo);","        }","        if (n == 32) {","            return new Sha3.Long(this.lo, this.hi);","        }","        if (n > 32) {","            n -= 32;","            const m = 32 - n;","            const lo = this.hi<<n | this.lo>>>m;","            const hi = this.lo<<n | this.hi>>>m;","            return new Sha3.Long(hi, lo);","        }","    }","","    toString() {","        const hi = ('00000000'+this.hi.toString(16)).slice(-8);","        const lo = ('00000000'+this.lo.toString(16)).slice(-8);","","        return hi + lo;","    }","};","","","/** Get Our Config **/","const apiKey = pm.variables.get('api_key')","const secretKey = pm.variables.get('secret_key')","","let host = pm.variables.get('host')","if (host[host.length-1] === '/') {","    host = host.slice(0, -1)","}","","/** Parse Request Information **/","const req = pm.request","const reqUrl = req.url","","// We parse -> stringify because it will get us a minified body","let requestBody = req.body ? JSON.stringify(JSON.parse(req.body.raw)) : ''","const rawQueryParamStr = reqUrl.query","  .filter(queryParamObj => queryParamObj.key !== 'enc')","  .filter(queryParamObj => queryParamObj.disabled !== true)","  .map(queryParamObj => `${queryParamObj.key}=${queryParamObj.value}`)","  .join('&')","","let fullRequestUrl = `${host}/${reqUrl.path.join('/')}`","if (rawQueryParamStr) fullRequestUrl += `?${rawQueryParamStr}`","","const hash = Sha3.hash256(fullRequestUrl + requestBody + secretKey)","","console.log(`╔═══════════════════════════════════════════════════════════════════╗`)","console.log(`║   TR Surveys Request Debug`)","console.log(`║   Secret Key: ${secretKey}`)","console.log(`║   Raw String Hashed: ${fullRequestUrl}${requestBody}${secretKey}`)","console.log(`║   Hash Generated: ${hash}`)","console.log(`╚═══════════════════════════════════════════════════════════════════╝`)","","pm.variables.set('request_hash', hash)"]}},{"listen":"test","script":{"id":"ce915a7a-d1c0-4895-9d76-0d2e75fe8ef2","type":"text/javascript","exec":[""]}}],"variables":[{"key":"api_key","value":"--REPLACE WITH YOUR API KEY--","disabled":false},{"key":"secret_key","value":"--REPLACE WITH YOUR SECRET KEY--","disabled":false},{"key":"request_hash","value":"","disabled":false},{"key":"host","value":"https://surveys-sandbox.theoremreach.com/surveys","disabled":false}],"order":["50e22fea-b8a4-4d2e-94ca-db8b1616b15b","da800c1d-d28d-4704-9d2e-06c787265762","d895051c-d3e7-4865-9ee2-210e2a4a3bcf","e21f2899-e362-4a7d-8c2f-00eab174e6fe"],"folders_order":["cded4bb5-b716-4686-aa90-5811a9e5cecf","1070b5a2-0320-4fcc-93c9-57678700bb20","1d5a26c3-43a9-41f8-9928-a121e90b21dc","3fdf7ab5-3f66-47ed-9f99-00f68f24adf9"],"protocolProfileBehavior":{},"folders":[{"id":"82e081d5-e465-4bc3-af39-9d121948f9f9","name":"Control Endpoints","description":"","auth":null,"events":[{"listen":"prerequest","script":{"id":"58b33967-56e2-4662-9416-84f30bc10ceb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"737728e1-3f6a-437b-a2d5-35302cee58bb","type":"text/javascript","exec":[""]}}],"collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folder":"cded4bb5-b716-4686-aa90-5811a9e5cecf","order":["9c854cc1-5852-4337-be0f-0d995669dd26","4321430a-aa6b-44c9-af9f-62b9e4a6b894","6cf3b781-41a1-4d08-85c4-61b94758acc8"],"folders_order":[],"protocolProfileBehavior":{},"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folderId":"82e081d5-e465-4bc3-af39-9d121948f9f9"},{"id":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9","name":"Quotas Endpoints","description":"","auth":null,"events":null,"collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folder":null,"order":["bedb671d-f723-4113-8b43-c10625f238ad","ae95b36f-e316-405a-a98f-453589c70198","80d3c9fc-5f21-419e-aa7b-50436c65bb5e","24aa52e1-5221-44b0-9f82-f8e5a7fc3712","8a84596f-50c0-41cc-b893-f49a7bcfada7","045f7c48-f27e-4cfd-93d8-dc47a5f1ab39"],"folders_order":[],"protocolProfileBehavior":{},"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folderId":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9"},{"id":"1d5a26c3-43a9-41f8-9928-a121e90b21dc","name":"Screening Question Options Endpoint","description":"","auth":null,"events":null,"collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folder":null,"order":["a640550b-94a8-4c74-ac4c-ee82fc6e31f5","845589a8-4f4b-4212-bd08-c4224a550a81","a8939204-a7b9-4f55-a931-a84a865549e5","c70f4278-1960-4854-8306-ff20424786ed"],"folders_order":[],"protocolProfileBehavior":{},"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folderId":"1d5a26c3-43a9-41f8-9928-a121e90b21dc"},{"id":"1070b5a2-0320-4fcc-93c9-57678700bb20","name":"Screening Questions Endpoints","description":"","auth":null,"events":null,"collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folder":null,"order":["20707841-5e53-4e01-b06c-5f8fc4e80af0","1057c38b-ab90-4db1-83e2-0a692166d21d","b7679603-6868-473f-a8ec-c8ea557cfbe5","a85b0c02-be7c-4fdf-818a-aace32487d68"],"folders_order":[],"protocolProfileBehavior":{},"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folderId":"1070b5a2-0320-4fcc-93c9-57678700bb20"},{"id":"cded4bb5-b716-4686-aa90-5811a9e5cecf","name":"Survey Endpoints","description":"","auth":null,"events":null,"collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folder":null,"order":["28b278e1-dcf3-4502-b107-e7ccd273be10","42ca8adc-e692-41b8-81fd-fa1fc0fa78d4","08225779-f1f7-4895-a8d1-b2045000aa55","988abe34-41b9-4f31-a7eb-d8c8089519a4","2ee4e128-833d-4cfa-a739-808af5218ba4"],"folders_order":["82e081d5-e465-4bc3-af39-9d121948f9f9","0ad06139-e82d-4bfe-896f-4a93f85320e8"],"protocolProfileBehavior":{},"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folderId":"cded4bb5-b716-4686-aa90-5811a9e5cecf"},{"id":"0ad06139-e82d-4bfe-896f-4a93f85320e8","name":"Transaction Endpoints","description":"","auth":null,"events":[{"listen":"prerequest","script":{"id":"a4040ae0-7292-4363-b4f7-daa83985c996","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0cdf5a25-0d4d-4eea-993b-bce993416a48","type":"text/javascript","exec":[""]}}],"collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folder":"cded4bb5-b716-4686-aa90-5811a9e5cecf","order":["30ebe142-80a7-483a-80b2-e1eba26d2f33"],"folders_order":[],"protocolProfileBehavior":{},"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","folderId":"0ad06139-e82d-4bfe-896f-4a93f85320e8"}],"requests":[{"id":"045f7c48-f27e-4cfd-93d8-dc47a5f1ab39","name":"Quotas Feasibility In Days","url":"{{host}}/api/external/v1/quotas/feasibility?country_id=5a8296a0-0ab0-4e75-be00-71a6371b519b&mapping_partner_id=4a91e105-bd9d-44c9-89ae-65585fd6c29c&enc={{request_hash}}","description":"**Description:**\n\nReturns the calculated feasibility in days based on the supplied questions and answers.","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"POST","pathVariableData":[],"queryParams":[{"key":"country_id","value":"5a8296a0-0ab0-4e75-be00-71a6371b519b","equals":true,"description":"","enabled":true},{"key":"mapping_partner_id","value":"4a91e105-bd9d-44c9-89ae-65585fd6c29c","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"target_completes\": 123,\n\t\"questions\": [\n\t\t{\n\t\t\t\"question_id\": \"8214\",\n\t\t\t\"answer_ids\": [\"false\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"8213\",\n\t\t\t\"answer_ids\": [\"false\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"45\",\n\t\t\t\"postal_codes\": [\"23185\", \"90210\", \"23669\", \"90001\", \"90002\", \"90003\"]\n\t\t}\n\t]\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"08225779-f1f7-4895-a8d1-b2045000aa55","name":"Survey Delete","url":"{{host}}/api/external/v1/surveys/ca2427d7-8b25-4dd2-9bf7-f70615884bf8?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{ survey_id }}`\n\n**Description:** Deletes a survey","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"DELETE","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"cded4bb5-b716-4686-aa90-5811a9e5cecf","responses":[{"id":"6ca91ce5-d5e0-4e76-a230-a6455b97a82f","name":"Request where the survey has already been deleted","status":null,"mime":null,"language":"json","text":"{\n    \"errors\": [\n        \"This survey has already been deleted.\"\n    ],\n    \"data\": {}\n}","responseCode":{"code":405,"name":"Method Not Allowed"},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[],"method":"DELETE","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys/88105478-fd4c-43cd-9e66-c554a718369c?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"Set-Cookie","value":"XSRF-TOKEN=h6nQZo%2BCeI4uGKyZurXjBhuidSUKOjrnRPCgbOadBBxQsJ%2F4Qn9wcOmCMazdaEiF3n6r0h2j406H4nQVqfhPXw%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=KUubyjwy5EZTJH7hzK1KiiT5sHv8P3OZlrb3IFRO%2Fg9Q5uDgkxGBcOz9AmbGdDgld97ZKDBLnQ6AJa9ETbG8f2UP%2BITcJt6ml9Er%2Bf6uheTPh7ThGi9%2Bmlfgj8TwnbEwoWaFaOK%2BKlh2loQsOiM%3D--vevnspG7%2FbImMwEj--eiDFvxOaTmphXlLXhqxeFw%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"95ff1f3c-1ed7-452a-9e16-8ed8e472cb42"},{"key":"X-Runtime","value":"0.009269"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"08225779-f1f7-4895-a8d1-b2045000aa55","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"},{"id":"c864572a-cbbb-4fb0-a716-a73c81d3178d","name":"Survey has already been deleted example","status":null,"mime":null,"language":"json","text":"{\n    \"errors\": [\n        \"This survey has already been deleted.\"\n    ],\n    \"data\": {}\n}","responseCode":{"code":405,"name":"Method Not Allowed"},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[],"method":"DELETE","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys/88105478-fd4c-43cd-9e66-c554a718369c?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"Set-Cookie","value":"XSRF-TOKEN=h6nQZo%2BCeI4uGKyZurXjBhuidSUKOjrnRPCgbOadBBxQsJ%2F4Qn9wcOmCMazdaEiF3n6r0h2j406H4nQVqfhPXw%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=KUubyjwy5EZTJH7hzK1KiiT5sHv8P3OZlrb3IFRO%2Fg9Q5uDgkxGBcOz9AmbGdDgld97ZKDBLnQ6AJa9ETbG8f2UP%2BITcJt6ml9Er%2Bf6uheTPh7ThGi9%2Bmlfgj8TwnbEwoWaFaOK%2BKlh2loQsOiM%3D--vevnspG7%2FbImMwEj--eiDFvxOaTmphXlLXhqxeFw%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"95ff1f3c-1ed7-452a-9e16-8ed8e472cb42"},{"key":"X-Runtime","value":"0.009269"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"08225779-f1f7-4895-a8d1-b2045000aa55","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"},{"id":"cdda4733-1a07-4076-9af2-61ec91475a56","name":"Successful deletion example","status":null,"mime":null,"language":"plain","text":null,"responseCode":{"code":204,"name":"No Content"},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[],"method":"DELETE","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys/88105478-fd4c-43cd-9e66-c554a718369c?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"Set-Cookie","value":"XSRF-TOKEN=k5g8eDEJGtZzHcQ645FzXQCH7NiVOnQ12LsXReTg2F9EgXPm%2FPQSKLSHWQ%2BETNjexVsyL4KjrZwbqcM8q4WTHA%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=bPI0L8vgxyZBTGmIfsbePj56i%2BQbidazpYk2Bp826xDv%2FwCaPWtJyIXR7qUx01SG%2B6yBmb4VOIgWK2l0IxQbNkYx2Duz%2BlQEjByLX7PMEI9Yusv6jfq5PAl89xiXQN0FPy%2FayKHi5%2FDrUNmZ4YU%3D--Rcb%2BkDJul9lIDn91--E4zuPKWMQvsOWjdcgob77w%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"2a72b981-b5e2-4058-8b15-134216d875bb"},{"key":"X-Runtime","value":"0.075531"}],"cookies":null,"request":"08225779-f1f7-4895-a8d1-b2045000aa55","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"1057c38b-ab90-4db1-83e2-0a692166d21d","name":"Screen Questions Create","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff6/screening_questions?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{ survey_id }}/screening_questions`\n\n**Description:** Create a new screening question for the provided survey. Max 3 per survey.\n\n\n**Parameters:**\n- `question_type` - optional\n- `display_text` - optional\n- `sort_order` - optional (1, 2, 3)\n- `shuffle_type` - optional (st_no_shuffle|st_shuffle)","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1070b5a2-0320-4fcc-93c9-57678700bb20","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"question_type\": \"multi_select\",\n\t\"display_text\": \"Hello, World!\",\n\t\"sort_order\": 3,\n\t\"shuffle_type\": \"shuffle\"\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"20707841-5e53-4e01-b06c-5f8fc4e80af0","name":"Screen Questions Index","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff6/screening_questions?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{ survey_id }}/screening_questions`\n\n**Description:**\nRetrieves a list of all screening questions for the provided survey.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1070b5a2-0320-4fcc-93c9-57678700bb20","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"24aa52e1-5221-44b0-9f82-f8e5a7fc3712","name":"Quotas Show","url":"{{host}}/api/external/v1/quotas/73cd3808-79f9-410c-bf82-d080ff047124/?mapping_partner_id=4a91e105-bd9d-44c9-89ae-65585fd6c29c&enc={{request_hash}}","description":"**Path:** `/api/external/v1/quotas/:quota_id`\n\n**Description:**\nRetrieves a full view of a quota.\n\n**Parameters:**\n- `mapping_partner_id` - optional (query)","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"description":"","key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"method":"GET","pathVariableData":[],"queryParams":[{"key":"mapping_partner_id","value":"4a91e105-bd9d-44c9-89ae-65585fd6c29c","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9","protocolProfileBehavior":{"disableBodyPruning":true},"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"name\": \"New Quota\",\n\t\"target_completes\": 250,\n\t\"state\": \"acive\",\n\t\"questions\": [\n\t\t{\n\t\t\t\"question_id\": \"8214\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"8213\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"45\",\n\t\t\t\"postal_codes\": [\"23185\", \"90210\"]\n\t\t}\n\t]\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"28b278e1-dcf3-4502-b107-e7ccd273be10","name":"Surveys Index","url":"{{host}}/api/external/v1/surveys?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys`\n\n**Description:** Retrieve a full list of surveys that your company owns.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","description":"","enabled":true}],"auth":null,"events":[],"folder":"cded4bb5-b716-4686-aa90-5811a9e5cecf","responses":[{"id":"3b336428-ff10-4e62-92c4-1f7c0c81dba5","name":"Full Example Request/Response","status":null,"mime":null,"language":"json","text":"{\n    \"data\": [\n        {\n            \"id\": \"88105478-fd4c-43cd-9e66-c554a718369c\",\n            \"name\": \"New Survey\",\n            \"state\": \"draft\",\n            \"entry_url_prod\": null,\n            \"entry_url_test\": null,\n            \"start_at\": null,\n            \"end_at\": null,\n            \"metrics\": {\n                \"target_completes\": 25,\n                \"remaining_completes\": 25,\n                \"completes_count\": 0,\n                \"effective_cpi\": 0\n            },\n            \"country\": null\n        }\n    ]\n}","responseCode":{"code":200,"name":"OK"},"requestObject":{"data":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"acaa460db6971b08c8319acb81eb4d8b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=Yl59sdET%2BZHUcVAF5QcWyprQk4ENtmffkXStjRuisLJj5U2F0T3Wi4FX9fTXW%2BkSrtqWBFxyhY3t4wAWRoGsIQ%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=gQmFb1Pv2rnV0KeNGzMK41IpVsziHyg%2Bz7%2FjaCXtPPc4oWptSF4pXU5nM1vRRRrr%2Bs66CyLyjFtIz4ohGAMHjh7ZLuB%2FnjwHG27%2BMUUYT7BlVN%2F6Lff%2Fu4%2BBvPPRtQsTOLYes%2FSKMHB3sYkgLnQ%3D--IamLuQ3fQsIlIr6X--dF0RuuyBniIBY%2FcpTORzQQ%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"b44ab291-9cc3-4afc-818b-56890835a09d"},{"key":"X-Runtime","value":"0.012725"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"28b278e1-dcf3-4502-b107-e7ccd273be10","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"2ee4e128-833d-4cfa-a739-808af5218ba4","name":"Survey Update","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff6?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{ survey_id }}`\n\n**Description:** Update a survey with the provided parameters.\n\n\n**Parameters:**\n\n* `name` - optional\n* `entry_url_prod` - optional\n* `entry_url_test` - optional\n* `estimated_length_of_interview` - optional\n* `estimated_conversion_rate` - optional\n* `start_at` - optional\n* `end_at` - optional\n* `country` - optional","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"PUT","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"cded4bb5-b716-4686-aa90-5811a9e5cecf","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n    \"name\": \"Updated Survey Name\",\n    \"entry_url_prod\": \"https://google.com/prod/?transaction_id={{transaction_id}}\",\n    \"entry_url_test\": \"https://google.com/test/?transaction_id={{transaction_id}}\",\n    \"estimated_length_of_interview\": 2,\n    \"estimated_conversion_rate\": 0.74,\n    \"start_at\": \"2019-12-01T00:00:00Z\",\n    \"end_at\": \"2019-12-28T10:25:30Z\",\n    \"country_id\": \"5a8296a0-0ab0-4e75-be00-71a6371b519b\"\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"30ebe142-80a7-483a-80b2-e1eba26d2f33","name":"Transactions Index","url":"{{host}}/api/external/v1/surveys/d8f68021-efda-4147-b259-c59f9f66784c/transactions?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{survey_id}}/transactions`\n\n**Description:** Retrieve a list of response transactions for the survey.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"0ad06139-e82d-4bfe-896f-4a93f85320e8","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"42ca8adc-e692-41b8-81fd-fa1fc0fa78d4","name":"Survey Show","url":"{{host}}/api/external/v1/surveys/e6bad93a-fb3c-423e-bea1-b9746bcd9786?mapping_partner_id=ceed3b0f-650a-4e00-83b4-6987eb47b37b&enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{ survey_id }}`\n\n**Description:** Retrieve a full list of surveys that your company owns.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"mapping_partner_id","value":"ceed3b0f-650a-4e00-83b4-6987eb47b37b","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"cded4bb5-b716-4686-aa90-5811a9e5cecf","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"4321430a-aa6b-44c9-af9f-62b9e4a6b894","name":"Survey Pause","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff68/pause?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{survey_id}}/pause`\n\n**Description:** Pause the survey.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"82e081d5-e465-4bc3-af39-9d121948f9f9","responses":[{"id":"7f56f251-8120-45e7-aca7-901d304bf77d","name":"Survey pause example","status":null,"mime":null,"language":"json","text":"{\n    \"data\": {\n        \"id\": \"f18e947f-0fd2-49d2-b3d3-3a8609361148\",\n        \"name\": \"Test\",\n        \"state\": \"paused\",\n        \"entry_url_prod\": null,\n        \"entry_url_test\": null,\n        \"start_at\": \"2019-12-20T22:07:00Z\",\n        \"end_at\": null,\n        \"metrics\": {\n            \"target_completes\": 125,\n            \"remaining_completes\": 25,\n            \"completes_count\": 0,\n            \"effective_cpi\": 0,\n            \"attempts_count\": 0,\n            \"attempts_in_dollars\": 0,\n            \"completes_in_dollars\": 0,\n            \"calculated_length_of_interview\": null,\n            \"conversion_rate\": 0,\n            \"trailing_50_day_conversion_rate\": 0\n        },\n        \"state_reason\": \"Survey Paused via API\",\n        \"state_updated_at\": \"2019-12-05T22:28:07Z\",\n        \"estimated_length_of_interview\": null,\n        \"estimated_conversion_rate\": null,\n        \"country\": null,\n        \"quotas\": [\n            {\n                \"id\": \"8c26bc1e-1d6c-4e4b-ae09-3c6f8eb73aff\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 25,\n                    \"remaining_completes\": 25,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": 0,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": 0,\n                    \"completes_in_dollars\": 0,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            },\n            {\n                \"id\": \"e16a6d2d-3827-4dd1-89aa-70fca15322f3\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 100,\n                    \"remaining_completes\": 0,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": null,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": null,\n                    \"completes_in_dollars\": null,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            }\n        ]\n    }\n}","responseCode":{"code":200,"name":"OK "},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys/f18e947f-0fd2-49d2-b3d3-3a8609361148/pause?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Etag","value":"W/\"d4370d3438ffee9d3f6fe880c985a801\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5ed0b395-fb1c-4502-9268-f22f037ae837"},{"key":"X-Runtime","value":"0.019961"},{"key":"Server","value":"WEBrick/1.4.2 (Ruby/2.6.3/2019-04-16)"},{"key":"Date","value":"Thu, 05 Dec 2019 22:28:07 GMT"},{"key":"Content-Length","value":"1203"},{"key":"Connection","value":"Keep-Alive"},{"key":"Set-Cookie","value":"XSRF-TOKEN=lFKuEaspVX3c7maNEDvfGlTPPpnTYSl%2BG3x0zNRobrdDS%2BGPZtRdgxt0%2B7h35nSZkRPgbsT48NfYbqC1mw0l9A%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=7m4f0DNN3KcA8a4ZJwbakxSAEjaKJbCdG1Rk3PQS%2BQdQwo2UaETz2rhxO0V1ubC3jyXsv%2F3PWT%2BEgC3IAiLBAus6z6lyDljBee1a2XhODzFuoFTZyWroiRWctI6%2BnER7NCyQqgkBDAZuqrPnj8w%3D--04YQg2O%2B2RhQdOY%2B--hEcEopunoCtRPLt8SBphSw%3D%3D; path=/; HttpOnly"}],"cookies":null,"request":"4321430a-aa6b-44c9-af9f-62b9e4a6b894","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"50e22fea-b8a4-4d2e-94ca-db8b1616b15b","name":"Countries Index","url":"{{host}}/api/external/v1/countries?enc={{request_hash}}","description":"**Path:** `/api/external/v1/countries`\n\n**Description:** Retrieves a list of active countries.","data":null,"dataOptions":null,"dataMode":null,"headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":null,"responses":[{"id":"2d8cc7b4-7a1f-4eaa-9bc0-7dc4e5e9962d","name":"Full Example Request/Response","status":null,"mime":null,"language":"json","text":"{\n    \"data\": [\n        {\n            \"id\": \"5a8296a0-0ab0-4e75-be00-71a6371b519b\",\n            \"name\": \"United States\"\n        },\n        {\n            \"id\": \"1bb42394-b037-49c6-9053-5b326c62dee2\",\n            \"name\": \"Argentina\"\n        },\n        {\n            \"id\": \"6683bb57-1e3b-449e-8879-a2bfeaf29844\",\n            \"name\": \"Australia\"\n        },\n        {\n            \"id\": \"e5b59a23-7250-444b-963c-872ab6483e5e\",\n            \"name\": \"Belgium\"\n        },\n        {\n            \"id\": \"d57657f9-a942-4841-b2b5-c533a6f123bc\",\n            \"name\": \"Brazil\"\n        },\n        {\n            \"id\": \"fbcd0c81-8e77-4537-b7d9-36e449329f3e\",\n            \"name\": \"Bulgaria\"\n        },\n        {\n            \"id\": \"6779df3c-289b-4f9e-9cdc-32186239525f\",\n            \"name\": \"Canada\"\n        },\n        {\n            \"id\": \"98f187de-54c4-4091-ba56-8581a1c6fac1\",\n            \"name\": \"China\"\n        },\n        {\n            \"id\": \"67778224-fb77-46c2-829f-27ab7e8d57da\",\n            \"name\": \"Colombia\"\n        },\n        {\n            \"id\": \"fb9ab421-6269-46b2-9387-a45fcbcafbfa\",\n            \"name\": \"Czech Republic\"\n        },\n        {\n            \"id\": \"6851455f-1dd0-4263-b33a-e2fe0d0bcdd9\",\n            \"name\": \"Denmark\"\n        },\n        {\n            \"id\": \"e5899f4a-709d-4681-8b5e-03e7e9dfad02\",\n            \"name\": \"Egypt\"\n        },\n        {\n            \"id\": \"8380b4e8-ce96-457b-84c8-65b780e52083\",\n            \"name\": \"Finland\"\n        },\n        {\n            \"id\": \"d5944158-7205-4fa9-8622-23246476cf3e\",\n            \"name\": \"France\"\n        },\n        {\n            \"id\": \"1400fc59-1cfa-4698-bee6-f5d686b639e2\",\n            \"name\": \"Germany\"\n        },\n        {\n            \"id\": \"e738f110-98cc-4435-8fd5-9d7c4b7d0346\",\n            \"name\": \"Greece\"\n        },\n        {\n            \"id\": \"566ee0ce-a52a-4bdb-ad9e-63028aea123a\",\n            \"name\": \"Hong Kong, SAR China\"\n        },\n        {\n            \"id\": \"860a85f0-4fc0-4d78-84ae-0cd4c814332a\",\n            \"name\": \"Hungary\"\n        },\n        {\n            \"id\": \"7084f90b-55b1-4a94-9f3e-e87ef5fe02f7\",\n            \"name\": \"India\"\n        },\n        {\n            \"id\": \"1277fba4-e0d0-4a48-9d30-14ce0833c517\",\n            \"name\": \"Indonesia\"\n        },\n        {\n            \"id\": \"22881fef-fb99-423c-b403-15e40c7a3230\",\n            \"name\": \"Ireland\"\n        },\n        {\n            \"id\": \"98487696-b4d6-49a1-8197-18dbbe535908\",\n            \"name\": \"Italy\"\n        },\n        {\n            \"id\": \"79428a81-c69e-4c53-969d-3b47906f1b0d\",\n            \"name\": \"Japan\"\n        },\n        {\n            \"id\": \"3cfa985d-fe6d-4cb9-9930-ed5e9cfa1272\",\n            \"name\": \"Korea (South)\"\n        },\n        {\n            \"id\": \"8dd354d4-11bc-49bd-9ee2-64b52812776f\",\n            \"name\": \"Kuwait\"\n        },\n        {\n            \"id\": \"6b610dfd-bb71-4409-9550-063f04e7e3f3\",\n            \"name\": \"Lithuania\"\n        },\n        {\n            \"id\": \"cc43da5a-04f6-4ff7-9308-eb18ee791514\",\n            \"name\": \"Malaysia\"\n        },\n        {\n            \"id\": \"372da156-a7aa-4900-a69a-5eb975623139\",\n            \"name\": \"Mexico\"\n        },\n        {\n            \"id\": \"e8919ef5-1bb3-407c-ad56-76200f242391\",\n            \"name\": \"Netherlands\"\n        },\n        {\n            \"id\": \"3fdeda19-8c15-4119-9d82-9843b3861824\",\n            \"name\": \"New Zealand\"\n        },\n        {\n            \"id\": \"529a3b54-d7d6-4bab-962c-f0c54dc227d5\",\n            \"name\": \"Norway\"\n        },\n        {\n            \"id\": \"4f4d2695-6606-4400-bd4b-a9f7a7138b9f\",\n            \"name\": \"Oman\"\n        },\n        {\n            \"id\": \"6a7a4767-4eae-442d-b3d5-07eef2eecf07\",\n            \"name\": \"Peru\"\n        },\n        {\n            \"id\": \"ae432fbf-8f92-4adf-963f-05f34d22bbd5\",\n            \"name\": \"Philippines\"\n        },\n        {\n            \"id\": \"5bcdc2ec-d233-48fd-8561-a48992f90cf5\",\n            \"name\": \"Poland\"\n        },\n        {\n            \"id\": \"0866c735-0fda-4340-ac12-ff25ce3dcb9a\",\n            \"name\": \"Portugal\"\n        },\n        {\n            \"id\": \"6a8766da-c177-464d-8b37-033d5d1a79b3\",\n            \"name\": \"Qatar\"\n        },\n        {\n            \"id\": \"6ed81b53-fed5-4687-8b74-c5e613bef398\",\n            \"name\": \"Romania\"\n        },\n        {\n            \"id\": \"f8523b10-5e47-472d-9b97-ded436dc5e87\",\n            \"name\": \"Russia\"\n        },\n        {\n            \"id\": \"73d08355-747c-477e-945e-852082089259\",\n            \"name\": \"Saudi Arabia\"\n        },\n        {\n            \"id\": \"70c53d75-e388-4142-ae43-726ee5c96f43\",\n            \"name\": \"Singapore\"\n        },\n        {\n            \"id\": \"5e579ffa-bb54-47e8-b19d-440de0994d28\",\n            \"name\": \"South Africa\"\n        },\n        {\n            \"id\": \"f7cf25bc-2bcb-4d7f-a827-02427f93ec7b\",\n            \"name\": \"Spain\"\n        },\n        {\n            \"id\": \"16c98c27-0b20-4005-a6a5-9e099066397d\",\n            \"name\": \"Sweden\"\n        },\n        {\n            \"id\": \"ec566eb2-32fa-412e-b0c1-62f7e4544867\",\n            \"name\": \"Switzerland\"\n        },\n        {\n            \"id\": \"39ed5069-6159-403c-bbe1-8f14ecaf1152\",\n            \"name\": \"Taiwan\"\n        },\n        {\n            \"id\": \"63f585cf-7c96-49b9-bbae-56087c713cd4\",\n            \"name\": \"Thailand\"\n        },\n        {\n            \"id\": \"55edd4a5-6906-4402-b4a3-2fe836fcf688\",\n            \"name\": \"Turkey\"\n        },\n        {\n            \"id\": \"ad43376d-ff55-4106-9684-ced3ed5c145b\",\n            \"name\": \"Ukraine\"\n        },\n        {\n            \"id\": \"44db6c3f-34bf-4682-b7c7-bf336e7d687b\",\n            \"name\": \"United Arab Emirates\"\n        },\n        {\n            \"id\": \"9ecdb05d-284d-43f0-aaab-a84e18458cd1\",\n            \"name\": \"United Kingdom\"\n        },\n        {\n            \"id\": \"eea37397-ff32-4a73-88b7-0e86689cb79d\",\n            \"name\": \"Uruguay\"\n        },\n        {\n            \"id\": \"caa55fbe-7ce2-49e2-a561-615b978d768c\",\n            \"name\": \"Viet Nam\"\n        }\n    ]\n}","responseCode":{"code":200,"name":"OK"},"requestObject":{"data":null,"dataMode":null,"headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/countries?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"86e3374cc38c5179ac39f9302f89d296\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=PUvjfXOCl%2BCCEA8P5DkTYUNJQhrq9UgsI4WiP8rr0Ho88NNJc6y4%2Btc2qv7WZey5d0NHn7sxqn5fEg%2Bkl8jM6Q%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=AVpZFWKKozHZLZrQdjzsH1smOEotlB7JYw5lfV3xyGSaaXiHQuN8hF5Tp1QTrWOdgY533R6bk%2BP8bAlImmFZ7zy8%2FZiWPqaayEBXpmm0MvLomtGi%2BHFYYNItGNsce7uGngJhYKahpsbS5wxWo%2FU%3D--1CkAzV6K7r8GlEJC--ZjTaOup9GdCRJbjsM%2FM92g%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"27c64b19-ce8a-4f0b-ac18-55f9f3e9397c"},{"key":"X-Runtime","value":"0.016993"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"50e22fea-b8a4-4d2e-94ca-db8b1616b15b","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"6cf3b781-41a1-4d08-85c4-61b94758acc8","name":"Survey Complete","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff6/complete?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{survey_id}}/complete`\n\n**Description:** Mark the survey as completed.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"82e081d5-e465-4bc3-af39-9d121948f9f9","responses":[{"id":"a886b6e6-2556-4939-af21-775ab17f1e75","name":"Survey complete example","status":null,"mime":null,"language":"json","text":"{\n    \"data\": {\n        \"id\": \"f18e947f-0fd2-49d2-b3d3-3a8609361148\",\n        \"name\": \"Test\",\n        \"state\": \"completed\",\n        \"entry_url_prod\": null,\n        \"entry_url_test\": null,\n        \"start_at\": \"2019-12-20T22:07:00Z\",\n        \"end_at\": null,\n        \"metrics\": {\n            \"target_completes\": 125,\n            \"remaining_completes\": 25,\n            \"completes_count\": 0,\n            \"effective_cpi\": 0,\n            \"attempts_count\": 0,\n            \"attempts_in_dollars\": 0,\n            \"completes_in_dollars\": 0,\n            \"calculated_length_of_interview\": null,\n            \"conversion_rate\": 0,\n            \"trailing_50_day_conversion_rate\": 0\n        },\n        \"state_reason\": \"Survey Completed via API\",\n        \"state_updated_at\": \"2019-12-05T22:40:51Z\",\n        \"estimated_length_of_interview\": null,\n        \"estimated_conversion_rate\": null,\n        \"country\": null,\n        \"quotas\": [\n            {\n                \"id\": \"8c26bc1e-1d6c-4e4b-ae09-3c6f8eb73aff\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 25,\n                    \"remaining_completes\": 25,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": 0,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": 0,\n                    \"completes_in_dollars\": 0,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            },\n            {\n                \"id\": \"e16a6d2d-3827-4dd1-89aa-70fca15322f3\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 100,\n                    \"remaining_completes\": 0,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": null,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": null,\n                    \"completes_in_dollars\": null,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            }\n        ]\n    }\n}","responseCode":{"code":200,"name":"OK "},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys/f18e947f-0fd2-49d2-b3d3-3a8609361148/complete?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Etag","value":"W/\"819980b12b385963ff913d11fd24b803\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0d3bfa2a-3471-47ca-9d64-4450be578ebc"},{"key":"X-Runtime","value":"0.399225"},{"key":"Server","value":"WEBrick/1.4.2 (Ruby/2.6.3/2019-04-16)"},{"key":"Date","value":"Thu, 05 Dec 2019 22:40:51 GMT"},{"key":"Content-Length","value":"1209"},{"key":"Connection","value":"Keep-Alive"},{"key":"Set-Cookie","value":"XSRF-TOKEN=n9FlHQQlwTb99UfSsPGlw9lzwOOQGAruSsZJ51BwpVlIyCqDydjJyDpv2ufXLA5AHK8eFIeB00eJ1J2eHxXuGg%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=rbjejelyr9vtrDftlEs93YbWPnwtzXSHrH7N%2BhiWnRq16%2BBXbt2UCTiJ9zxS%2BxMX9VjG5oWk%2F3%2BQvpHSVxh%2BfrFAiH6StbPrP%2B6oEVauZeXXKHjlFQc3SwQdcKGrT7bQlDYGxsCWN66oNHMk1C0%3D--4BYk84zU%2BPlNN92m--CiUOhzvgihRJHLd%2BN6mWCA%3D%3D; path=/; HttpOnly"}],"cookies":null,"request":"6cf3b781-41a1-4d08-85c4-61b94758acc8","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"80d3c9fc-5f21-419e-aa7b-50436c65bb5e","name":"Quotas Update","url":"{{host}}/api/external/v1/quotas/73cd3808-79f9-410c-bf82-d080ff047124?mapping_partner_id=4a91e105-bd9d-44c9-89ae-65585fd6c29c&enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/:survey_id/quotas`\n\n**Description:**\nCreate  a new quota for the survey, with the provided parameters.\n\n**Parameters:**\n- `mapping_partner_id` - optional (query)\n- `name` - optional (body)\n- `target_completes` - optional (body)\n- `state` - optional (body)\n- `questions` - optional (body)","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"PUT","pathVariableData":[],"queryParams":[{"key":"mapping_partner_id","value":"4a91e105-bd9d-44c9-89ae-65585fd6c29c","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"name\": \"Renamed Quota\",\n\t\"target_completes\": 150,\n\t\"state\": \"inactive\",\n\t\"questions\": [\n\t\t{\n\t\t\t\"question_id\": \"8214\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"8213\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"45\",\n\t\t\t\"postal_codes\": [\"23185\"]\n\t\t}\n\t]\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"845589a8-4f4b-4212-bd08-c4224a550a81","name":"Screening Question Options Create","url":"{{host}}/api/external/v1/screening_questions/a73a399d-770e-4c28-92ff-e97b8f1d1a32/screening_question_options?enc={{request_hash}}","description":"**Path:** `/api/external/v1/screening_questions/{{ screening_question_id }}/screening_question_options`\n\n**Description:** Creates a new option for the screening question.\n\n**Parameters:**\n\n- `value` - optional\n- `sort_order` - optional\n- `pass_question` - optional","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1d5a26c3-43a9-41f8-9928-a121e90b21dc","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"value\": \"dfg\",\n\t\"sort_order\": 1,\n\t\"pass_question\": true\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"8a84596f-50c0-41cc-b893-f49a7bcfada7","name":"Quotas Delete","url":"{{host}}/api/external/v1/quotas/73cd3808-79f9-410c-bf82-d080ff047124/?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/:survey_id/quotas`\n\n**Description:**\nDeletes the entire quota and assigned questions/answers","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"description":"","key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"method":"DELETE","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"name\": \"New Quota\",\n\t\"target_completes\": 250,\n\t\"state\": \"acive\",\n\t\"questions\": [\n\t\t{\n\t\t\t\"question_id\": \"8214\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"8213\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"45\",\n\t\t\t\"postal_codes\": [\"23185\", \"90210\"]\n\t\t}\n\t]\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"988abe34-41b9-4f31-a7eb-d8c8089519a4","name":"Survey Create","url":"{{host}}/api/external/v1/surveys?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{ survey_id }}`\n\n**Description:** Create a new survey with the provided parameters.\n\n\n**Parameters:**\n\n* `name` - optional\n* `entry_url_prod` - optional\n* `entry_url_test` - optional\n* `estimated_length_of_interview` - optional\n* `estimated_conversion_rate` - optional\n* `start_at` - optional\n* `end_at` - optional\n* `country` - optional","data":[],"dataOptions":null,"dataMode":"raw","headerData":[{"key":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"cded4bb5-b716-4686-aa90-5811a9e5cecf","responses":[{"id":"0f9b0f2f-e745-44a2-9e44-877f2f9aedf4","name":"Create New Survey Example (No Data)","status":null,"mime":null,"language":"json","text":"{\n    \"data\": {\n        \"id\": \"0fbf0c0a-fda3-42e0-8b03-5cf41d5013c0\",\n        \"name\": \"New Survey\",\n        \"state\": \"draft\",\n        \"entry_url_prod\": null,\n        \"entry_url_test\": null,\n        \"start_at\": null,\n        \"end_at\": null,\n        \"metrics\": {\n            \"target_completes\": 0,\n            \"remaining_completes\": 0,\n            \"completes_count\": 0,\n            \"effective_cpi\": 0,\n            \"attempts_count\": 0,\n            \"attempts_in_dollars\": 0,\n            \"completes_in_dollars\": 0,\n            \"calculated_length_of_interview\": null,\n            \"conversion_rate\": 0,\n            \"trailing_50_day_conversion_rate\": 0\n        },\n        \"state_reason\": null,\n        \"state_updated_at\": null,\n        \"estimated_length_of_interview\": null,\n        \"estimated_conversion_rate\": null,\n        \"country\": null,\n        \"quotas\": []\n    }\n}","responseCode":{"code":201,"name":"Created"},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[{"key":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"e423088fd3b4b78b2efa98ad1c9a1b84\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=f8rWZQdgrmWuZZn2gUKFYfNq%2BNIXEV6PKAqYHJqsI%2FOo05n7yp2mm2n%2FBMPmny7iNrYmJQCIhybrGExl1closA%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=ugvSR7Gk1h8mgqT7E%2BYKzZWlrQ9PuYs8BmW7dTXB4QFWqz6I6fa60Rh8Lb6JQ949gFJ3WaydzDyq3tyil79Pm0nHEbag9zzKashG%2Fgl1LHMFwdx2%2FMlOTPxM4qU5oMbmoByEOWe7quvpxSDM2WE%3D--3wSiOkupTCdywIs%2B--fvqtVwinGm3f4AVYN6rYUQ%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"2a208b52-2835-4f02-9195-6136870a379a"},{"key":"X-Runtime","value":"0.040164"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"988abe34-41b9-4f31-a7eb-d8c8089519a4","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"},{"id":"d32cf74c-7903-4740-93de-46689babcf7a","name":"Create Survey With All Parameters","status":null,"mime":null,"language":"json","text":"{\n    \"data\": {\n        \"id\": \"5780db4f-8945-4a1c-8155-642e601c523b\",\n        \"name\": \"New Survey\",\n        \"state\": \"draft\",\n        \"entry_url_prod\": null,\n        \"entry_url_test\": null,\n        \"start_at\": null,\n        \"end_at\": null,\n        \"metrics\": {\n            \"target_completes\": 0,\n            \"remaining_completes\": 0,\n            \"completes_count\": 0,\n            \"effective_cpi\": 0,\n            \"attempts_count\": 0,\n            \"attempts_in_dollars\": 0,\n            \"completes_in_dollars\": 0,\n            \"calculated_length_of_interview\": null,\n            \"conversion_rate\": 0,\n            \"trailing_50_day_conversion_rate\": 0\n        },\n        \"state_reason\": null,\n        \"state_updated_at\": null,\n        \"estimated_length_of_interview\": 5,\n        \"estimated_conversion_rate\": 0.25,\n        \"country\": {\n            \"id\": \"5a8296a0-0ab0-4e75-be00-71a6371b519b\",\n            \"name\": \"United States\"\n        },\n        \"quotas\": []\n    }\n}","responseCode":{"code":201,"name":"Created"},"requestObject":{"data":[],"dataMode":"raw","dataOptions":null,"headerData":[{"key":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys?enc={{request_hash}}","rawModeData":"{\n    \"name\": \"Hello World Survey\",\n    \"entry_url_prod\": \"https://google.com/prod/?transaction_id={{transaction_id}}\",\n    \"entry_url_test\": \"https://google.com/test/?transaction_id={{transaction_id}}\",\n    \"estimated_length_of_interview\": 5,\n    \"estimated_conversion_rate\": 0.25,\n    \"start_at\": \"2019-02-05T00:00:00Z\",\n    \"end_at\": \"2019-02-10T10:25:30Z\",\n    \"country_id\": \"5a8296a0-0ab0-4e75-be00-71a6371b519b\"\n}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"caca6393c06cd18f35b71b1d6a724c12\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=Sb1UoFinpthLvStnZ0BznZ9G%2FrGS7B8ae%2Fq%2FJY%2BjNdGepBs%2BlVquJowntlIAndgeWpogRoV1xrO46GtcwMZ%2Bkg%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=DcCMf6ZMI5E95tyOsYCPHxbrM5%2BT62F%2B4lSp4S9uXUIdkEBQ4mzjS1Q3GlceMTMjKaCaGWVJGoOxfNbFwCqDTGBXC9nfYJL1Zu81lFqff9zgdBisjCbub3qm5hhauyzGVPt%2For%2FIhCjOY6Y%2Fp00%3D--QDyb3W87rL%2FmX0xC--mjVcPcsu5JpSgHPPNu9hGw%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"c0849900-dd29-46c1-ba8e-4ea76140fc61"},{"key":"X-Runtime","value":"7.436407"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"988abe34-41b9-4f31-a7eb-d8c8089519a4","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n    \"name\": \"Hello World Survey\",\n    \"entry_url_prod\": \"https://google.com/prod/?transaction_id={transaction_id}\",\n    \"entry_url_test\": \"https://google.com/test/?transaction_id={transaction_id}\",\n    \"estimated_length_of_interview\": 5,\n    \"estimated_conversion_rate\": 0.25,\n    \"start_at\": \"2019-02-05T00:00:00Z\",\n    \"end_at\": \"2019-02-10T10:25:30Z\",\n    \"country_id\": \"5a8296a0-0ab0-4e75-be00-71a6371b519b\"\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"9c854cc1-5852-4337-be0f-0d995669dd26","name":"Survey Start","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff6/start?enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/{{survey_id}}/start`\n\n**Description:** Schedule or immediately start the survey.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"82e081d5-e465-4bc3-af39-9d121948f9f9","responses":[{"id":"76f48268-738a-4b0a-b1a3-390f555976d2","name":"Survey started immediately example (start_at today or before today)","status":null,"mime":null,"language":"json","text":"{\n    \"data\": {\n        \"id\": \"f18e947f-0fd2-49d2-b3d3-3a8609361148\",\n        \"name\": \"Test\",\n        \"state\": \"running\",\n        \"entry_url_prod\": null,\n        \"entry_url_test\": null,\n        \"start_at\": \"2019-12-05T22:05:30Z\",\n        \"end_at\": null,\n        \"metrics\": {\n            \"target_completes\": 125,\n            \"remaining_completes\": 25,\n            \"completes_count\": 0,\n            \"effective_cpi\": 0,\n            \"attempts_count\": 0,\n            \"attempts_in_dollars\": 0,\n            \"completes_in_dollars\": 0,\n            \"calculated_length_of_interview\": null,\n            \"conversion_rate\": 0,\n            \"trailing_50_day_conversion_rate\": 0\n        },\n        \"state_reason\": \"Started Immediately After Check-Out By \",\n        \"state_updated_at\": \"2019-12-05T22:05:30Z\",\n        \"estimated_length_of_interview\": null,\n        \"estimated_conversion_rate\": null,\n        \"country\": null,\n        \"quotas\": [\n            {\n                \"id\": \"8c26bc1e-1d6c-4e4b-ae09-3c6f8eb73aff\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 25,\n                    \"remaining_completes\": 25,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": 0,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": 0,\n                    \"completes_in_dollars\": 0,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            },\n            {\n                \"id\": \"e16a6d2d-3827-4dd1-89aa-70fca15322f3\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 100,\n                    \"remaining_completes\": 0,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": null,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": null,\n                    \"completes_in_dollars\": null,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            }\n        ]\n    }\n}","responseCode":{"code":200,"name":"OK "},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys/f18e947f-0fd2-49d2-b3d3-3a8609361148/start?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Etag","value":"W/\"6442cfe0325a029fd7f05e8f3dbcb6cc\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"538d05d3-609f-4863-b51f-09a3cf17693f"},{"key":"X-Runtime","value":"0.156075"},{"key":"Server","value":"WEBrick/1.4.2 (Ruby/2.6.3/2019-04-16)"},{"key":"Date","value":"Thu, 05 Dec 2019 22:05:30 GMT"},{"key":"Content-Length","value":"1222"},{"key":"Connection","value":"Keep-Alive"},{"key":"Set-Cookie","value":"XSRF-TOKEN=CGSZ3PUWJYhPWAzkvCScrN7aeXsTMN1PNlHEGiTK2hnffdZCOOstdojCkdHb%2BTcvGwanjASpBOb1QxBja6%2BRWg%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=JoEFmFxRT9tZCpy0xGWbMzQh5dL9K%2FGZHkPBMfZLLbHM3Aoqr5NdnY7WfvILwguwGvfg4qF%2FH36qaRtkWi5xZEdzzdwdRbKPh3isIDVSO6wea%2F07f9UNYdNtMg0bB2baIklQZM9PrnoC1b68DqE%3D--9ow6SeeF5ePfgeSb--KLNLmbL2SY304OE2k%2FUQag%3D%3D; path=/; HttpOnly"}],"cookies":null,"request":"9c854cc1-5852-4337-be0f-0d995669dd26","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"},{"id":"dc763d44-576b-4188-91ba-f8124120e7a3","name":"Survey scheduled to start on a future day/time (start_at after now)","status":null,"mime":null,"language":"json","text":"{\n    \"data\": {\n        \"id\": \"f18e947f-0fd2-49d2-b3d3-3a8609361148\",\n        \"name\": \"Test\",\n        \"state\": \"scheduled\",\n        \"entry_url_prod\": null,\n        \"entry_url_test\": null,\n        \"start_at\": \"2019-12-20T22:07:00Z\",\n        \"end_at\": null,\n        \"metrics\": {\n            \"target_completes\": 125,\n            \"remaining_completes\": 25,\n            \"completes_count\": 0,\n            \"effective_cpi\": 0,\n            \"attempts_count\": 0,\n            \"attempts_in_dollars\": 0,\n            \"completes_in_dollars\": 0,\n            \"calculated_length_of_interview\": null,\n            \"conversion_rate\": 0,\n            \"trailing_50_day_conversion_rate\": 0\n        },\n        \"state_reason\": \"Scheduled During Check-Out By \",\n        \"state_updated_at\": \"2019-12-05T22:07:33Z\",\n        \"estimated_length_of_interview\": null,\n        \"estimated_conversion_rate\": null,\n        \"country\": null,\n        \"quotas\": [\n            {\n                \"id\": \"8c26bc1e-1d6c-4e4b-ae09-3c6f8eb73aff\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 25,\n                    \"remaining_completes\": 25,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": 0,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": 0,\n                    \"completes_in_dollars\": 0,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            },\n            {\n                \"id\": \"e16a6d2d-3827-4dd1-89aa-70fca15322f3\",\n                \"postal_codes\": null,\n                \"name\": null,\n                \"metrics\": {\n                    \"target_completes\": 100,\n                    \"remaining_completes\": 0,\n                    \"completes_count\": 0,\n                    \"effective_cpi\": null,\n                    \"attempts_count\": 0,\n                    \"attempts_in_dollars\": null,\n                    \"completes_in_dollars\": null,\n                    \"conversion_rate\": 0\n                },\n                \"state\": \"active\"\n            }\n        ]\n    }\n}","responseCode":{"code":202,"name":"Accepted "},"requestObject":{"data":null,"dataMode":null,"dataOptions":null,"headerData":[],"method":"POST","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/surveys/f18e947f-0fd2-49d2-b3d3-3a8609361148/start?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"78b67506-5c75-4653-a197-4fab1a26ea7e"},{"key":"X-Runtime","value":"0.027410"},{"key":"Server","value":"WEBrick/1.4.2 (Ruby/2.6.3/2019-04-16)"},{"key":"Date","value":"Thu, 05 Dec 2019 22:07:33 GMT"},{"key":"Content-Length","value":"1215"},{"key":"Connection","value":"Keep-Alive"},{"key":"Set-Cookie","value":"XSRF-TOKEN=sOy%2F7VEJlZf0YTEyF0AML9KVjwjwIKXFqsvVELu2OOFn9fBznPSdaTP7rAdwnaesF0lR%2F%2Be5fGxp2QFp9NNzog%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=wS951e5Gqa4ESYWJ7JMZL7soNlrYqWob8BWFwEaAu2wr6vk%2FmnPMCWfs1hkyZJasL5gw6zXBKF9ai2jVtEFayH6Q80cTmcfuZg4kVqWVYWslljhsyBvYBBp%2BHgU7Lr4%2FjktYazO2pea3ama247w%3D--cz%2Bw7dj6IwvJBONZ--mb0pLKVusMiO4M5PcYaRHA%3D%3D; path=/; HttpOnly"}],"cookies":null,"request":"9c854cc1-5852-4337-be0f-0d995669dd26","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"a640550b-94a8-4c74-ac4c-ee82fc6e31f5","name":"Screening Question Options Index","url":"{{host}}/api/external/v1/screening_questions/a73a399d-770e-4c28-92ff-e97b8f1d1a32/screening_question_options?enc={{request_hash}}","description":"**Path:** `/api/external/v1/screening_questions/{{ screening_question_id }}/screening_question_options`\n\n**Description:** Returns a list of screening question options for the question.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1d5a26c3-43a9-41f8-9928-a121e90b21dc","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"a85b0c02-be7c-4fdf-818a-aace32487d68","name":"Screen Questions Delete","url":"{{host}}/api/external/v1/screening_questions/1976f804-d518-4331-a2d1-7ee6bc85cd9b?enc={{request_hash}}","description":"**Path:** `/api/external/v1/screening_questions/{{ screening_question_id }}`\n\n**Description:** Destroys a screening question and its options.","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"description":"","key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"method":"DELETE","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1070b5a2-0320-4fcc-93c9-57678700bb20","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"question_type\": \"single_select\",\n\t\"display_text\": \"Hello, World!\",\n\t\"sort_order\": 1,\n\t\"shuffle_type\": \"no_shuffle\"\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"a8939204-a7b9-4f55-a931-a84a865549e5","name":"Screening Question Options Update","url":"{{host}}/api/external/v1/screening_question_options/8a9ffe1a-f6ea-426a-87e3-8f668d0a0119?enc={{request_hash}}","description":"**Path:** `/api/external/v1/screening_question_options/{{ screening_question_id }}`\n\n**Description:** Creates a new option for the screening question.\n\n**Parameters:**\n\n- `value` - optional\n- `sort_order` - optional\n- `pass_question` - optional","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"PUT","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1d5a26c3-43a9-41f8-9928-a121e90b21dc","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"value\": \"dfdf\",\n\t\"sort_order\": 1,\n\t\"pass_question\": true\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"ae95b36f-e316-405a-a98f-453589c70198","name":"Quotas Create","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff6/quotas?mapping_partner_id=4a91e105-bd9d-44c9-89ae-65585fd6c29c&enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/:survey_id/quotas`\n\n**Description:**\nCreate  a new quota for the survey, with the provided parameters.\n\n**Parameters:**\n- `mapping_partner_id` - optional (query)\n- `name` - optional (body)\n- `target_completes` - optional (body)\n- `state` - optional (body)\n- `questions` - optional (body)","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"POST","pathVariableData":[],"queryParams":[{"key":"mapping_partner_id","value":"4a91e105-bd9d-44c9-89ae-65585fd6c29c","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"name\": \"New Quotas\",\n\t\"target_completes\": 250,\n\t\"state\": \"active\",\n\t\"questions\": [\n\t\t{\n\t\t\t\"question_id\": \"i-am-invalid\",\n\t\t\t\"answer_ids\": [\"this-is-an-invalid-answer\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"8214\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"8213\",\n\t\t\t\"answer_ids\": [\"true\"]\n\t\t},\n\t\t{\n\t\t\t\"question_id\": \"45\",\n\t\t\t\"postal_codes\": [\"23185\", \"90210\"]\n\t\t}\n\t]\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"b7679603-6868-473f-a8ec-c8ea557cfbe5","name":"Screen Questions Update","url":"{{host}}/api/external/v1/screening_questions/1976f804-d518-4331-a2d1-7ee6bc85cd9b?enc={{request_hash}}","description":"**Path:** `/api/external/v1/screening_questions/{{ screening_question_id }}`\n\n**Description:** Create a new screening question for the provided survey. Max 3 per survey.\n\n\n**Parameters:**\n- `question_type` - optional\n- `display_text` - optional\n- `sort_order` - optional (1, 2, 3)\n- `shuffle_type` - optional (st_no_shuffle|st_shuffle)","data":[],"dataOptions":{"raw":{"language":"json"}},"dataMode":"raw","headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"PUT","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1070b5a2-0320-4fcc-93c9-57678700bb20","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","rawModeData":"{\n\t\"question_type\": \"sinle_select\",\n\t\"display_text\": \"Hello, World!\",\n\t\"sort_order\": 1,\n\t\"shuffle_type\": \"shuffle\"\n}","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"bedb671d-f723-4113-8b43-c10625f238ad","name":"Quotas Index","url":"{{host}}/api/external/v1/surveys/7649653a-0a04-491a-9658-c2549cd7eff6/quotas?mapping_partner_id=4a91e105-bd9d-44c9-89ae-65585fd6c29c&enc={{request_hash}}","description":"**Path:** `/api/external/v1/surveys/:survey_id/quotas`\n\n**Description:**\nReturns a list of quotas attached to the survey.\n\n**Parameters:**\n- `mapping_partner_id` - optional (query)","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"mapping_partner_id","value":"4a91e105-bd9d-44c9-89ae-65585fd6c29c","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"3fdf7ab5-3f66-47ed-9f99-00f68f24adf9","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"c70f4278-1960-4854-8306-ff20424786ed","name":"Screening Question Options Delete","url":"{{host}}/api/external/v1/screening_question_options/ce8a0bf3-51c9-447a-864c-9f370237c105?enc={{request_hash}}","description":"**Path:** `/api/external/v1/screening_question_options/{{ screening_question_id }}`\n\n**Description:** Deletes the screening question option.","data":null,"dataOptions":{"raw":{"language":"json"}},"dataMode":null,"headerData":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"method":"DELETE","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":"1d5a26c3-43a9-41f8-9928-a121e90b21dc","currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"Content-Type: application/json\n","pathVariables":{}},{"id":"d895051c-d3e7-4865-9ee2-210e2a4a3bcf","name":"Questions Index","url":"{{host}}/api/external/v1/questions?country_id=5a8296a0-0ab0-4e75-be00-71a6371b519b&mapping_partner_id=ceed3b0f-650a-4e00-83b4-6987eb47b37b&enc={{request_hash}}","description":"**Path:** `/api/external/v1/questions`\n\n**Description:** Retrieves a list of available questions based on the country and mapping partner.\n\n\n**Parameters:**\n\n* *country_id* - required\n* *mapping_partner_id* - optional (TheoremReach default)","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"country_id","value":"5a8296a0-0ab0-4e75-be00-71a6371b519b","equals":true,"description":"ID for United States","enabled":true},{"key":"mapping_partner_id","value":"ceed3b0f-650a-4e00-83b4-6987eb47b37b","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":null,"responses":[{"id":"7c4ed177-63ee-482f-b3d5-b7a4b7a063a5","name":"Full Example Request/Response","status":null,"mime":null,"language":"json","text":"{\n    \"data\": [\n        {\n            \"id\": \"f2c062da-9f63-4602-88a8-e8525a4f1443\",\n            \"english_text\": \"What is your age?\",\n            \"localized_text\": \"What is your age?\",\n            \"name\": \"Age\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"dd8192cb-81da-42c7-946c-984010858efb\",\n            \"english_text\": \"What is your gender?\",\n            \"localized_text\": \"What is your gender?\",\n            \"name\": \"Gender\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"66ddd832-0a1d-41df-842f-b9ff4e03ec13\",\n            \"english_text\": \"What is your race?\",\n            \"localized_text\": \"What is your race?\",\n            \"name\": \"Ethnicity\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"28d3b88e-03e5-4d4d-89b2-710728320100\",\n            \"english_text\": \"What type of device do you have?\",\n            \"localized_text\": \"What type of device do you have?\",\n            \"name\": \"Device Type\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"ee653c71-e94b-44f5-8a2a-4ade54053a33\",\n            \"english_text\": \"Which department do you primarily work within at your organization?\",\n            \"localized_text\": \"Which department do you primarily work within at your organization?\",\n            \"name\": \"Company Department\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"f5a11bec-7293-4e6e-be44-7edd2ec0330a\",\n            \"english_text\": \"Are you of Hispanic, Latino, or Spanish origin?\",\n            \"localized_text\": \"Are you of Hispanic, Latino, or Spanish origin?\",\n            \"name\": \"Hispanic\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"9d3ac5e1-990d-4e5b-8c24-f95ce9fe102d\",\n            \"english_text\": \"What is your state?\",\n            \"localized_text\": \"What is your state?\",\n            \"name\": \"State\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"ef8b4b9c-0387-4960-ab0d-b95ac735f464\",\n            \"english_text\": \"What is your DMA?\",\n            \"localized_text\": \"What is your DMA?\",\n            \"name\": \"DMA\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"8cda2a83-76d4-490c-8def-4035db65bbf6\",\n            \"english_text\": \"What is your Division?\",\n            \"localized_text\": \"What is your Division?\",\n            \"name\": \"Division\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"e387337c-af68-43e2-9861-b053e4829037\",\n            \"english_text\": \"MSA\",\n            \"localized_text\": \"MSA\",\n            \"name\": \"MSA\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"9b16699f-3eb1-452f-8528-ba76b7228180\",\n            \"english_text\": \"What is your REGION ?\",\n            \"localized_text\": \"What is your REGION ?\",\n            \"name\": \"Region\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"246ba0d5-208c-4927-a252-6055afbaa400\",\n            \"english_text\": \"What is your relationship status?\",\n            \"localized_text\": \"What is your relationship status?\",\n            \"name\": \"Relationship\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"9043781c-6f0c-4031-a0de-9b39ab7a9136\",\n            \"english_text\": \"What is the highest level of education you have completed?\",\n            \"localized_text\": \"What is the highest level of education you have completed?\",\n            \"name\": \"Education\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"4daefcee-4555-4ee3-a2ff-796c9b706129\",\n            \"english_text\": \"Are you registered to vote?\",\n            \"localized_text\": \"Are you registered to vote?\",\n            \"name\": \"Voter Registration\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"71889a37-f460-4885-b335-b1f2f6494bde\",\n            \"english_text\": \"In your household, are you the person who makes most of the daily purchasing decisions?\",\n            \"localized_text\": \"In your household, are you the person who makes most of the daily purchasing decisions?\",\n            \"name\": \"Purchase Decision Maker\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"bd868e8f-63a0-44bc-a7bf-7be6b499dc53\",\n            \"english_text\": \"Which of the following pets are present in your household?\",\n            \"localized_text\": \"Which of the following pets are present in your household?\",\n            \"name\": \"Pets\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"9d310ea1-6eb8-46cf-87f0-000720697b87\",\n            \"english_text\": \"What is your sexual orientation?\",\n            \"localized_text\": \"What is your sexual orientation?\",\n            \"name\": \"Sexual Orientation\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"2f947d38-5fee-451c-866d-71c2232d1443\",\n            \"english_text\": \"How many people live in your household including yourself?\",\n            \"localized_text\": \"How many people live in your household including yourself?\",\n            \"name\": \"Household Size\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"7ad059bc-c698-4391-a529-c60614483dfa\",\n            \"english_text\": \"What best describes your current household?\",\n            \"localized_text\": \"What best describes your current household?\",\n            \"name\": \"Living Situation\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"ee5ac309-6674-4703-9be1-7f4e5cbbfe30\",\n            \"english_text\": \"Do you, or does anyone in your household, work in any of the following industries?\",\n            \"localized_text\": \"Do you, or does anyone in your household, work in any of the following industries?\",\n            \"name\": \"Industry\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"8a88ffe7-35d4-419c-a308-af573c977425\",\n            \"english_text\": \"Approximately what is the annual revenue for your organization?\",\n            \"localized_text\": \"Approximately what is the annual revenue for your organization?\",\n            \"name\": \"Company Revenue\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"5b5999e2-0252-4bd8-a6d7-209e29a7d72c\",\n            \"english_text\": \"Do you drive a car regularly?\",\n            \"localized_text\": \"Do you drive a car regularly?\",\n            \"name\": \"Car Use\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"099ed8b3-4402-4977-9361-f6e94848f019\",\n            \"english_text\": \"Are you the primary decision maker in your household for automotive-related purchases?\",\n            \"localized_text\": \"Are you the primary decision maker in your household for automotive-related purchases?\",\n            \"name\": \"Auto Decision Maker\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"5f1fcdc9-ffb5-4d86-a6d4-eeeba9c0ce86\",\n            \"english_text\": \"If you own/lease a car(s), which brand(s) are they?\",\n            \"localized_text\": \"If you own/lease a car(s), which brand(s) are they?\",\n            \"name\": \"Auto Brands\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"37a20e77-ba87-44d1-b8fe-8d1c216ff19f\",\n            \"english_text\": \"How would you describe the vehicle(s) you own/lease?\",\n            \"localized_text\": \"How would you describe the vehicle(s) you own/lease?\",\n            \"name\": \"Auto Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"c4b36374-2e00-45e7-81d1-782a68b98350\",\n            \"english_text\": \"What year was your main vehicle (owned or leased) manufactured?\",\n            \"localized_text\": \"What year was your main vehicle (owned or leased) manufactured?\",\n            \"name\": \"Auto Manufacture Date\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"5e6b7eac-5cd0-4821-891b-9ec9e033828b\",\n            \"english_text\": \"In which year did you purchase/lease your main vehicle?\",\n            \"localized_text\": \"In which year did you purchase/lease your main vehicle?\",\n            \"name\": \"Auto Purchase Date\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"8b847620-632a-4d24-96e1-147cd2382210\",\n            \"english_text\": \"If you own/lease a vehicle(s) did you buy them new or used?\",\n            \"localized_text\": \"If you own/lease a vehicle(s) did you buy them new or used?\",\n            \"name\": \"Auto Purchase Type\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"40ddecb2-6828-4ea8-a381-6785280f72b2\",\n            \"english_text\": \"Do you own a motorcycle?\",\n            \"localized_text\": \"Do you own a motorcycle?\",\n            \"name\": \"Motorcycle Ownership\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"cdf2a532-531f-4e46-a236-d2748c4cac2b\",\n            \"english_text\": \"Which fast food (quick service) restaurants have you visited ever?\",\n            \"localized_text\": \"Which fast food (quick service) restaurants have you visited ever?\",\n            \"name\": \"Fast Food Visit\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"3300c5a0-d7f9-4461-b5ca-af9c5fa1209e\",\n            \"english_text\": \"Which, if any, of these drinks have you consumed in the past four weeks?\",\n            \"localized_text\": \"Which, if any, of these drinks have you consumed in the past four weeks?\",\n            \"name\": \"Beverages Past 4 Weeks\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"09b0ea23-22bb-4f07-b0ec-c0c7191b3df1\",\n            \"english_text\": \"Which of the following beverages do you regularly consume?\",\n            \"localized_text\": \"Which of the following beverages do you regularly consume?\",\n            \"name\": \"Beverages\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"82fdddf7-f728-484b-83c4-5b849b047280\",\n            \"english_text\": \"On average, how many alcoholic drinks do you consume in a week?\",\n            \"localized_text\": \"On average, how many alcoholic drinks do you consume in a week?\",\n            \"name\": \"Alcohol Frequency\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"927d5a30-0b42-4653-b6fe-366974d0ef37\",\n            \"english_text\": \"What are your hobbies and interests?\",\n            \"localized_text\": \"What are your hobbies and interests?\",\n            \"name\": \"Hobbies and Interests\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"a49d3280-8ceb-439e-b466-8f8799950d98\",\n            \"english_text\": \"How often do you go to the movie theater?\",\n            \"localized_text\": \"How often do you go to the movie theater?\",\n            \"name\": \"Movie Frequency\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"44599447-7005-4dba-891a-38ff7b89c598\",\n            \"english_text\": \"What kinds of movies do you watch when you go to the movie theater?\",\n            \"localized_text\": \"What kinds of movies do you watch when you go to the movie theater?\",\n            \"name\": \"Movie Genre\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"9011bd9b-8572-48c3-8c0f-aa476d39fa6a\",\n            \"english_text\": \"How frequently do you rent or download movies for home viewing (on average)?\",\n            \"localized_text\": \"How frequently do you rent or download movies for home viewing (on average)?\",\n            \"name\": \"Movie Home Watching\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"dec2e1a7-5921-4c8c-ac02-2ab8a4d6c09d\",\n            \"english_text\": \"How many DVDs/Blu-rays do you purchase on a monthly basis (on average)?\",\n            \"localized_text\": \"How many DVDs/Blu-rays do you purchase on a monthly basis (on average)?\",\n            \"name\": \"DVD Purchase\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"702de9a7-0f14-450c-bf28-dc0128e57e2d\",\n            \"english_text\": \"How many hours a week do you exercise/participate in sports?\",\n            \"localized_text\": \"How many hours a week do you exercise/participate in sports?\",\n            \"name\": \"Exercise Hours\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"bd3fd4e1-0414-4fab-b0dd-c1a2a4de6394\",\n            \"english_text\": \"What sports do you regularly participate in?\",\n            \"localized_text\": \"What sports do you regularly participate in?\",\n            \"name\": \"Sports Participation\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"aed09d66-2f8a-4f6c-ac2e-f10dde3aed5e\",\n            \"english_text\": \"What kind of gambling do you participate in?\",\n            \"localized_text\": \"What kind of gambling do you participate in?\",\n            \"name\": \"Gambling\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"7681445b-d742-432e-8c54-6d1e63569dd8\",\n            \"english_text\": \"Which of the following electronic products do you own?\",\n            \"localized_text\": \"Which of the following electronic products do you own?\",\n            \"name\": \"Electronics Owned\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"55cf53fe-3e87-426b-a175-c304250df0a3\",\n            \"english_text\": \"Would you consider yourself to be an early adopter of new technology (the first to buy new gadgets/electronics/etc)?\",\n            \"localized_text\": \"Would you consider yourself to be an early adopter of new technology (the first to buy new gadgets/electronics/etc)?\",\n            \"name\": \"Early Adopter\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"6f48e7e4-6d90-4df0-8407-19b20899f499\",\n            \"english_text\": \"Which of these is your carrier for your primary mobile / cell phone?\",\n            \"localized_text\": \"Which of these is your carrier for your primary mobile / cell phone?\",\n            \"name\": \"Cell Carrier\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"0c519224-0de2-43dc-89bc-2abd444dea0a\",\n            \"english_text\": \"What type of mobile phone plan do you have?\",\n            \"localized_text\": \"What type of mobile phone plan do you have?\",\n            \"name\": \"Cell Plan\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"d9036278-341a-4a30-8c0e-20c4b564f6f5\",\n            \"english_text\": \"Do you use a smart phone?\",\n            \"localized_text\": \"Do you use a smart phone?\",\n            \"name\": \"Smartphone Usage\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"1a17549f-31cb-43fe-9355-f0f20e3a9921\",\n            \"english_text\": \"What kind of internet connection(s) do you use at home?\",\n            \"localized_text\": \"What kind of internet connection(s) do you use at home?\",\n            \"name\": \"Internet Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"acf4fc45-51a4-4970-ba81-0769dbaf2049\",\n            \"english_text\": \"Do you have access to download movies through gaming console, digital receiver, Blu-ray/DVD player or similar devices?\",\n            \"localized_text\": \"Do you have access to download movies through gaming console, digital receiver, Blu-ray/DVD player or similar devices?\",\n            \"name\": \"Movie Download\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"a2644a62-b375-4a69-ba2d-9b258da48504\",\n            \"english_text\": \"Which gaming platforms do you regularly use?\",\n            \"localized_text\": \"Which gaming platforms do you regularly use?\",\n            \"name\": \"Gaming Platforms\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"94851d4e-cc73-4318-8ba2-169dcdf8fa4c\",\n            \"english_text\": \"What kind(s) of video/computer games do you play?\",\n            \"localized_text\": \"What kind(s) of video/computer games do you play?\",\n            \"name\": \"Gaming Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"6bc789f2-023f-406a-99d8-9b93da450d22\",\n            \"english_text\": \"How many hours per week do you spend playing video/computer games?\",\n            \"localized_text\": \"How many hours per week do you spend playing video/computer games?\",\n            \"name\": \"Gaming Hours\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"c1fbc954-d12c-4ed6-9820-d6066318008b\",\n            \"english_text\": \"How do you play video/computer games?\",\n            \"localized_text\": \"How do you play video/computer games?\",\n            \"name\": \"Gaming Partners\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"ce8b4088-cf62-4167-a0a4-cd4f16ee2c4b\",\n            \"english_text\": \"Which of the following devices do you use to play games?\",\n            \"localized_text\": \"Which of the following devices do you use to play games?\",\n            \"name\": \"Gaming Device\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"dcd8727c-87f7-459d-a9b6-a36719c40446\",\n            \"english_text\": \"On average, how many computer/video games a month do you purchase?\",\n            \"localized_text\": \"On average, how many computer/video games a month do you purchase?\",\n            \"name\": \"Gaming Purchase\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"c666581b-8bea-4cdf-b0b1-288f97d8216a\",\n            \"english_text\": \"Do you play video games with others online? (e.g. Xbox Live or World of Warcraft)?\",\n            \"localized_text\": \"Do you play video games with others online? (e.g. Xbox Live or World of Warcraft)?\",\n            \"name\": \"Gaming Online\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"32e8a5ce-8c5b-46de-a66c-09bbc27df2dc\",\n            \"english_text\": \"On average, how many hours of television do you watch per week?\",\n            \"localized_text\": \"On average, how many hours of television do you watch per week?\",\n            \"name\": \"Television Frequency\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"3fb9eb5d-3878-45c4-b70d-8529524a80b1\",\n            \"english_text\": \"On average, how many hours of radio do you listen to per week?\",\n            \"localized_text\": \"On average, how many hours of radio do you listen to per week?\",\n            \"name\": \"Radio Frequency\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"f6ef163c-1851-4b05-8358-e7aa2138de62\",\n            \"english_text\": \"Which types of publications do you read?\",\n            \"localized_text\": \"Which types of publications do you read?\",\n            \"name\": \"Publications Read\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"1376263a-6781-44c9-a0ef-a23000dcb5c4\",\n            \"english_text\": \"For which purposes do you travel by plane?\",\n            \"localized_text\": \"For which purposes do you travel by plane?\",\n            \"name\": \"Flight Purpose\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"94dee652-9dd7-4231-aae1-bb9837a434d7\",\n            \"english_text\": \"When you fly, which types of flights do you take?\",\n            \"localized_text\": \"When you fly, which types of flights do you take?\",\n            \"name\": \"Flight Destination\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"ae4e32d3-e777-48dc-884f-59b8cc5aacd4\",\n            \"english_text\": \"Which  domestic airlines have you flown with during the last 12 months?\",\n            \"localized_text\": \"Which  domestic airlines have you flown with during the last 12 months?\",\n            \"name\": \"Domestic Airlines\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"667d9dac-cea3-4cb7-a635-60f561cb2728\",\n            \"english_text\": \"Which international airlines have you flown with during the last 12 months?\",\n            \"localized_text\": \"Which international airlines have you flown with during the last 12 months?\",\n            \"name\": \"International Airlines\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"5936fd1f-aa2d-4618-93d3-6f5ed48ba132\",\n            \"english_text\": \"Which of the following countries/regions have you travelled to in the last 12 months?\",\n            \"localized_text\": \"Which of the following countries/regions have you travelled to in the last 12 months?\",\n            \"name\": \"Countries Visited\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"e47c9782-8e8f-400b-b5f4-3d4a0e2aba09\",\n            \"english_text\": \"Of these hotel chains, which one(s) have you stayed at during the last 12 months?\",\n            \"localized_text\": \"Of these hotel chains, which one(s) have you stayed at during the last 12 months?\",\n            \"name\": \"Hotel Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"0901aa69-c2d3-4eb4-9117-bfadb5c724c9\",\n            \"english_text\": \"Do you smoke?\",\n            \"localized_text\": \"Do you smoke?\",\n            \"name\": \"Smoking\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"420e58cc-7490-4aa3-9802-a0fb7bee5368\",\n            \"english_text\": \"On average, how many cigarettes do you smoke in a day?\",\n            \"localized_text\": \"On average, how many cigarettes do you smoke in a day?\",\n            \"name\": \"Cigarette Frequency\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"2342945e-5212-40aa-9e2d-333b6228feca\",\n            \"english_text\": \"Have you tried to quit smoking using any of these products/methods?\",\n            \"localized_text\": \"Have you tried to quit smoking using any of these products/methods?\",\n            \"name\": \"Smoking Quit Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"e29fb16b-24a0-4bb2-9184-fb055fea9f87\",\n            \"english_text\": \"If you stated that you have been diagnosed with cancer, can you define the type of cancer?\",\n            \"localized_text\": \"If you stated that you have been diagnosed with cancer, can you define the type of cancer?\",\n            \"name\": \"Cancer Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"2b9871cb-ef72-469f-b9ca-22f66e408281\",\n            \"english_text\": \"If you stated that you have been diagnosed with diabetes, can you define the type of diabetes?\",\n            \"localized_text\": \"If you stated that you have been diagnosed with diabetes, can you define the type of diabetes?\",\n            \"name\": \"Diabetes Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"015e6082-0da0-45d1-9b63-e579757f91fe\",\n            \"english_text\": \"If you stated that you have been diagnosed with hepatitis, can you define the type of hepatitis?\",\n            \"localized_text\": \"If you stated that you have been diagnosed with hepatitis, can you define the type of hepatitis?\",\n            \"name\": \"Hepatitis Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"a6eb746a-cdb1-48a1-b582-6eab50bd51dc\",\n            \"english_text\": \"Do you use glasses or contact lenses?\",\n            \"localized_text\": \"Do you use glasses or contact lenses?\",\n            \"name\": \"Eyewear\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"6a4257a4-bdd0-4848-bfb9-db49e7eb0dc1\",\n            \"english_text\": \"Do you use a hearing aid?\",\n            \"localized_text\": \"Do you use a hearing aid?\",\n            \"name\": \"Hearing Aid\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"f6dcbddf-448c-47db-a352-5464378f0355\",\n            \"english_text\": \"Please indicate the age and gender of your child or children:\",\n            \"localized_text\": \"Please indicate the age and gender of your child or children:\",\n            \"name\": \"Age and Gender of Child\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"07d9c8db-e8fc-416a-8d7c-f21766c9f104\",\n            \"english_text\": \"What is your current employment status?\",\n            \"localized_text\": \"What is your current employment status?\",\n            \"name\": \"Employment Status\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"c7c8550f-8593-4fe3-82ef-d7ff9566cfa7\",\n            \"english_text\": \"Please choose which departments/products you have influence or decision making authority over regarding spending/purchasing.\",\n            \"localized_text\": \"Please choose which departments/products you have influence or decision making authority over regarding spending/purchasing.\",\n            \"name\": \"B2B Decision Maker\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"c2d3f00f-bb73-4c72-8160-180ca3f08dee\",\n            \"english_text\": \"Please select the model of the car you own.\",\n            \"localized_text\": \"Please select the model of the car you own.\",\n            \"name\": \"Car Model\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"96d39248-c296-447a-86e4-c7a2ac634dbd\",\n            \"english_text\": \"Which of the following best describes the industry that you, personally, work in?\",\n            \"localized_text\": \"Which of the following best describes the industry that you, personally, work in?\",\n            \"name\": \"Industry Personal\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"bd6dbf16-a967-4003-95b2-b29cea4aaf18\",\n            \"english_text\": \"How often do you go online on a computer (desktop, laptop, netbook, or tablet)? This includes access to the Internet from home, work, or elsewhere (including weekdays and weekends).\",\n            \"localized_text\": \"How often do you go online on a computer (desktop, laptop, netbook, or tablet)? This includes access to the Internet from home, work, or elsewhere (including weekdays and weekends).\",\n            \"name\": \"Internet Frequency\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"47224e37-96a6-45b0-8eb0-88b5dd3c1172\",\n            \"english_text\": \"Please choose the options that best describe your household:\",\n            \"localized_text\": \"Please choose the options that best describe your household:\",\n            \"name\": \"Parental Status\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"1ee32ef2-e41e-4694-aea3-e3352ff04ffc\",\n            \"english_text\": \"What is your job title, level or responsibility?\",\n            \"localized_text\": \"What is your job title, level or responsibility?\",\n            \"name\": \"Job Title\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"e29e584c-a98c-4b28-a063-174ad9278a22\",\n            \"english_text\": \"Approximately how many employees work at your organization (all locations)?\",\n            \"localized_text\": \"Approximately how many employees work at your organization (all locations)?\",\n            \"name\": \"Number of Employees\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"ab2f20b3-188f-4cf9-9071-c375a7583a13\",\n            \"english_text\": \"Which of the following religions do you most closely identify with?\",\n            \"localized_text\": \"Which of the following religions do you most closely identify with?\",\n            \"name\": \"Religion\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"a4ad33aa-876c-461b-8060-b1471b63042c\",\n            \"english_text\": \"Which of the following appliances do you own?\",\n            \"localized_text\": \"Which of the following appliances do you own?\",\n            \"name\": \"Appliances Owned\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"a0f868ed-bce8-4b6e-b0fb-624dfec0b12b\",\n            \"english_text\": \"Which of the following appliances have you purchased in the last 6 months, or intend to buy in the next 6 months?\",\n            \"localized_text\": \"Which of the following appliances have you purchased in the last 6 months, or intend to buy in the next 6 months?\",\n            \"name\": \"Appliance Purchase Intention\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"e496a2e7-f262-4d72-ac35-9c83f98c9b8d\",\n            \"english_text\": \"Which of the following financial products do you own?\",\n            \"localized_text\": \"Which of the following financial products do you own?\",\n            \"name\": \"Financial Products\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"b0cc2b3f-492c-4bd4-8e1b-a9594bd1f738\",\n            \"english_text\": \"Which of the following groceries have you purchased in the last four weeks?\",\n            \"localized_text\": \"Which of the following groceries have you purchased in the last four weeks?\",\n            \"name\": \"Grocery Purchasing Past 4 Weeks\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"c49e80a8-c16f-42c7-8f2c-5390682709b5\",\n            \"english_text\": \"Which of the following symptoms have you experienced in the last 6 months?\",\n            \"localized_text\": \"Which of the following symptoms have you experienced in the last 6 months?\",\n            \"name\": \"Past 6 Month Symptoms Experienced\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"8bf1dcb0-94aa-4a37-ab8c-7fd1924c7ee6\",\n            \"english_text\": \"Which of the following products have you purchased in the last 2 years, or intend to buy in the next 12 months?\",\n            \"localized_text\": \"Which of the following products have you purchased in the last 2 years, or intend to buy in the next 12 months?\",\n            \"name\": \"Big Purchases\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"0ac1c228-a1da-4a3a-bee0-77dd91c0eb1f\",\n            \"english_text\": \"Do you possess a driver's license?\",\n            \"localized_text\": \"Do you possess a driver's license?\",\n            \"name\": \"Drivers License\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"588f85ae-2e51-4ed7-8392-264b6e6533af\",\n            \"english_text\": \"Which of the following best describes what role you play when making traveling decisions for you and your household?\",\n            \"localized_text\": \"Which of the following best describes what role you play when making traveling decisions for you and your household?\",\n            \"name\": \"Travel Decision Maker\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"acc3d566-8562-4823-a6d4-294bf7524487\",\n            \"english_text\": \"Are you the primary decision maker in your household for grocery purchases?\",\n            \"localized_text\": \"Are you the primary decision maker in your household for grocery purchases?\",\n            \"name\": \"Grocery Decision Maker\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"caf090cb-ede2-4739-8e9e-344abbe7f40c\",\n            \"english_text\": \"In politics today, do you consider yourself a Democrat, Republican, or Independent?\",\n            \"localized_text\": \"In politics today, do you consider yourself a Democrat, Republican, or Independent?\",\n            \"name\": \"Political Party\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"57bb43b9-ab27-41a9-aea2-0653d55f7016\",\n            \"english_text\": \"Would you say that in your household you speak…? / ¿Diría que en su hogar usted habla…?\",\n            \"localized_text\": \"Would you say that in your household you speak…? / ¿Diría que en su hogar usted habla…?\",\n            \"name\": \"Hispanic Acculturation\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"355bae59-9ddf-479a-ba40-ec59c2dfcbe9\",\n            \"english_text\": \"Do you have a webcam and are you willing to use it for an online research opportunity?\",\n            \"localized_text\": \"Do you have a webcam and are you willing to use it for an online research opportunity?\",\n            \"name\": \"Webcam\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"18de6bac-c415-44d8-b3f2-1e8b029563b0\",\n            \"english_text\": \"What is your current annual household income before taxes?\",\n            \"localized_text\": \"What is your current annual household income before taxes?\",\n            \"name\": \"Annual Household Income\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"43f50e3a-e025-4acb-b7fa-3f900cf323c5\",\n            \"english_text\": \"What are your household investable assets (not including homeownership)?\",\n            \"localized_text\": \"What are your household investable assets (not including homeownership)?\",\n            \"name\": \"Household Investable Assets\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"d6375cb8-f0fe-4a9c-98f6-7f69bf275cbe\",\n            \"english_text\": \"In your household, which of the following things are you responsible or partially responsible for making decisions about?\",\n            \"localized_text\": \"In your household, which of the following things are you responsible or partially responsible for making decisions about?\",\n            \"name\": \"Household Responsibility\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"d0dbb5a7-a110-4c1b-a9fa-14aa0c34d789\",\n            \"english_text\": \"Which of the following is your primary home internet service provider?\",\n            \"localized_text\": \"Which of the following is your primary home internet service provider?\",\n            \"name\": \"Home Internet Provider\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"073f7fb2-0e7e-454f-a673-6d964f475f6f\",\n            \"english_text\": \"Which of the following social media platforms do you use or actively participate in?\",\n            \"localized_text\": \"Which of the following social media platforms do you use or actively participate in?\",\n            \"name\": \"Social Media\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"3b384739-a692-41f6-bf12-7a95db8e0744\",\n            \"english_text\": \"About how often do you access social media services (Facebook, Twitter, Instagram, Pinterest,  YouTube, etc.)?\",\n            \"localized_text\": \"About how often do you access social media services (Facebook, Twitter, Instagram, Pinterest,  YouTube, etc.)?\",\n            \"name\": \"Social Media Usage\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"eb39eb0e-9de1-48ef-aeff-8902ae23957b\",\n            \"english_text\": \"In which type of accommodation have you stayed in the past year?\",\n            \"localized_text\": \"In which type of accommodation have you stayed in the past year?\",\n            \"name\": \"Accommodate Type\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"81ad5a2d-ac5b-42bd-b1af-6728e7da4e48\",\n            \"english_text\": \"How often do you fly for business?\",\n            \"localized_text\": \"How often do you fly for business?\",\n            \"name\": \"Business Flights\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"69649041-0ab3-478d-8df8-6ce3eceb4a95\",\n            \"english_text\": \"When do you estimate that you will purchase/lease your next car?\",\n            \"localized_text\": \"When do you estimate that you will purchase/lease your next car?\",\n            \"name\": \"Next Car Purchase\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"4cdaa11f-623f-4a82-922c-c060017a1d30\",\n            \"english_text\": \"On average, how often do you eat fast food?\",\n            \"localized_text\": \"On average, how often do you eat fast food?\",\n            \"name\": \"Fast Food Frequency\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"4f2cd2f3-bf6f-4039-b9cc-0b611c0ae12b\",\n            \"english_text\": \"What kinds of savings and/or investment accounts do you have?\",\n            \"localized_text\": \"What kinds of savings and/or investment accounts do you have?\",\n            \"name\": \"Household Investment Account Types\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"8e0fa30f-caf4-4fec-b740-166e398570bc\",\n            \"english_text\": \"Do you belong to any of the following airline loyalty programs?\",\n            \"localized_text\": \"Do you belong to any of the following airline loyalty programs?\",\n            \"name\": \"Airline Loyalty\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"aaaa5682-e88c-40e8-ba31-e55ab20f8dec\",\n            \"english_text\": \"Do you belong to any of the following hotel loyalty programs?\",\n            \"localized_text\": \"Do you belong to any of the following hotel loyalty programs?\",\n            \"name\": \"Hotel Loyalty\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"b0b510e7-1800-4072-b6e9-89359b8a663d\",\n            \"english_text\": \"Which of the following television providers do you subscribe to at your primary residence?\",\n            \"localized_text\": \"Which of the following television providers do you subscribe to at your primary residence?\",\n            \"name\": \"TV Providers\",\n            \"question_type\": \"single_select\"\n        },\n        {\n            \"id\": \"1c888990-25d1-475c-9632-9d894e26a980\",\n            \"english_text\": \"In the last year, have you engaged in any of the following job-related activities?\",\n            \"localized_text\": \"In the last year, have you engaged in any of the following job-related activities?\",\n            \"name\": \"Job Search\",\n            \"question_type\": \"multi_select\"\n        },\n        {\n            \"id\": \"73e02c32-9d51-46af-966a-e1a903b4173a\",\n            \"english_text\": \"What type of smartphone do you primarily use?\",\n            \"localized_text\": \"What type of smartphone do you primarily use?\",\n            \"name\": \"Smartphone Type\",\n            \"question_type\": \"single_select\"\n        }\n    ]\n}","responseCode":{"code":200,"name":"OK"},"requestObject":{"data":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"country_id","value":"5a8296a0-0ab0-4e75-be00-71a6371b519b","equals":true,"description":"ID for United States","enabled":true},{"key":"mapping_partner_id","value":"8f25693a-5b18-4c24-b6ad-5178492e5c2d","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/questions?country_id=5a8296a0-0ab0-4e75-be00-71a6371b519b&mapping_partner_id=8f25693a-5b18-4c24-b6ad-5178492e5c2d&enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"976f782bb261b920ceace596d4e7d39e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=TPXi3cpTqU2njwstHFZC9U0h8eoO3L7KTY1DOhbNXixNTtLpyn2GV%2FKprtwuCr0teSv0b18YXJgxGu6hS%2B5Cvw%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=8BmrjkxPkL4C4LyRd8GnZ8Oyjq5VPCgIXXeE%2FlkByxgfG31Z9T0KqhZ87Lo4WXJPQ1%2FwH2mH2cUaxzS7kFELqwBzuAmwjGlRR6kGUbd4MnyDgEISTPY77psBT6c%2FhuyQfPUB2gsCiPA%2BcpI50Rs%3D--mTF3JBaALijHu6A5--FHUBJdxZto422p050WuZ5Q%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"80a65ded-3008-43e6-8de6-692f8c35ca07"},{"key":"X-Runtime","value":"0.190761"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"d895051c-d3e7-4865-9ee2-210e2a4a3bcf","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"da800c1d-d28d-4704-9d2e-06c787265762","name":"Mapping Partners Index","url":"{{host}}/api/external/v1/mapping_partners?enc={{request_hash}}","description":"**Path:** `/api/external/v1/mapping_partners`\n\n**Description:** Retrieves a list of active mapping partners.","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":null,"responses":[{"id":"b6fa8929-8de5-4dc2-b0f6-97c447ad8ce9","name":"Full Example Request/Response","status":null,"mime":null,"language":"json","text":"{\n    \"data\": [\n        {\n            \"id\": \"8f25693a-5b18-4c24-b6ad-5178492e5c2d\",\n            \"name\": \"Lucid\"\n        },\n        {\n            \"id\": \"a9b1cd5d-615b-46fe-8c3e-4a5b7afcde74\",\n            \"name\": \"TheoremReach\"\n        }\n    ]\n}","responseCode":{"code":200,"name":"OK"},"requestObject":{"data":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/mapping_partners?enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3b5cca411e43682c2108e78f804ed9ca\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=FRrQGD%2BIIOxlvuDIZTEyq%2BkTeAQwzlqAFb4rCB1%2BibUUoeAsP6YP9jCYRTlXbc1z3Rl9gWEKuNJpKYaTQF2VJg%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=Xd0xd4MBaa0Jn%2BLg%2BeBhgnGhA0yK2vmuOt3Xq4B2B8P21TRgk4rOQYTnseFkDNOJ%2BOqifFKlvrqs%2BiaKeLf4a22levKUxCUjC8PKWQOFDLnze5ty1v2VtGMW5OsumGDaiAi82t0zMVbJFPOA09g%3D--B%2Blsuo5ZEPUcVD8o--tvyc9oFXpJWMqXM8GcmUpg%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"8767283d-7952-4b96-8d02-ef8cee4b9ab8"},{"key":"X-Runtime","value":"0.015018"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"da800c1d-d28d-4704-9d2e-06c787265762","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}},{"id":"e21f2899-e362-4a7d-8c2f-00eab174e6fe","name":"Answers Index","url":"{{host}}/api/external/v1/questions/28d3b88e-03e5-4d4d-89b2-710728320100/answers?country_id=5a8296a0-0ab0-4e75-be00-71a6371b519b&mapping_partner_id=ceed3b0f-650a-4e00-83b4-6987eb47b37b&enc={{request_hash}}","description":"**Path:** `/api/external/v1/questions/{{question_id}}/answers`\n\n**Description:** Retrieves a list of answers scoped to the question, country and mapping provider.\n\n\n**Parameters**\n\n* *question_id* - required\n* *country_id* - required\n* *mapping_partner_id* - optional (default TheoremReach)","data":null,"dataOptions":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"country_id","value":"5a8296a0-0ab0-4e75-be00-71a6371b519b","equals":true,"description":"ID for United States","enabled":true},{"key":"mapping_partner_id","value":"ceed3b0f-650a-4e00-83b4-6987eb47b37b","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"auth":null,"events":[],"folder":null,"responses":[{"id":"2c7b5e3e-4b65-4a43-a018-73d894b94fa6","name":"\"Industry Type\" Example Request/Response","status":null,"mime":null,"language":"json","text":"{\n    \"data\": [\n        {\n            \"id\": \"a1f767e3-5209-45ea-978e-dc7fef9c0a9c\",\n            \"localized_text\": \"Accounting\",\n            \"english_text\": \"Accounting\"\n        },\n        {\n            \"id\": \"3ceacd55-0de0-41dd-a24f-a2f0b03a4fd5\",\n            \"localized_text\": \"Advertising\",\n            \"english_text\": \"Advertising\"\n        },\n        {\n            \"id\": \"eee7780e-c8eb-4588-a9d6-9172c4e73443\",\n            \"localized_text\": \"Agriculture/Fishing\",\n            \"english_text\": \"Agriculture/Fishing\"\n        },\n        {\n            \"id\": \"5b0c958e-94c9-4958-9366-82eac5929968\",\n            \"localized_text\": \"Architecture\",\n            \"english_text\": \"Architecture\"\n        },\n        {\n            \"id\": \"2167bac5-ee2f-4345-a1e0-c22d0764d705\",\n            \"localized_text\": \"Automotive\",\n            \"english_text\": \"Automotive\"\n        },\n        {\n            \"id\": \"bad3292f-8a4b-4513-a2bd-99a372b79e7b\",\n            \"localized_text\": \"Aviation\",\n            \"english_text\": \"Aviation\"\n        },\n        {\n            \"id\": \"76300e88-89bc-445e-b50c-d7af61994817\",\n            \"localized_text\": \"Banking/Financial\",\n            \"english_text\": \"Banking/Financial\"\n        },\n        {\n            \"id\": \"00c01c31-5718-4456-9fea-2c7fa744d091\",\n            \"localized_text\": \"Bio-Tech\",\n            \"english_text\": \"Bio-Tech\"\n        },\n        {\n            \"id\": \"ecbac6da-c7af-4f0a-86bc-67c45c14ff20\",\n            \"localized_text\": \"Brokerage\",\n            \"english_text\": \"Brokerage\"\n        },\n        {\n            \"id\": \"ee896d43-9587-4a59-b1e6-c7f2af810462\",\n            \"localized_text\": \"Carpenting/Electrical installations/VVS\",\n            \"english_text\": \"Carpenting/Electrical installations/VVS\"\n        },\n        {\n            \"id\": \"6ed920cb-7b9a-4d5d-8e1c-3f95cd0c4522\",\n            \"localized_text\": \"Chemicals/Plastics/Rubber\",\n            \"english_text\": \"Chemicals/Plastics/Rubber\"\n        },\n        {\n            \"id\": \"6d73192a-0bd8-4b96-86c6-980843f3cde1\",\n            \"localized_text\": \"Communications/Information\",\n            \"english_text\": \"Communications/Information\"\n        },\n        {\n            \"id\": \"6c5bdd8a-e76b-4063-8222-896b4ec414a2\",\n            \"localized_text\": \"Computer Hardware\",\n            \"english_text\": \"Computer Hardware\"\n        },\n        {\n            \"id\": \"25d68caf-1b6e-48b2-aefd-f9de80473080\",\n            \"localized_text\": \"Computer Reseller (software/hardware)\",\n            \"english_text\": \"Computer Reseller (software/hardware)\"\n        },\n        {\n            \"id\": \"43d3ac61-defa-4213-947c-10b7ff07836e\",\n            \"localized_text\": \"Computer Software\",\n            \"english_text\": \"Computer Software\"\n        },\n        {\n            \"id\": \"15430d45-1392-43d9-a7f3-3fb75d1eed33\",\n            \"localized_text\": \"Construction\",\n            \"english_text\": \"Construction\"\n        },\n        {\n            \"id\": \"2e09e9d6-c031-4ac5-a005-f3fb177deec6\",\n            \"localized_text\": \"Consulting\",\n            \"english_text\": \"Consulting\"\n        },\n        {\n            \"id\": \"a4adc3cd-aa7c-48ca-ac28-51bf43a52497\",\n            \"localized_text\": \"Consumer Electronics\",\n            \"english_text\": \"Consumer Electronics\"\n        },\n        {\n            \"id\": \"bd54a667-647f-4975-a179-85707215e74f\",\n            \"localized_text\": \"Consumer Packaged Goods\",\n            \"english_text\": \"Consumer Packaged Goods\"\n        },\n        {\n            \"id\": \"da0d6816-2432-49c9-806e-464c90a091fe\",\n            \"localized_text\": \"Education\",\n            \"english_text\": \"Education\"\n        },\n        {\n            \"id\": \"02c6edbf-b682-4647-8d81-d505efaadbc4\",\n            \"localized_text\": \"Energy/Utilities/Oil and Gas\",\n            \"english_text\": \"Energy/Utilities/Oil and Gas\"\n        },\n        {\n            \"id\": \"c053101e-c0d6-4c5e-9971-d7529b128fa3\",\n            \"localized_text\": \"Engineering\",\n            \"english_text\": \"Engineering\"\n        },\n        {\n            \"id\": \"78e14ed9-ef5a-4c66-b1e9-5c316fbf50bf\",\n            \"localized_text\": \"Environmental Services\",\n            \"english_text\": \"Environmental Services\"\n        },\n        {\n            \"id\": \"ad9efc3a-3a1c-4394-8e5c-eb93ae654967\",\n            \"localized_text\": \"Fashion/Apparel\",\n            \"english_text\": \"Fashion/Apparel\"\n        },\n        {\n            \"id\": \"645c1b3b-9079-43a0-a51b-8f50bc215374\",\n            \"localized_text\": \"Food/Beverage\",\n            \"english_text\": \"Food/Beverage\"\n        },\n        {\n            \"id\": \"3f41a880-2fb5-402f-a623-74ab35478670\",\n            \"localized_text\": \"Government/Public Sector\",\n            \"english_text\": \"Government/Public Sector\"\n        },\n        {\n            \"id\": \"760db573-9df9-4484-acbe-02fa46ea7536\",\n            \"localized_text\": \"Healthcare\",\n            \"english_text\": \"Healthcare\"\n        },\n        {\n            \"id\": \"952b1e3d-8448-479e-b0fa-f4cb17c5a4f9\",\n            \"localized_text\": \"Hospitality/Tourism\",\n            \"english_text\": \"Hospitality/Tourism\"\n        },\n        {\n            \"id\": \"baf3cef7-4643-464e-9530-037fd2a8ef21\",\n            \"localized_text\": \"Human Resources\",\n            \"english_text\": \"Human Resources\"\n        },\n        {\n            \"id\": \"f3ed9f26-e3ee-44db-93b6-4fcc9d38a673\",\n            \"localized_text\": \"Information Technology/IT\",\n            \"english_text\": \"Information Technology/IT\"\n        },\n        {\n            \"id\": \"90864d65-7446-4bbc-826e-65c805958713\",\n            \"localized_text\": \"Insurance\",\n            \"english_text\": \"Insurance\"\n        },\n        {\n            \"id\": \"57909f69-9426-4cbf-a747-b06f01e46346\",\n            \"localized_text\": \"Internet\",\n            \"english_text\": \"Internet\"\n        },\n        {\n            \"id\": \"3026287b-b993-40d6-8293-d353cb6e0c73\",\n            \"localized_text\": \"Legal/Law\",\n            \"english_text\": \"Legal/Law\"\n        },\n        {\n            \"id\": \"01bc1319-29cd-4196-b9fc-b616adec205b\",\n            \"localized_text\": \"Manufacturing\",\n            \"english_text\": \"Manufacturing\"\n        },\n        {\n            \"id\": \"9b06773a-894c-487d-912d-0b97c733031c\",\n            \"localized_text\": \"Market Research\",\n            \"english_text\": \"Market Research\"\n        },\n        {\n            \"id\": \"d941b70a-9495-4836-9bb4-3e6cf9cc49d4\",\n            \"localized_text\": \"Marketing/Sales\",\n            \"english_text\": \"Marketing/Sales\"\n        },\n        {\n            \"id\": \"f5782582-10b0-415f-a170-118d0ea0e592\",\n            \"localized_text\": \"Media/Entertainment\",\n            \"english_text\": \"Media/Entertainment\"\n        },\n        {\n            \"id\": \"00ec4fa8-5d3d-4d00-aa00-fafba5274b43\",\n            \"localized_text\": \"Military\",\n            \"english_text\": \"Military\"\n        },\n        {\n            \"id\": \"d7a2813d-3ffc-41ad-a232-6ee24cc03060\",\n            \"localized_text\": \"Non Profit/Social services\",\n            \"english_text\": \"Non Profit/Social services\"\n        },\n        {\n            \"id\": \"abfe6618-9e70-4b4f-a383-8440f2cd3c68\",\n            \"localized_text\": \"Personal Services\",\n            \"english_text\": \"Personal Services\"\n        },\n        {\n            \"id\": \"1ef80caa-49df-4bc2-bbb4-8ef95b2c468f\",\n            \"localized_text\": \"Pharmaceuticals\",\n            \"english_text\": \"Pharmaceuticals\"\n        },\n        {\n            \"id\": \"c57e4e63-4d69-4577-8530-4059cde83a4a\",\n            \"localized_text\": \"Printing Publishing\",\n            \"english_text\": \"Printing Publishing\"\n        },\n        {\n            \"id\": \"24fe90a6-c501-434f-b20a-37604473fb91\",\n            \"localized_text\": \"Public Relations\",\n            \"english_text\": \"Public Relations\"\n        },\n        {\n            \"id\": \"07c5ab48-c997-4275-b9ce-4aa0282ef70d\",\n            \"localized_text\": \"Real Estate/Property\",\n            \"english_text\": \"Real Estate/Property\"\n        },\n        {\n            \"id\": \"796c853a-5774-45ba-968c-38a5fa3d0109\",\n            \"localized_text\": \"Retail/Wholesale trade\",\n            \"english_text\": \"Retail/Wholesale trade\"\n        },\n        {\n            \"id\": \"2a15f658-dd60-48b5-842d-e29a3828ffe3\",\n            \"localized_text\": \"Security\",\n            \"english_text\": \"Security\"\n        },\n        {\n            \"id\": \"37bb6041-9caa-4a66-9a2e-4f614ec3f481\",\n            \"localized_text\": \"Shipping/Distribution\",\n            \"english_text\": \"Shipping/Distribution\"\n        },\n        {\n            \"id\": \"c9139df6-8fba-4c32-bfd5-539ed4c163b0\",\n            \"localized_text\": \"Telecommunications\",\n            \"english_text\": \"Telecommunications\"\n        },\n        {\n            \"id\": \"9541a7b1-a168-4c25-b441-46f4819f8914\",\n            \"localized_text\": \"Transportation\",\n            \"english_text\": \"Transportation\"\n        },\n        {\n            \"id\": \"81736446-8dd2-4f49-bf78-9b8b42ccf903\",\n            \"localized_text\": \"Other\",\n            \"english_text\": \"Other\"\n        },\n        {\n            \"id\": \"2cb3a8d3-3663-4151-9506-f4d0bdca9230\",\n            \"localized_text\": \"I don't work\",\n            \"english_text\": \"I don't work\"\n        }\n    ]\n}","responseCode":{"code":200,"name":"OK"},"requestObject":{"data":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"country_id","value":"5a8296a0-0ab0-4e75-be00-71a6371b519b","equals":true,"description":"ID for United States","enabled":true},{"key":"mapping_partner_id","value":"8f25693a-5b18-4c24-b6ad-5178492e5c2d","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/questions/ee5ac309-6674-4703-9be1-7f4e5cbbfe30/answers?country_id=5a8296a0-0ab0-4e75-be00-71a6371b519b&mapping_partner_id=8f25693a-5b18-4c24-b6ad-5178492e5c2d&enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"52926f1ddaac9f5c66d1c50b1fb75181\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=FJJ0I9kbaIOAxOvaK9EIhIWPICvTwOPbi6o0q02kiFsVKUQX2TVHmdXiTisZjfdcsYUlroIEAYn3PZkwEIeUyA%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=%2B9jqoPgSAuhwa9Ig5lQUYIvOc%2FVKSUbUeonYk2bZGYP5Q%2Fp%2FIv8sSd5asSw1KggYJEG0X1gh%2BxzIGQR8fvdZnFKU78kqb1wtTxP2adDlOuLc%2FdsAI6fUfIQLk21OYvOnyl5ui%2BpwMdAzyuiPIl4%3D--UJXUnHqgnp2T40Bp--Y%2FjvsxoSM9a%2FgYIX1iUO2w%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"40566e85-b21e-43c6-b53b-d4e4fe5f8049"},{"key":"X-Runtime","value":"0.276921"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"e21f2899-e362-4a7d-8c2f-00eab174e6fe","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"},{"id":"c3c54be1-8f23-4a72-8272-0aaa6df92cc3","name":"\"What is your age?\" Answers Example","status":null,"mime":null,"language":"json","text":"{\n    \"data\": [\n        {\n            \"id\": \"e2320cf7-f13d-4a47-a02b-7f9d0ae1f068\",\n            \"localized_text\": \"1\",\n            \"english_text\": \"1\"\n        },\n        {\n            \"id\": \"3bb217e9-bc53-4474-9ef1-d2f66b7bf476\",\n            \"localized_text\": \"2\",\n            \"english_text\": \"2\"\n        },\n        {\n            \"id\": \"899e1966-31be-4b4a-b094-b15231033d36\",\n            \"localized_text\": \"3\",\n            \"english_text\": \"3\"\n        },\n        {\n            \"id\": \"ea4611d8-15be-4b57-abd8-f88ab2a73ec5\",\n            \"localized_text\": \"4\",\n            \"english_text\": \"4\"\n        },\n        {\n            \"id\": \"7e04d3d6-3fe6-4871-a4eb-7e55e7b5cc45\",\n            \"localized_text\": \"5\",\n            \"english_text\": \"5\"\n        },\n        {\n            \"id\": \"32b29da2-12f8-4254-9901-be71973baaca\",\n            \"localized_text\": \"6\",\n            \"english_text\": \"6\"\n        },\n        {\n            \"id\": \"b8783a64-4b90-4f0d-9c86-3963753d30e9\",\n            \"localized_text\": \"7\",\n            \"english_text\": \"7\"\n        },\n        {\n            \"id\": \"23a4afa6-3a1c-4856-a27b-c6e0de177e28\",\n            \"localized_text\": \"8\",\n            \"english_text\": \"8\"\n        },\n        {\n            \"id\": \"17c39225-168d-47d2-bf4a-475c9ebed95a\",\n            \"localized_text\": \"9\",\n            \"english_text\": \"9\"\n        },\n        {\n            \"id\": \"a910d8b2-01ab-4539-a577-7c530bde6270\",\n            \"localized_text\": \"10\",\n            \"english_text\": \"10\"\n        },\n        {\n            \"id\": \"c6e2386d-d015-4a72-a655-c98d9c7b5814\",\n            \"localized_text\": \"11\",\n            \"english_text\": \"11\"\n        },\n        {\n            \"id\": \"0982ca62-cbf0-4854-8c7c-f5b97a1146c6\",\n            \"localized_text\": \"12\",\n            \"english_text\": \"12\"\n        },\n        {\n            \"id\": \"a7a513fb-22ee-4ac4-b43e-04dad0844d6a\",\n            \"localized_text\": \"13\",\n            \"english_text\": \"13\"\n        },\n        {\n            \"id\": \"ceef8d77-fcbd-4e81-91b5-94c0a9a1f944\",\n            \"localized_text\": \"14\",\n            \"english_text\": \"14\"\n        },\n        {\n            \"id\": \"a1d73923-4374-4de1-bc30-89871617c808\",\n            \"localized_text\": \"15\",\n            \"english_text\": \"15\"\n        },\n        {\n            \"id\": \"2dec240a-6652-43e3-aaa9-e7ea52d7fee1\",\n            \"localized_text\": \"16\",\n            \"english_text\": \"16\"\n        },\n        {\n            \"id\": \"cc4843b7-310c-4efd-bc3f-0b0c7fe919db\",\n            \"localized_text\": \"17\",\n            \"english_text\": \"17\"\n        },\n        {\n            \"id\": \"c1ef4a89-1322-48f2-b455-6c5395361743\",\n            \"localized_text\": \"18\",\n            \"english_text\": \"18\"\n        },\n        {\n            \"id\": \"b67f6b57-7cc1-4104-a819-e26896316e03\",\n            \"localized_text\": \"19\",\n            \"english_text\": \"19\"\n        },\n        {\n            \"id\": \"31395bd2-5da4-46a1-9d05-18d00c8b0032\",\n            \"localized_text\": \"20\",\n            \"english_text\": \"20\"\n        },\n        {\n            \"id\": \"6d9b34ab-cf83-4cb2-90be-1e99cb582b35\",\n            \"localized_text\": \"21\",\n            \"english_text\": \"21\"\n        },\n        {\n            \"id\": \"6849956c-939f-43eb-a206-6ef0accd5d04\",\n            \"localized_text\": \"22\",\n            \"english_text\": \"22\"\n        },\n        {\n            \"id\": \"b00286b9-cd45-4661-b0be-f9cbd9a26eaf\",\n            \"localized_text\": \"23\",\n            \"english_text\": \"23\"\n        },\n        {\n            \"id\": \"132317e4-9036-4a5b-9174-bd5c69faa98d\",\n            \"localized_text\": \"24\",\n            \"english_text\": \"24\"\n        },\n        {\n            \"id\": \"030e9b7f-c80d-4027-862f-b39510778781\",\n            \"localized_text\": \"25\",\n            \"english_text\": \"25\"\n        },\n        {\n            \"id\": \"dc699b81-1716-4426-93ae-cf6bc0eae9c5\",\n            \"localized_text\": \"26\",\n            \"english_text\": \"26\"\n        },\n        {\n            \"id\": \"01862078-953e-46c1-9759-097f9671497d\",\n            \"localized_text\": \"27\",\n            \"english_text\": \"27\"\n        },\n        {\n            \"id\": \"4d3e6553-f155-4ede-8615-938104767295\",\n            \"localized_text\": \"28\",\n            \"english_text\": \"28\"\n        },\n        {\n            \"id\": \"21ea6738-cec1-4f7d-b63d-fee16136345a\",\n            \"localized_text\": \"29\",\n            \"english_text\": \"29\"\n        },\n        {\n            \"id\": \"8122b657-c2f5-491e-8f94-efd16c9051e0\",\n            \"localized_text\": \"30\",\n            \"english_text\": \"30\"\n        },\n        {\n            \"id\": \"3aca5947-7288-472b-ae96-77d9317d6314\",\n            \"localized_text\": \"31\",\n            \"english_text\": \"31\"\n        },\n        {\n            \"id\": \"adb718be-a44b-409a-af11-8413c6fb3e9e\",\n            \"localized_text\": \"32\",\n            \"english_text\": \"32\"\n        },\n        {\n            \"id\": \"997710e1-0352-4b1f-8fcf-3bdb02e6f277\",\n            \"localized_text\": \"33\",\n            \"english_text\": \"33\"\n        },\n        {\n            \"id\": \"1dc30014-18a6-45e5-8831-df4cbf7d031e\",\n            \"localized_text\": \"34\",\n            \"english_text\": \"34\"\n        },\n        {\n            \"id\": \"6ad5015a-de97-407a-a214-4c1df310c0a7\",\n            \"localized_text\": \"35\",\n            \"english_text\": \"35\"\n        },\n        {\n            \"id\": \"5ecd7bc3-8fcc-426d-aadf-b6086070ebad\",\n            \"localized_text\": \"36\",\n            \"english_text\": \"36\"\n        },\n        {\n            \"id\": \"1f5eb488-717c-42c8-9829-01202f959947\",\n            \"localized_text\": \"37\",\n            \"english_text\": \"37\"\n        },\n        {\n            \"id\": \"ebf4b79e-b3cf-4dae-9fb5-fa4a1707f623\",\n            \"localized_text\": \"38\",\n            \"english_text\": \"38\"\n        },\n        {\n            \"id\": \"ff366c7a-f091-4e9b-acec-7364253b2e28\",\n            \"localized_text\": \"39\",\n            \"english_text\": \"39\"\n        },\n        {\n            \"id\": \"baff3627-5176-4041-a7e4-ffb65907cb32\",\n            \"localized_text\": \"40\",\n            \"english_text\": \"40\"\n        },\n        {\n            \"id\": \"9aa877d2-9764-49b1-8e8a-5cff47fd5f4c\",\n            \"localized_text\": \"41\",\n            \"english_text\": \"41\"\n        },\n        {\n            \"id\": \"95bac528-dc9b-4e08-bb00-b190fe1e986b\",\n            \"localized_text\": \"42\",\n            \"english_text\": \"42\"\n        },\n        {\n            \"id\": \"c2deb664-d40c-48b4-af4c-f81c32c091bd\",\n            \"localized_text\": \"43\",\n            \"english_text\": \"43\"\n        },\n        {\n            \"id\": \"9d4f9c7e-bb55-4fdc-8f4e-9118c9707f0d\",\n            \"localized_text\": \"44\",\n            \"english_text\": \"44\"\n        },\n        {\n            \"id\": \"78ad0567-7a34-4660-a57d-6f51b58068e9\",\n            \"localized_text\": \"45\",\n            \"english_text\": \"45\"\n        },\n        {\n            \"id\": \"8af11c64-1835-432d-a119-9006bc488ade\",\n            \"localized_text\": \"46\",\n            \"english_text\": \"46\"\n        },\n        {\n            \"id\": \"19ca95d9-071a-47af-ad60-ed57233828d6\",\n            \"localized_text\": \"47\",\n            \"english_text\": \"47\"\n        },\n        {\n            \"id\": \"ecf4e7dc-b998-4b49-b628-8ecf2a7353cf\",\n            \"localized_text\": \"48\",\n            \"english_text\": \"48\"\n        },\n        {\n            \"id\": \"3f24f252-5f6b-461a-ba7e-90bb4c09fc1d\",\n            \"localized_text\": \"49\",\n            \"english_text\": \"49\"\n        },\n        {\n            \"id\": \"e19f6228-0f1d-4b85-9cef-b8f6f254efa2\",\n            \"localized_text\": \"50\",\n            \"english_text\": \"50\"\n        },\n        {\n            \"id\": \"b26ec6c3-39e7-4c8c-92d2-ec205eddc5e4\",\n            \"localized_text\": \"51\",\n            \"english_text\": \"51\"\n        },\n        {\n            \"id\": \"190ce9bb-8665-4726-9325-5b8411ace204\",\n            \"localized_text\": \"52\",\n            \"english_text\": \"52\"\n        },\n        {\n            \"id\": \"83749c7e-1a71-4e00-8e1e-772260e56d95\",\n            \"localized_text\": \"53\",\n            \"english_text\": \"53\"\n        },\n        {\n            \"id\": \"111be591-b640-4258-9d3d-a8ecd1fc5a89\",\n            \"localized_text\": \"54\",\n            \"english_text\": \"54\"\n        },\n        {\n            \"id\": \"12f0b264-cb8a-41fc-856c-293bf3cd231b\",\n            \"localized_text\": \"55\",\n            \"english_text\": \"55\"\n        },\n        {\n            \"id\": \"1983b5f5-08f6-4872-a4c0-911471746aeb\",\n            \"localized_text\": \"56\",\n            \"english_text\": \"56\"\n        },\n        {\n            \"id\": \"b7f5517a-4861-4fc7-b38a-0733afe14bc0\",\n            \"localized_text\": \"57\",\n            \"english_text\": \"57\"\n        },\n        {\n            \"id\": \"d8cf445b-83a0-4916-bdd7-0d42114f5c49\",\n            \"localized_text\": \"58\",\n            \"english_text\": \"58\"\n        },\n        {\n            \"id\": \"83f849d1-e667-4fee-bc51-fb00b68df843\",\n            \"localized_text\": \"59\",\n            \"english_text\": \"59\"\n        },\n        {\n            \"id\": \"479008b0-a54e-4222-9f68-2163fd0d6ad8\",\n            \"localized_text\": \"60\",\n            \"english_text\": \"60\"\n        },\n        {\n            \"id\": \"8059f29f-40f9-4132-89fa-4f39edad6aa2\",\n            \"localized_text\": \"61\",\n            \"english_text\": \"61\"\n        },\n        {\n            \"id\": \"c5137026-2a9e-45dd-86b3-c196489ba375\",\n            \"localized_text\": \"62\",\n            \"english_text\": \"62\"\n        },\n        {\n            \"id\": \"2df33897-9939-475e-a493-4f2576fad6ff\",\n            \"localized_text\": \"63\",\n            \"english_text\": \"63\"\n        },\n        {\n            \"id\": \"0e0719f8-ae96-47bc-9df5-c5d42795c0a9\",\n            \"localized_text\": \"64\",\n            \"english_text\": \"64\"\n        },\n        {\n            \"id\": \"fa428e59-8758-4f42-8c5f-e73dcbd56083\",\n            \"localized_text\": \"65\",\n            \"english_text\": \"65\"\n        },\n        {\n            \"id\": \"55ee9a96-4282-4696-9c31-d0696f71e40b\",\n            \"localized_text\": \"66\",\n            \"english_text\": \"66\"\n        },\n        {\n            \"id\": \"6030489c-44ed-45a3-adb6-de17f86939e4\",\n            \"localized_text\": \"67\",\n            \"english_text\": \"67\"\n        },\n        {\n            \"id\": \"e4397548-85fb-4f29-a219-94592e789fde\",\n            \"localized_text\": \"68\",\n            \"english_text\": \"68\"\n        },\n        {\n            \"id\": \"c11061db-b49c-49e6-abb5-2bdadaf89303\",\n            \"localized_text\": \"69\",\n            \"english_text\": \"69\"\n        },\n        {\n            \"id\": \"f1e552b9-6381-466a-8909-6aec059743c2\",\n            \"localized_text\": \"70\",\n            \"english_text\": \"70\"\n        },\n        {\n            \"id\": \"00dec7c8-b5e4-4bb0-bfb9-ccbf2f391aa0\",\n            \"localized_text\": \"71\",\n            \"english_text\": \"71\"\n        },\n        {\n            \"id\": \"9a79ac06-73f5-46fa-abc2-03abd264b433\",\n            \"localized_text\": \"72\",\n            \"english_text\": \"72\"\n        },\n        {\n            \"id\": \"67fea49d-f93b-43ac-80f6-b0dcc3297fcb\",\n            \"localized_text\": \"73\",\n            \"english_text\": \"73\"\n        },\n        {\n            \"id\": \"d0e4ae4a-5ec6-496c-8ec9-15cdd60019df\",\n            \"localized_text\": \"74\",\n            \"english_text\": \"74\"\n        },\n        {\n            \"id\": \"ad2cc3e8-b882-4f2f-9c34-ef4a6cbc1fba\",\n            \"localized_text\": \"75\",\n            \"english_text\": \"75\"\n        },\n        {\n            \"id\": \"d0896972-a7ae-42c4-8080-e2a90328fbfd\",\n            \"localized_text\": \"76\",\n            \"english_text\": \"76\"\n        },\n        {\n            \"id\": \"f87d8f6b-e8a1-46af-ac4d-cd879aaf50b4\",\n            \"localized_text\": \"77\",\n            \"english_text\": \"77\"\n        },\n        {\n            \"id\": \"68358b14-df14-4966-948f-be49e2613a27\",\n            \"localized_text\": \"78\",\n            \"english_text\": \"78\"\n        },\n        {\n            \"id\": \"17c15c66-b267-4b30-9501-dca11a60ae15\",\n            \"localized_text\": \"79\",\n            \"english_text\": \"79\"\n        },\n        {\n            \"id\": \"c6c732b3-bda1-4337-930a-ad31c67469cf\",\n            \"localized_text\": \"80\",\n            \"english_text\": \"80\"\n        },\n        {\n            \"id\": \"6ec48542-223d-4b53-9cdd-d9b92f77ca50\",\n            \"localized_text\": \"81\",\n            \"english_text\": \"81\"\n        },\n        {\n            \"id\": \"d1960f82-1d4b-40b5-a516-ffeb216a7a50\",\n            \"localized_text\": \"82\",\n            \"english_text\": \"82\"\n        },\n        {\n            \"id\": \"6902f6a0-7690-4b52-9757-ba47ea4c77f0\",\n            \"localized_text\": \"83\",\n            \"english_text\": \"83\"\n        },\n        {\n            \"id\": \"2317a584-6a9d-4109-9d49-f8b142b08a73\",\n            \"localized_text\": \"84\",\n            \"english_text\": \"84\"\n        },\n        {\n            \"id\": \"47d070ce-6782-4393-af06-69db9c096661\",\n            \"localized_text\": \"85\",\n            \"english_text\": \"85\"\n        },\n        {\n            \"id\": \"83fc36fc-a1de-4876-a9d9-b1728319bb11\",\n            \"localized_text\": \"86\",\n            \"english_text\": \"86\"\n        },\n        {\n            \"id\": \"a3e96606-34cb-4304-922c-633a4c99def9\",\n            \"localized_text\": \"87\",\n            \"english_text\": \"87\"\n        },\n        {\n            \"id\": \"9cd1b1de-3acc-4cdb-8907-282b492ff745\",\n            \"localized_text\": \"88\",\n            \"english_text\": \"88\"\n        },\n        {\n            \"id\": \"836d8e83-9c62-4cec-8376-2f523dc37e28\",\n            \"localized_text\": \"89\",\n            \"english_text\": \"89\"\n        },\n        {\n            \"id\": \"88ac2d7a-3b63-4716-9d3c-208b7828d5d9\",\n            \"localized_text\": \"90\",\n            \"english_text\": \"90\"\n        },\n        {\n            \"id\": \"ea460733-acb9-4f76-85e7-b6e4a13d9211\",\n            \"localized_text\": \"91\",\n            \"english_text\": \"91\"\n        },\n        {\n            \"id\": \"28a07f1a-73be-414b-b58b-f2ec494dc1a3\",\n            \"localized_text\": \"92\",\n            \"english_text\": \"92\"\n        },\n        {\n            \"id\": \"22bc237c-e70a-420b-bc5b-55e80a03bbb2\",\n            \"localized_text\": \"93\",\n            \"english_text\": \"93\"\n        },\n        {\n            \"id\": \"140e33dd-f025-41cd-bdc8-20ebdde8902f\",\n            \"localized_text\": \"94\",\n            \"english_text\": \"94\"\n        },\n        {\n            \"id\": \"e400a649-73a1-428d-a883-c33a7376b212\",\n            \"localized_text\": \"95\",\n            \"english_text\": \"95\"\n        },\n        {\n            \"id\": \"f89e29fe-0b6b-424b-a4c0-53c07a03cd63\",\n            \"localized_text\": \"96\",\n            \"english_text\": \"96\"\n        },\n        {\n            \"id\": \"b53d615b-344e-403c-be09-5263dd4d7cd1\",\n            \"localized_text\": \"97\",\n            \"english_text\": \"97\"\n        },\n        {\n            \"id\": \"27440146-a15c-45ba-bdf7-d3efd2692f82\",\n            \"localized_text\": \"98\",\n            \"english_text\": \"98\"\n        },\n        {\n            \"id\": \"1ea1cfb0-de45-4602-a0ad-5066848db60f\",\n            \"localized_text\": \"99\",\n            \"english_text\": \"99\"\n        }\n    ]\n}","responseCode":{"code":200,"name":"OK"},"requestObject":{"data":null,"dataMode":null,"headerData":[],"method":"GET","pathVariableData":[],"queryParams":[{"key":"country_id","value":"5a8296a0-0ab0-4e75-be00-71a6371b519b","equals":true,"description":"ID for United States","enabled":true},{"key":"mapping_partner_id","value":"8f25693a-5b18-4c24-b6ad-5178492e5c2d","equals":true,"description":"","enabled":true},{"key":"enc","value":"{{request_hash}}","equals":true,"description":"","enabled":true}],"url":"{{host}}/api/external/v1/questions/f2c062da-9f63-4602-88a8-e8525a4f1443/answers?country_id=5a8296a0-0ab0-4e75-be00-71a6371b519b&mapping_partner_id=8f25693a-5b18-4c24-b6ad-5178492e5c2d&enc={{request_hash}}"},"headers":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"d131f7d9a1f22f2596c606ca1e1f3ba0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"XSRF-TOKEN=tRwH4wTyjrjsJ%2FYOy%2FcSGcBE%2BqyIJmxu83aeNb3eeHa0pzfXBNyhorkBU%2F%2F5q%2B3B9E7%2FKdnijjyP4TOu4P1k5Q%3D%3D; path=/"},{"key":"Set-Cookie","value":"_tr_researcher_session=ikdl%2FsWW%2FPY%2BXwUfaxpwh2NbtUz9kGxKC2mL2FMOkic41pum0LAL8QqY6cW%2BvnM%2FO7tr%2B3H04REK3aSmlNsyqYjJTyjaq7tq9CVcN%2FUwbr2Jiv%2F8LvXuZEIzFgcH66nPFoLDzC3Jklmq4D%2BykBQ%3D--t%2BOXaIX2uPIBODkN--Ce1z56r5F1UbR%2FgwdnVqOQ%3D%3D; path=/; HttpOnly"},{"key":"X-Request-Id","value":"fb94a38d-7b36-40ae-8bcf-6ab099841e6b"},{"key":"X-Runtime","value":"0.335262"},{"key":"Transfer-Encoding","value":"chunked"}],"cookies":null,"request":"e21f2899-e362-4a7d-8c2f-00eab174e6fe","collection":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0"}],"currentHelper":null,"helperAttributes":null,"collectionId":"6317e0ac-6db8-4bb4-a64e-e4e79d7c81b0","headers":"","pathVariables":{}}]}