Created
April 8, 2024 12:10
-
-
Save dylanyoung-dev/053f27a6e2f4aa887fc99775dc66079a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"info": { | |
"_postman_id": "acf94795-b7ff-46b7-adb5-c1c750629213", | |
"name": "Sitecore Search APIs", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", | |
"_exporter_id": "18869027" | |
}, | |
"item": [ | |
{ | |
"name": "User Profile Information", | |
"protocolProfileBehavior": { | |
"disabledSystemHeaders": { | |
"user-agent": true, | |
"connection": true | |
} | |
}, | |
"request": { | |
"auth": { | |
"type": "noauth" | |
}, | |
"method": "POST", | |
"header": [ | |
{ | |
"key": "Authorization", | |
"value": "YourAPIKey" | |
}, | |
{ | |
"key": "Content-Type", | |
"value": "application/json", | |
"type": "text" | |
} | |
], | |
"body": { | |
"mode": "raw", | |
"raw": "{\r\n \"id\": \"Your_RFK_USERID\",\r\n \"id_type\": \"uuid\",\r\n \"request\": {\r\n \"max_size\": 50,\r\n \"personalization\": 1,\r\n \"entities\": [\r\n {\r\n \"entity_type\": \"content\",\r\n \"events\": [\r\n \"views\"\r\n ],\r\n \"keyword\": [\r\n \"sb\",\r\n \"sp\"\r\n ],\r\n \"affinity\": [\r\n \"name\",\r\n \"product\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", | |
"options": { | |
"raw": { | |
"language": "json" | |
} | |
} | |
}, | |
"url": { | |
"raw": "https://api.rfksrv.com/user/v4/user-profile/:domainId", | |
"protocol": "https", | |
"host": [ | |
"api", | |
"rfksrv", | |
"com" | |
], | |
"path": [ | |
"user", | |
"v4", | |
"user-profile", | |
":domainId" | |
], | |
"variable": [ | |
{ | |
"key": "domainId", | |
"value": "123456" | |
} | |
] | |
} | |
}, | |
"response": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment