{"info":{"_postman_id":"ee74364f-0d5b-4d0c-89bd-c4b85ff3cbd3","name":"Reputation API","description":"<html><head></head><body><h1 id=\"overview\">Overview</h1>\n<img src=\"https://content.pstmn.io/74768cc6-d4b6-4215-be98-a36200208c22/aW1hZ2UucG5n\" width=\"251\" height=\"46\">\n\n<p>Reputation's API offers a seamless pathway for data integration and management. This robust interface allows for smooth integration with the <a href=\"https://support.reputation.com/s/?language=en_US\">Reputation platform</a>.</p>\n<p>Our REST APIs enable you to aggregate feedback, assess metrics, and streamline operations within your environment. Explore our documentation, complete with detailed code samples, and endpoint insights.</p>\n<h2 id=\"getting-started\"><strong>Getting Started</strong></h2>\n<ol>\n<li><p>Obtain an API key by contacting your customer success manager.</p>\n</li>\n<li><p>Discuss additional resources you need so they can guide you through the initial setup and test calls.</p>\n</li>\n<li><p>Ensure your API key is included in your request headers.</p>\n</li>\n<li><p>Use our endpoints to access the desired resources and functions.</p>\n</li>\n</ol>\n<h2 id=\"what-you-should-know\">What You Should Know</h2>\n<ul>\n<li><p>The Reputation API delivers responses in JSON format. For GET requests, the <strong>Accept</strong> HTTP Header may be necessary, while POST and PUT requests often require the <strong>Content-Type</strong> HTTP Header set to <strong>application/json</strong>.</p>\n</li>\n<li><p>The API is language agnostic, allowing you to use any HTTP client—be it Postman, cURL, or others—for requests.</p>\n</li>\n</ul>\n<p><strong>For example</strong>: A bash script to list all tenants would follow this structure.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">#!/bin/bash \\\nACCESS_TOKEN=\\\"API_KEY\\\" \\\ncurl \\\n    -H \\\"Content-Type: application/json\\\" \\\n    -H \\\"X-API-KEY: $ACCESS_TOKEN\\\" \\\n    -X $ACTION\n    \\\"https://api.reputation.com/v3/tenants\\\"\n\n</code></pre>\n<h4 id=\"tls-cipher-policy\">TLS Cipher Policy</h4>\n<p>Our TLS Cipher Policy outlines a list of approved cryptographic algorithms, known as TLS ciphers, which are used in the Transport Layer Security (TLS) protocol. These ciphers ensure the secure transmission of data by encrypting the communication between a client and server. <strong>To comply with this policy, you must use one of the ciphers listed below:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>- TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA\n- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256\n- TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA\n- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384\n- TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\n- TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA\n- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\n- TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\n- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\n- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\n- TLS_RSA_WITH_3DES_EDE_CBC_SHA\n- TLS_RSA_WITH_AES_128_CBC_SHA\n- TLS_RSA_WITH_AES_128_GCM_SHA256\n- TLS_RSA_WITH_AES_256_CBC_SHA\n- TLS_RSA_WITH_AES_256_GCM_SHA384\n\n</code></pre><h4 id=\"agency-api-keys\">Agency API Keys</h4>\n<p>An <strong>Agency API key</strong> refers to a distinct type of API key issued to agencies on the Reputation platform, allowing them to manage resources across multiple clients or tenants. Each tenant represents a unique entity or client with its own set of data and configurations.</p>\n<p>When interacting with the platform using the Agency API key, it's essential to specify the target tenant for each request, by including the <strong>TENANT ID</strong> in the request header. This ensures actions are appropriately scoped and directed to the correct tenant's resources.</p>\n<p>The following example shows a simple bash script to list all locations for a particular tenant.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">#!/bin/bash \\\nACCESS_TOKEN=\\\"API_KEY\\\" \\\nTENANT_ID=\\\"TENANT_ID\\\" \\\ncurl \\\n    -H \\\"Content-Type: application/json\\\" \\\n    -H \\\"X-API-KEY: $ACCESS_TOKEN\\\" \\\n    -H \\\"X-TENANT-ID: $TENANT_ID\\\" \\\n    -X $ACTION\n    \\\"https://api.reputation.com/v3/locations\\\"\n\n</code></pre>\n<h2 id=\"validation\">Validation</h2>\n<p>Every incoming request undergoes validation. If the desired resource is absent, a <strong>404 (Not found)</strong> HTTP status code is returned. Should the validation not pass, a <strong>403 (Forbidden)</strong> status code is issued.</p>\n<p>Any validation issues are detailed in the response as a collection of error objects.</p>\n<h2 id=\"errors\">Errors</h2>\n<p>The following is a list of error parameters.</p>\n<table><tbody><tr><th>Parameter</th><th>Parent</th><th><b>Data Type</b></th><th>Description</th></tr><tr><td><div><code>errors</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object Array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>An array of <code>error</code> objects.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>error</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div><code>errors</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Object</div><div><div><div><div></div></div></div><div></div></div></td><td><div>An object containing error details.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>field</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div><code>error</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the field which failed validation.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>code</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div><code>error</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Validation failure code.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>message</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div><code>error</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Message explaining the <code>code</code>.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h2 id=\"status-codes\">Status Codes</h2>\n<table><tbody><tr><th>HTTP Status Code</th><th>Result</th></tr><tr><td><div>200</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Ok</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Bad Parameters<br><br>Account is locked<br><br>Invalid Parameters<br><br>Missing Parameters<br></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>401</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unauthorized:<br><br>API Key is invalid<br></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>403</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Forbidden:<br><br>API Key is not permitted the operation<br></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>404</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Resource Not Found:<br><br>Missing Tenant Id<br><br>Missing Location Id<br><br>Missing Source Id<br></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>405</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Action not supported by this method</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>429</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Too many requests. API rate limit exceeded</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>500</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Internal Server Error</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>504</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Timeout</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h2 id=\"pagination\">Pagination</h2>\n<p>For endpoints returning multiple results, the user data is paginated, with a default limit set to 20. The response will feature a pagination object containing the subsequent fields:</p>\n<table><tbody><tr><th>Parameter</th><th><b>Data Type</b></th><th>Description</th></tr><tr><td><div><code>offset</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This offsets the start of each page by the number specified</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>limit</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is the maximum number of objects that may be returned. A query may return fewer than the value of limit due to filtering.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>next</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>API endpoint that will return the next page of data. If not included, this is the last page of data.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><code>previous</code></div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>API endpoint that will return the previous page of data. If not included, this is the first page of data.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h2 id=\"date-range\">Date Range</h2>\n<p>When interacting with endpoints that accommodate date ranges, the response will contain a specific <code>range</code> object. This object includes the following fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>range</code></td>\n<td>The specified date range</td>\n</tr>\n<tr>\n<td><code>from</code></td>\n<td>The start date of the range</td>\n</tr>\n<tr>\n<td><code>to</code></td>\n<td>The end date of the range</td>\n</tr>\n</tbody>\n</table>\n</div><p>Each field provides insight into the range used for the data retrieval or filtering in the response.</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"}],"owner":"17280339","collectionId":"ee74364f-0d5b-4d0c-89bd-c4b85ff3cbd3","publishedId":"2s83YWk4kZ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"004F5D"},"publishDate":"2023-09-21T10:09:42.000Z"},"item":[{"name":"/Asset Library","item":[{"name":"Upload Image Files","id":"02773d2d-e349-4ac5-bf13-4c7ca398c9e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"formdata","formdata":[{"key":"images","description":"<p>(Required) Choose one or multiple image files from your computer. There's no limit to how many you can upload.</p>\n","type":"file"},{"key":"tags","value":"[Key:Value]","description":"<p>Provide a valid JSON string with image file names as keys and their respective tags as values. For example: {\"image1.jpg\": [\"tag1\", \"tag2\"], \"image2.jpg\": [\"tag2\", \"tag3\"]}.</p>\n","type":"text"}]},"url":"{{baseUrl}}/asset-library/upload/image","description":"<p>Select any number of files from your computer. Attach tags to each image and send them as formData in the API request. The images will display in your Asset Library (see below).</p>\n<img src=\"https://content.pstmn.io/ab984373-ebde-4d41-86ff-cf0e590cf099/aW1hZ2UucG5n\" width=\"459\" height=\"379\" />\n\n<p>You must request to have the <a href=\"https://support.reputation.com/s/article/New-Asset-Library-for-Pages-and-Business-Listings?language=en_US\">asset library</a> enabled. Please contact your CSM for assistance.</p>\n<p><strong>Note:</strong> This endpoint only accepts .jpg, .jpeg, or .png files.</p>\n<h2>Sample Requests</h2>\n\n<h4 id=\"python\">Python</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import requests\nfile_1 = ('ImageFile_1.png', open('path_to_ImageFile_1.png', 'rb'))\nfile_2 = ('ImageFile_2.png', open('path_to_ImageFile_2.png', 'rb'))\ntags = '{\"ImageFile_1.png\":[\"tag1\", \"tag2\"], \"ImageFile_2.png\" : [\"tag3\"]}'\nurl = \"http://localhost:8082/v3/asset-library/upload/image\"\nheaders = {\n    \"x-api-key\": \"Enter_Api_Key_here\"\n}\nfiles = {\n    'images': file_1,\n    'images': file_2,\n    'tags': (None, tags)\n}\nresponse = requests.post(url, headers=headers, files=files)\nprint(response.text)\n\n</code></pre>\n<h4>Javascript XHR</h4>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">    var data = new FormData();\n    data.append(\"images\", fileInput.files[0], \"ImageFile_1.png\");\n    data.append(\"images\", fileInput.files[0], \"ImageFile_2.png\");\n    data.append(\"tags\", \"{\\\"ImageFile_1.png\\\":[\\\"tag1\\\", \\\"tag2\\\"], \\\"ImageFile_2.png\\\" : [\\\"tag3\\\",]}\");\nvar xhr = new XMLHttpRequest();\nxhr.withCredentials = true;\nxhr.addEventListener(\"readystatechange\", function() {\nif(this.readyState === 4) {\n    console.log(this.responseText);\n}\n});\nxhr.open(\"POST\", \"http://localhost:8082/v3/asset-library/upload/image\");\nxhr.setRequestHeader(\"x-api-key\", \"Enter_Api_Key_here\");\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"returned-parameters\">Returned Parameters</h2>\n<p>Data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>addedImages</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array that contains details about successfully added images to the asset library.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>addedImages</code></td>\n<td>String</td>\n<td>The filename of the image - ex. <code>Lobby.png</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>addedImages</code></td>\n<td>String</td>\n<td>URL where the image can be accessed - ex. <code>assets.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>addedImages</code></td>\n<td>String</td>\n<td>Assigned description for the image - ex. <code>Lobby.png</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td><code>addedImages</code></td>\n<td>String Array</td>\n<td>An array of tags associated with the image for easy search or categorization - ex. [<code>entrance, decore]</code></td>\n</tr>\n<tr>\n<td><code>modules</code></td>\n<td><code>addedImages</code></td>\n<td>String Array</td>\n<td>An array of modules in the platform where the image is used or associated ex. [<code>Listings,Pages,Social</code>]</td>\n</tr>\n<tr>\n<td><code>failedImages</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array that holds details about images that failed to be added to the asset library.</td>\n</tr>\n<tr>\n<td><code>image</code></td>\n<td><code>failedImages</code></td>\n<td>String</td>\n<td>The filename of the failed image - ex. <code>Lobby_Video.mp4</code></td>\n</tr>\n<tr>\n<td><code>error</code></td>\n<td><code>failedImages</code></td>\n<td>String</td>\n<td>Reason the image failed to upload - ex - <code>File extension not supported.</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["asset-library","upload","image"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9c92aed9-0f89-4364-912a-817e330aa237","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"formdata","formdata":[{"key":"images","description":"(Required) Select single image file or multiple image files from the computer. There is no limit on number of images that can be uploaded.","type":"file"},{"key":"tags","value":"{\"image1.png\":[\"Entrance\", \"Office\"],\"image2.mp4\":[\"View\",\"Decore\"]}","description":" Valid json string containing key value pairs where image file name is key and list of tag( tag name) is the value. Example {\"image1.jpg\":[\"tag1\", \"tag1\"],\"image2.jpg\":[\"tag2\", \"tag3\"]}","type":"text"}]},"url":"https://api.reputation.com/v3/asset-library/upload/image"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"addedImages\": [\n        {\n            \"name\": \"1695566027667_Lobby.png\",\n            \"url\": \"https://assets.reputation.com/assets/f631eb0f561/1695566027667_Lobby.png\",\n            \"description\": \"1695566027667_Lobby.png\",\n            \"tags\": [\n                \"Entrance\",\n                \"View\"\n            ],\n            \"modules\": [\n                \"Listings\",\n                \"Pages\",\n                \"Social\"\n            ]\n        }\n    ],\n    \"failedImages\": [\n        {\n            \"image\": \"1695566027899_Lobby_Video.mp4\",\n            \"error\": \"File extension not supported: mp4\"\n        }\n    ]\n}"}],"_postman_id":"02773d2d-e349-4ac5-bf13-4c7ca398c9e7"},{"name":"Upload Image Using Public Urls","id":"070efdda-0a0d-43eb-b6b6-56662d3e9b4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"images\": [\n    {\n      \"url\": \"string\",\n      \"tags\": [\n        \"string\"\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/asset-library/upload/image/url","description":"<p>Upload images to your asset library using a public URL rather than a direct file upload. The images will display in your Asset Library (see below).</p>\n<img src=\"https://content.pstmn.io/ab984373-ebde-4d41-86ff-cf0e590cf099/aW1hZ2UucG5n\" width=\"459\" height=\"379\" />\n\n<p>You must request to have the <a href=\"https://support.reputation.com/s/article/New-Asset-Library-for-Pages-and-Business-Listings?language=en_US\">asset library</a> enabled. Please contact your CSM for assistance.</p>\n<p><strong>Note:</strong> This endpoint only accepts .jpg, .jpeg, or .png files.</p>\n<h2>Sample Requests</h2>\n\n<h4 id=\"python\">Python</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import requests\nimport json\ndata = {\n    \"images\": [\n        {\n            \"url\": \"https://www.testImageUrl.com/image_1.jpg\",\n            \"tags\": [\"test_tag_1\", \"test_tag_2\"]\n        },\n        {\n            \"url\": \"https://www.testImageUrl.com/image_2.jpg\",\n            \"tags\": [\"test_tag_3\", \"test_tag_2\"]\n        }\n    ]\n}\nurl = \"https://api.reputation.com/v3/asset-library/upload/image/url\"\nheaders = {\n    \"x-api-key\": \"Enter_Api_Key_here\",\n    \"Content-Type\": \"application/json\"\n}\nresponse = requests.post(url, headers=headers, data=json.dumps(data))\nprint(response.text)\n\n</code></pre>\n<h4>Javascript XHR</h4>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">    var data = JSON.stringify({\n      \"images\": [\n        {\n          \"url\": \"https://www.testImageUrl.com/image_1.jpg\",\n          \"tags\": [\n            \"test_tag_1\",\n            \"test_tag_2\"\n          ]\n        },\n        {\n          \"url\": \"https://www.testImageUrl.com/image_2.jpg\",\n          \"tags\": [\n            \"test_tag_3\",\n            \"test_tag_2\"\n          ]\n        }\n      ]\n    });\nvar xhr = new XMLHttpRequest();\nxhr.withCredentials = true;\nxhr.addEventListener(\"readystatechange\", function() {\n  if(this.readyState === 4) {\n    console.log(this.responseText);\n  }\n});\nxhr.open(\"POST\", \"https://api.reputation.com/v3/asset-library/upload/image/url\");\nxhr.setRequestHeader(\"x-api-key\", \"Enter_Api_Key_here\");\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"parameter-descriptions\">Parameter Descriptions</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>addedImages</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array that contains details about successfully added images to the asset library.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>addedImages</code></td>\n<td>String</td>\n<td>Image's assigned name. Typically a portion of the image's original URL path - ex. <code>images/Reputation_Logo_Horizontal_Dark.svg</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>addedImages</code></td>\n<td>String</td>\n<td>New URL where the image can be accessed - ex. <code>assets.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>addedImages</code></td>\n<td>String</td>\n<td>Assigned description for the image - ex. <code>images/Reputation_Logo_Horizontal_Dark.svg</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td><code>addedImages</code></td>\n<td>Object Array</td>\n<td>An array of tag objects associated with the image.</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>tags</code></td>\n<td>String</td>\n<td>Unique tag identifier - ex. <code>5023110</code></td>\n</tr>\n<tr>\n<td><code>agencyID</code></td>\n<td><code>tags</code></td>\n<td>String</td>\n<td>Agency ID number - ex. <code>1</code></td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td><code>tags</code></td>\n<td>String</td>\n<td>Tenant ID number - ex. <code>1990</code></td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>tags</code></td>\n<td>String</td>\n<td>Tag name - ex. <code>Logo</code></td>\n</tr>\n<tr>\n<td><code>modules</code></td>\n<td><code>tags</code></td>\n<td>String Array</td>\n<td>An array of modules in the platform where the tags will be used or associated ex. [<code>Listings, Pages, Social</code>]</td>\n</tr>\n<tr>\n<td><code>modules</code></td>\n<td><code>addedImages</code></td>\n<td>String Array</td>\n<td>An array of modules in the platform where the image is used or associated ex. [<code>Listings,Pages,Social</code>]</td>\n</tr>\n<tr>\n<td><code>failedImages</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array that holds details about images that failed to be added to the asset library.</td>\n</tr>\n<tr>\n<td><code>image</code></td>\n<td><code>failedImages</code></td>\n<td>String</td>\n<td>The filename of the failed image - ex. <code>Lobby_Video.mp4</code></td>\n</tr>\n<tr>\n<td><code>error</code></td>\n<td><code>failedImages</code></td>\n<td>String</td>\n<td>Reason the image failed to upload - ex - <code>File extension not supported.</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["asset-library","upload","image","url"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0af7b114-c169-41dd-889c-953ff048fe8c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"images\": [\n    {\n      \"url\": \"https://reputation.com/wp-content/themes/reputation/dist/images/Reputation_Logo_Horizontal_Dark.svg\",\n      \"tags\": [\n        \"Logo\",\n        \"Brand\"\n      ]\n      \n    },\n    {\n        \"url\": \"https://youtu.be/8-_hnHwrodc\",\n        \"tags\": [\n            \"Education\",\n            \"Learn\"\n        ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/asset-library/upload/image/url"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"902"},{"key":"etag","value":"W/\"386-5mfwsLc6aqDijBvxolpJT6hOFvY\""},{"key":"date","value":"Sun, 24 Sep 2023 19:59:54 GMT"},{"key":"x-envoy-upstream-service-time","value":"2588"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"addedImages\": [\n        {\n            \"name\": \"/wp-content/themes/reputation/dist/images/Reputation_Logo_Horizontal_Dark.svg.null\",\n            \"url\": \"https://assets.reputation.com/assets/f631eb0f561/wp-content/themes/reputation/dist/images/Reputation_Logo_Horizontal_Dark.svg.null\",\n            \"description\": \"/wp-content/themes/reputation/dist/images/Reputation_Logo_Horizontal_Dark.svg.null\",\n            \"tags\": [\n                {\n                    \"id\": 5023110,\n                    \"agencyID\": 1,\n                    \"tenantID\": 1990,\n                    \"name\": \"Logo\",\n                    \"modules\": [\n                        \"Listings\",\n                        \"Pages\",\n                        \"Social\"\n                    ]\n                }\n            ],\n            \"modules\": [\n                \"Listings\",\n                \"Pages\",\n                \"Social\"\n            ]\n        },\n        {\n            \"name\": \"/8-_hnHwrodc.html\",\n            \"url\": \"https://assets.reputation.com/assets/f631eb0f561/8-_hnHwrodc.html\",\n            \"description\": \"/8-_hnHwrodc.html\",\n            \"tags\": [\n                {\n                    \"id\": 5023111,\n                    \"agencyID\": 1,\n                    \"tenantID\": 1990,\n                    \"name\": \"Education\",\n                    \"modules\": [\n                        \"Listings\",\n                        \"Pages\",\n                        \"Social\"\n                    ]\n                },\n                {\n                    \"id\": 5023112,\n                    \"agencyID\": 1,\n                    \"tenantID\": 1990,\n                    \"name\": \"Learn\",\n                    \"modules\": [\n                        \"Listings\",\n                        \"Pages\",\n                        \"Social\"\n                    ]\n                }\n            ],\n            \"modules\": [\n                \"Listings\",\n                \"Pages\",\n                \"Social\"\n            ]\n        }\n    ],\n    \"failedImages\": []\n}"}],"_postman_id":"070efdda-0a0d-43eb-b6b6-56662d3e9b4a"}],"id":"0305f87a-1fb4-49da-85e9-09fec6c7a108","description":"<p>Use the <strong>Asset Library</strong> collection to upload assets like images to your Reputation platform.</p>\n","_postman_id":"0305f87a-1fb4-49da-85e9-09fec6c7a108"},{"name":"/Authorize","item":[{"name":"Authorize","id":"02e713f5-aea4-448f-81e0-c26a129391c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"string\",\n  \"locationCodes\": \"string array\",\n  \"firstName\": \"string\",\n  \"lastName\": \"string\",\n  \"email\": \"string\",\n  \"role\": \"string\",\n  \"timezone\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/authorize","description":"<p>Authorize a user on your platform, either granting them access or updating their permissions based on provided personal and role-specific details.</p>\n<h2 id=\"sample-requests\">Sample Requests</h2>\n<h4 id=\"python\">Python</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import requests\nimport json\nurl = 'https://api.reputation.com/v3/authorize'\nheaders = {\n    'x-api-key': 'Your API key',\n    'Content-Type': 'application/json;charset=UTF-8'\n}\ndata = {\n    \"userId\": \"346345\",\n    \"locationCodes\": \"145, 742, 520\",\n    \"firstName\": \"Jeff\",\n    \"lastName\": \"Goodman\",\n    \"email\": \"john@goodman.com\",\n    \"role\": \"Admin\",\n    \"timezone\": \"America/Los_Angeles\"\n}\nresponse = requests.post(url, headers=headers, data=json.dumps(data))\nif response.status_code &gt;= 200 and response.status_code &lt; 400:\n    print(response.text)\nelse:\n    print(\"Error: \", response.text)\n\n</code></pre>\n<h4 id=\"javascript-xhr\">JavaScript XHR</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('POST', 'https://api.reputation.com/v3/authorize', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8');\nxhr.onload = function() {\n    if (xhr.status &gt;= 200 &amp;&amp; xhr.status &lt; 400) {\n        console.log(xhr.responseText);\n    } else {\n        console.error(\"Error: \", xhr.responseText);\n    }\n};\nxhr.onerror = function() {\n    console.error(\"Network error\");\n};\nvar data = JSON.stringify({\n    \"userId\": \"346345\",\n    \"locationCodes\": \"145, 742, 520\",\n    \"firstName\": \"Jeff\",\n    \"lastName\": \"Goodman\",\n    \"email\": \"john@goodman.com\",\n    \"role\": \"Admin\",\n    \"timezone\": \"America/Los_Angeles\"\n});\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"parameter-descriptions\">Parameter Descriptions</h2>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userID</td>\n<td>String</td>\n<td>Unique identifier for the user - ex. \"346345\"</td>\n</tr>\n<tr>\n<td>locationCodes</td>\n<td>String Array</td>\n<td>Comma-separated codes representing the user's associated locations or branches - ex. \"145, 742, 520\"</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the user - ex. \"Jeff\"</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the user - ex. \"Goodman\"</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>Email address associated with the user's account - ex. \"<a href=\"https://mailto:john@goodman.com\">john@goodman.com</a>\"</td>\n</tr>\n<tr>\n<td>role</td>\n<td>String</td>\n<td>Role assigned to the user - ex. Admin <a href=\"https://support.reputation.com/s/article/Where-do-I-find-my-role-permissions?language=en_US\">Find your role permissions in the platform.</a></td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>String</td>\n<td>Timezone Id. Example timezone ids can be found on Momentjs's interactive timezone map <a href=\"https://momentjs.com/timezone\">https://momentjs.com/timezone</a> - ex. \"America/Los_Angeles\"</td>\n</tr>\n<tr>\n<td>path</td>\n<td>String</td>\n<td>Redirect to product-specific landing page. Valid values. Actions, Dashboard, Insights, Listings, RepScore, Reports, Requests, Reviews, Social, or Surveys. Default value is Dashboard</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-parameters\">Response Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>token</td>\n<td>String</td>\n<td>An authentication or session token generated for the user - ex. b8b9e16131777f141a0ca38dc2e69777</td>\n</tr>\n<tr>\n<td>authorize_token</td>\n<td>String</td>\n<td>A specialized token dedicated to user authorization. It might be used in certain contexts where specific or granular permissions are required - ex. b8b9e16131777f141a0ca38dc2e69778</td>\n</tr>\n<tr>\n<td>redirectURL</td>\n<td>String</td>\n<td>This is a URL to which the user is redirected - ex. <a href=\"https://app.reputation.com/auth-sso?token=b8b9e16131b22f141a0ca38dc2e69777\">https://app.reputation.com/auth-sso?token=b8b9e16131b22f141a0ca38dc2e69777</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["authorize"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a40f7767-e08c-4e02-b7f5-dc2b3bd5df5c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"346345\",\n  \"locationCodes\": \"145, 742, 520\",\n  \"firstName\": \"Jeff\",\n  \"lastName\": \"Goodman\",\n  \"email\": \"john@goodman.com\",\n  \"role\": \"Admin\",\n  \"timezone\": \"America/Los_Angeles\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/authorize"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"188"},{"key":"etag","value":"W/\"bc-Fh+drIMqdRT7GfcPNeh5PeIIq/c\""},{"key":"date","value":"Sun, 24 Sep 2023 21:51:05 GMT"},{"key":"x-envoy-upstream-service-time","value":"212"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"b8b9e16131b22f141a0ca38dc2e69377\",\n    \"authorize_token\": \"b8b9e16131b22f141a0ca38dc2e69377\",\n    \"redirectUrl\": \"https://app.reputation.com/auth-sso?token=b8b9e16131b22f141a0ca38dc2e69777\"\n}"}],"_postman_id":"02e713f5-aea4-448f-81e0-c26a129391c7"}],"id":"8af3f7c7-4009-407e-9108-abb138f10d21","description":"<p>Use this collection to authorize users and configure roles.</p>\n","_postman_id":"8af3f7c7-4009-407e-9108-abb138f10d21"},{"name":"/Categories","item":[{"name":"Get Categories","id":"5e3d326d-d80d-4538-a536-68ad60fd2a7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":""},"url":"{{baseUrl}}/categories?offset=<integer>&limit=<integer>","description":"<p>Provides the <strong>Business Listings</strong> categories for each profile, detailing each category's associated industries and identifiers.</p>\n<h2 id=\"sample-requests\">Sample Requests</h2>\n<h4 id=\"python\">Python</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import requests\nurl = 'https://api.reputation.com/v3/categories?offset=0&amp;limit=3'\nheaders = {\n    'x-api-key': 'Your API Key',\n    'Content-Type': 'application/json;charset=UTF-8'\n}\nresponse = requests.get(url, headers=headers)\nif response.status_code &gt;= 200 and response.status_code &lt; 400:\n    print(response.text)\nelse:\n    print(\"Error: \", response.text)\n\n</code></pre>\n<h4 id=\"javascript-xhr\">JavaScript XHR</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/categories?offset=0&amp;limit=3', true);\nxhr.setRequestHeader('x-api-key', 'Your API Key');\nxhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8');\nxhr.onload = function() {\n    if (xhr.status &gt;= 200 &amp;&amp; xhr.status &lt; 400) {\n        console.log(xhr.responseText);\n    } else {\n        console.error(\"Error: \", xhr.responseText);\n    }\n};\nxhr.onerror = function() {\n    console.error(\"Network error\");\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>categories</td>\n<td>-</td>\n<td>Object Array</td>\n<td>An array of category objects, each detailing a specific category available on the Reputation platform.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>categories</td>\n<td>String</td>\n<td>A unique identifier for the category, often hinting at its industry or nature ex. \"RESTAURANTS_\"</td>\n</tr>\n<tr>\n<td>industryIDs</td>\n<td>categories</td>\n<td>String Array</td>\n<td>An array of specific industries or sectors associated with the category, representing finer classifications or branches within the main category ex. [\"restaurant-bars\", \"restaurant-fast-food\", \"restaurant-fine-dining\"]</td>\n</tr>\n<tr>\n<td>name</td>\n<td>categories</td>\n<td>String</td>\n<td>The human-readable name of the category, representing its primary classification or theme - ex. \"Restaurants\"</td>\n</tr>\n<tr>\n<td>paging</td>\n<td></td>\n<td>Object</td>\n<td>An object detailing pagination information for the categories list, indicating how the list can be traversed in chunks or pages.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>Integer</td>\n<td>The starting point or index from where the current list of categories begins, typically used in conjunction with the limitto paginate results - ex. 0</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>Integer</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 categories, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>String</td>\n<td>A URL pointing to the next set of category objects, allowing users or systems to fetch the subsequent page of results - ex. <a href=\"https://api.reputation.com/v3/categories?offset=3&amp;limit=3\">https://api.reputation.com/v3/categories?offset=3&amp;limit=3</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["categories"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>This offsets the start of each page by the number specified. Max offset is 100k.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 categories, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"}],"variable":[]}},"response":[{"id":"69455657-39e0-468b-ab86-e6d34f7d8421","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.reputation.com/v3/categories?offset=0&limit=3","protocol":"https","host":["api","reputation","com"],"path":["v3","categories"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"904"},{"key":"etag","value":"W/\"388-MjwZE6ks+a9ccxCdwRWj8yCESCc\""},{"key":"date","value":"Sun, 24 Sep 2023 23:12:29 GMT"},{"key":"x-envoy-upstream-service-time","value":"41"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"categories\": [\n        {\n            \"id\": \"RESTAURANTS_\",\n            \"industryIDs\": [\n                \"restaurants-bars\",\n                \"restaurants-carry-out\",\n                \"restaurants-casual-dining\",\n                \"restaurants-fast-food\",\n                \"restaurants-fine-dining\",\n                \"restaurants-restaurants-other\",\n                \"wellness-fitness-center\",\n                \"retail-furniture\"\n            ],\n            \"name\": \"Restaurants\"\n        },\n        {\n            \"id\": \"ARTS_&_ENTERTAINMENT_ARTIST\",\n            \"industryIDs\": [\n                \"entertainment-amusement-park\",\n                \"entertainment-live-performance-&-sports\",\n                \"entertainment-movie-theaters\",\n                \"entertainment-museums-and-parks\",\n                \"entertainment-other\",\n                \"wellness-fitness-center\"\n            ],\n            \"name\": \"Artist\"\n        },\n        {\n            \"id\": \"ARTS_&_ENTERTAINMENT_ARTS_ORGANIZATION\",\n            \"industryIDs\": [\n                \"entertainment-amusement-park\",\n                \"entertainment-live-performance-&-sports\",\n                \"entertainment-movie-theaters\",\n                \"entertainment-museums-and-parks\",\n                \"entertainment-other\",\n                \"wellness-fitness-center\"\n            ],\n            \"name\": \"Arts Organization\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 3,\n        \"next\": \"https://api.reputation.com/v3/categories?offset=3&limit=3\"\n    }\n}"}],"_postman_id":"5e3d326d-d80d-4538-a536-68ad60fd2a7d"}],"id":"ddd88a7c-6725-40b6-b209-d13d57822d40","description":"<p>Use this collection to see categories configured to your Reputation platform.</p>\n","_postman_id":"ddd88a7c-6725-40b6-b209-d13d57822d40"},{"name":"/Credentials","item":[{"name":"Get Oauth Status","id":"059f14b8-a191-42f3-85cb-dea50741e344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API Key>"}],"url":"{{baseUrl}}/credentials/oauth","description":"<p>This endpoint retrieves the OAuth credentials for various locations, detailing the validity and the last refresh date of connections to different online sources like Facebook, Instagram, LinkedIn and more.</p>\n<h2 id=\"sample-requests\">Sample Requests</h2>\n<h4 id=\"python\">Python</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import requests\nurl = 'https://api.reputation.com/v3/credentials/oauth'\nheaders = {\n    'Accept': 'application/json',\n    'x-api-key': 'Your API key'\n}\nresponse = requests.get(url, headers=headers)\nif response.status_code == 200:\n    print(response.json())\nelse:\n    print(f'Request failed with status: {response.status_code} Response: {response.text}')\n\n</code></pre>\n<h4 id=\"javascript-xhr\">JavaScript XHR</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/credentials/oauth', true);\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState === 4) {\n        if (xhr.status === 200) {\n            console.log(JSON.parse(xhr.responseText));\n        } else {\n            console.error('Request failed with status:', xhr.status, 'Response:', xhr.responseText);\n        }\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Here's the requested information organized into a table:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>String</td>\n<td>A unique identifier representing a specific location, store, branch, or unit of a business or entity.</td>\n</tr>\n<tr>\n<td>sources</td>\n<td>-</td>\n<td>Object Array</td>\n<td>An array detailing the online sources associated with the given location.</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>sources</td>\n<td>String</td>\n<td>Specifies the platform or online source, such as \"FACEBOOK\", \"INSTAGRAM\", \"LINKEDIN\", etc.</td>\n</tr>\n<tr>\n<td>valid</td>\n<td>sources</td>\n<td>Boolean</td>\n<td>A boolean value (true or false) that indicates whether the OAuth connection to the specific source is valid/active.</td>\n</tr>\n<tr>\n<td>lastRefreshDate</td>\n<td>sources</td>\n<td>String</td>\n<td>A timestamp representing the last time the OAuth connection was refreshed or checked.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["credentials","oauth"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"07586c2c-50a8-4104-8b1d-3546bdf4de0c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":"https://api.reputation.com/v3/credentials/oauth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"locationID\": \"CH\",\n        \"sources\": [\n            {\n                \"sourceID\": \"FACEBOOK\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T22:58:19\"\n            },\n            {\n                \"sourceID\": \"INSTAGRAM\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T22:58:20\"\n            }\n        ]\n    },\n    {\n        \"locationID\": \"SA\",\n        \"sources\": [\n            {\n                \"sourceID\": \"FACEBOOK\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T22:58:19\"\n            },\n            {\n                \"sourceID\": \"LINKEDIN\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T20:17:40\"\n            }\n        ]\n    },\n    {\n        \"locationID\": \"TG\",\n        \"sources\": [\n            {\n                \"sourceID\": \"FACEBOOK\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T22:58:19\"\n            }\n        ]\n    },\n    {\n        \"locationID\": \"AAA Waterbury\",\n        \"sources\": [\n            {\n                \"sourceID\": \"FACEBOOK\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T22:58:19\"\n            }\n        ]\n    },\n    {\n        \"locationID\": \"BP\",\n        \"sources\": [\n            {\n                \"sourceID\": \"LINKEDIN\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T20:17:40\"\n            }\n        ]\n    },\n    {\n        \"locationID\": \"DW\",\n        \"sources\": [\n            {\n                \"sourceID\": \"FACEBOOK\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T22:58:19\"\n            }\n        ]\n    },\n    {\n        \"locationID\": \"costco\",\n        \"sources\": [\n            {\n                \"sourceID\": \"TWITTER\",\n                \"valid\": true,\n                \"lastRefreshDate\": \"2023-09-25T20:03:20\"\n            }\n        ]\n    }\n]"}],"_postman_id":"059f14b8-a191-42f3-85cb-dea50741e344"}],"id":"6387f2b5-dac2-4e36-aaf5-669527bbf9df","description":"<p>This collection is designed for managing credentials within the Reputation platform and its connected sources. Currently, the <strong>Get OAuth Status</strong> endpoint is the sole endpoint available in this collection.</p>\n","_postman_id":"6387f2b5-dac2-4e36-aaf5-669527bbf9df"},{"name":"/Listing-Audits","item":[{"name":"Get Listing Audits","id":"5d6ea324-b733-48b9-a62d-b97cf78e8d08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/listing-audits?offset=<Integer>&limit=<Integer>&from=<String>&to=<String>&range=<String>&locationIDs=<String>&sourceIDs=<String>","description":"<p>This endpoint facilitates the retrieval of listing audits, allowing you to examine and assess the integrity of listings over specified time frames or for specific locations and sources with the optional query parameters.</p>\n<h2 id=\"sample-requests\">Sample Requests</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/listing-audits?limit=2', true);\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState === 4) {\n        if (xhr.status === 200) {\n            console.log(JSON.parse(xhr.responseText));\n        } else {\n            console.error('Request failed with status:', xhr.status, 'Response:', xhr.responseText);\n        }\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>listing-audits</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of audit records for different listings.</td>\n</tr>\n<tr>\n<td><code>locationID</code></td>\n<td><code>listing-audits</code></td>\n<td>String</td>\n<td>Unique identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>sourceID</code></td>\n<td><code>listing-audits</code></td>\n<td>String</td>\n<td>Specifies the platform or online source - ex. <code>FACEBOOK</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>listing-audits</code></td>\n<td>String</td>\n<td>The specific URL of the listing on the given source. - ex. <code>https://www.cars.com/dealers/92401/carscom</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td><code>listing-audits</code></td>\n<td>Boolean</td>\n<td>A boolean value indicating if the listing opted out from being audited.</td>\n</tr>\n<tr>\n<td><code>date</code></td>\n<td><code>listing-audits</code></td>\n<td>String</td>\n<td>A timestamp showing when the audit was performed - ex. <code>2023-05-17T21:46:14</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td><code>listing-audits</code></td>\n<td>String</td>\n<td>Describes the state of the audit - ex. <code>AUDIT_ONLY</code></td>\n</tr>\n<tr>\n<td><code>sourceState</code></td>\n<td><code>listing-audits</code></td>\n<td>Object</td>\n<td>Contains states related to the listing's status on the source platform.</td>\n</tr>\n<tr>\n<td><code>suspended</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is suspended.</td>\n</tr>\n<tr>\n<td><code>duplicate</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is a duplicate of another location.</td>\n</tr>\n<tr>\n<td><code>verified</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is verified.</td>\n</tr>\n<tr>\n<td><code>pendingReview</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the review of the location is pending.</td>\n</tr>\n<tr>\n<td><code>disabled</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is disabled.</td>\n</tr>\n<tr>\n<td><code>published</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is published.</td>\n</tr>\n<tr>\n<td><code>claimed</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is claimed.</td>\n</tr>\n<tr>\n<td><code>pendingVerification</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is pending verification.</td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td><code>sourceState</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location is opted out.</td>\n</tr>\n<tr>\n<td><code>nameAudit</code></td>\n<td><code>listing-audits</code></td>\n<td>Object</td>\n<td>Audit details for the name of the listing.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>nameAudit</code></td>\n<td>String</td>\n<td>The actual name of the listing as it appears or is recorded on the specified platform or source - ex. <code>Cars Now</code></td>\n</tr>\n<tr>\n<td><code>match</code></td>\n<td><code>nameAudit</code></td>\n<td>String</td>\n<td>Whether the current name in the system matches the name from the online source - valid values. <code>MATCH MISMATCH</code></td>\n</tr>\n<tr>\n<td><code>descriptionAudit</code></td>\n<td><code>listing-audits</code></td>\n<td>Object</td>\n<td>Audit details for the listing description.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>descriptionAudit</code></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Cars at great prices.</code></td>\n</tr>\n<tr>\n<td><code>match</code></td>\n<td><code>descriptionAudit</code></td>\n<td>String</td>\n<td>Whether the current description in the system matches the description from the online source - valid values. <code>MATCH</code> <code>MISMATCH</code></td>\n</tr>\n<tr>\n<td><code>placeAudit</code></td>\n<td><code>listing-audits</code></td>\n<td>Object</td>\n<td>Audit details for the listing's contact information and hours.</td>\n</tr>\n<tr>\n<td><code>addressAudit</code></td>\n<td><code>placeAudit</code></td>\n<td>Object</td>\n<td>Audit details for the listing's address.</td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>addressAudit</code></td>\n<td>Object</td>\n<td>An object representing the business's address information.</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street Address 1 - ex. <code>100 Main Street</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street Address 2 - ex. <code>Suite 300</code></td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/City - ex. <code>Chicago</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State. ex.  <br /><code>Illinois</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country two letter ISO code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>60131</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>41.881832</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-87.623177</code></td>\n</tr>\n<tr>\n<td><code>match</code></td>\n<td><code>addressAudit</code></td>\n<td>String</td>\n<td>Whether address in system matches address in online source - valid values. <code>MATCH MISMATCH</code></td>\n</tr>\n<tr>\n<td><code>businessHoursAudit</code></td>\n<td><code>placeAudit</code></td>\n<td>Object</td>\n<td>Audit details for the listing's business hours.</td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>businessHoursAudit</code></td>\n<td>Object Array</td>\n<td>An array of business hours objects.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the business hours object.</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Type of business hours - valid values. <code>Main</code>,<code>Sails</code>,<code>Service</code>,<code>Parts</code>,<code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td>businessHours</td>\n<td>String</td>\n<td>List of time period objects.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>The day associated with the <code>openTime</code>. - valid values. <code>Sunday</code>,<code>Monday</code>,<code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>The time associated with the <code>openDay</code> in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>The day associated with the <code>closedTime</code> - valid values. <code>Sunday</code>,<code>Monday</code>,<code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>The time associated with the <code>closedDay</code> in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the <code>closedDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Whether the business is open 24 hours on the current day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Whether the business is closed at the current time.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Whether the business hours object represents the primary business hours.</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>An array of special hours objects used to define hours implemented for one-off or specific circumstances like an event or construction.</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The starting calendar date for the special hours in ISO 8601 format (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time the business opens during the special hours time frame in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code> and <code>open24Hours</code> are false.</td>\n</tr>\n<tr>\n<td><code>closedTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time the business closes during the special hours time frame in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code> and <code>open24Hours</code> are false.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code>is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Whether business is closed. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>match</code></td>\n<td><code>businessHoursAudit</code></td>\n<td>String</td>\n<td>Whether business hours in system matches business hours in online source - valid values. <code>MATCH MISMATCH</code></td>\n</tr>\n<tr>\n<td><code>phonesAudit</code></td>\n<td><code>placeAudit</code></td>\n<td>Object</td>\n<td>Audit details for the listing's phone information.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>phonesAudit</code></td>\n<td>Object Array</td>\n<td>A list of phone objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Type of phone number - valid values. <code>Local</code>,<code>Mobile</code>,<code>Fax</code>,<code>TollFree</code>,<code>Tracked</code>,<code>Sales</code>,<code>Service</code>,<code>Parts</code>,<code>Emergency</code>,<code>GoogleOnly</code>,<code>FacebookOnly</code>,<code>BingOnly</code>,<code>FoursquareOnly</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number.</td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number.</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>United States</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Whether phone number is business's primary number.</td>\n</tr>\n<tr>\n<td><code>match</code></td>\n<td><code>phonesAudit</code></td>\n<td>String</td>\n<td>Whether phone numbers in the system match phone numbers from the online source - valid values. <code>MATCH</code> <code>MISMATCH</code></td>\n</tr>\n<tr>\n<td><code>websitesAudit</code></td>\n<td><code>placeAudit</code></td>\n<td>Object</td>\n<td>Audit details for the listing's website details.</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>websitesAudit</code></td>\n<td>Object Array</td>\n<td>An array of webste objects.</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values. <code>Homepage</code>,<code>Reservation</code>,<code>Order</code>,<code>GoogleHomepage</code>,<code>Covid</code>,<code>Telehealth</code>,<code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website url - ex. <code>google.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website in business's primary website.</td>\n</tr>\n<tr>\n<td><code>match</code></td>\n<td><code>websitesAudit</code></td>\n<td>String</td>\n<td>Whether websites in the system match websites in the listing - valid values. <code>MATCH</code>,<code>MISMATCH</code></td>\n</tr>\n<tr>\n<td><code>categoryAudit</code></td>\n<td><code>listing-audits</code></td>\n<td>Object</td>\n<td>Audit details for the listing's categories.</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categoryAudit</code></td>\n<td>String Array</td>\n<td>An array of categories - ex. [<code>restaurant,hotel</code>]</td>\n</tr>\n<tr>\n<td><code>match</code></td>\n<td><code>categoryAudit</code></td>\n<td>String</td>\n<td>Whether system categories match the listing's categories - valid values. <code>MATCH</code>,<code>MISMATCH</code></td>\n</tr>\n<tr>\n<td><code>paging</code></td>\n<td></td>\n<td>Object</td>\n<td>Contains details about pagination.</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td><code>paging</code></td>\n<td>Integer</td>\n<td>Specifies the starting point of the current page of results - ex. <code>0</code></td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td><code>paging</code></td>\n<td>Integer</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 listing audits, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td><code>next</code></td>\n<td><code>paging</code></td>\n<td>String</td>\n<td>The URL to fetch the next page of results - ex. <code>https://api.reputation.com/v3/listing-audits?offset=2&amp;limit=2</code></td>\n</tr>\n<tr>\n<td><code>previous</code></td>\n<td><code>paging</code></td>\n<td>String</td>\n<td>The URL to fetch the previous page of results.</td>\n</tr>\n<tr>\n<td><code>dateRange</code></td>\n<td></td>\n<td>Object</td>\n<td>Contains details about the audit's date range.</td>\n</tr>\n<tr>\n<td><code>range</code></td>\n<td><code>dateRange</code></td>\n<td>String</td>\n<td>The selected range for audit retreival - ex. <code>LifetoDate</code></td>\n</tr>\n<tr>\n<td><code>from</code></td>\n<td><code>dateRange</code></td>\n<td>String</td>\n<td>The start date for the audit retrieval period - ex. A hyphen is used <code>-</code> if there is no specified start date.</td>\n</tr>\n<tr>\n<td><code>to</code></td>\n<td><code>dateRange</code></td>\n<td>String</td>\n<td>The end date for the audit retrieval period - ex. <code>2023-09-26T23:59:59</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"listingAudits\": [\n    {\n      \"locationID\": \"string\",\n      \"sourceID\": \"string\",\n      \"url\": \"string\",\n      \"optedOut\": \"boolean\",\n      \"date\": \"string\",\n      \"state\": \"string\",\n      \"sourceState\": {\n        \"suspended\": \"boolean\",\n        \"duplicate\": \"boolean\",\n        \"verified\": \"boolean\",\n        \"pendingReview\": \"boolean\",\n        \"disabled\": \"boolean\",\n        \"published\": \"boolean\",\n        \"claimed\": \"boolean\",\n        \"pendingVerification\": \"boolean\",\n        \"optedOut\": \"boolean\"\n      },\n      \"nameAudit\": {\n        \"name\": \"string\",\n        \"match\": \"string\"\n      },\n      \"descriptionAudit\": {\n          \"description\": \"string\",\n          \"match\": \"string\"\n      },\n      \"placesAudit\": [\n        {\n          \"addressAudit\": {\n            \"address\": {\n              \"addressType\": \"string\",\n              \"streetAddress2\": \"string\",\n              \"houseNumber\": \"string\",\n              \"route\": \"string\",\n              \"locality\": \"string\",\n              \"region\": \"string\",\n              \"postalCode\": \"string\",\n              \"country\": \"string\",\n              \"latitude\": \"string\",\n              \"longitude\": \"string\",\n              \"timeZone\": \"string\",\n              \"pin\": \"string\",\n              \"streetAddress1\": \"string\"\n            },\n            \"match\": \"string\"\n          },\n          \"phonesAudit\": {\n            \"phones\": [\n              {\n                \"number\": \"string\",\n                \"primary\": \"boolean\",\n                \"country\": \"US\",\n                \"extension\": \"string\",\n                \"phoneType\": \"string\"\n              }\n            ],\n            \"match\": \"string\"\n          },\n          \"websitesAudit\": {\n            \"websites\": [\n              {\n                \"url\": \"string\",\n                \"primary\": \"boolean\",\n                \"websiteType\": \"string\"\n              }\n            ],\n            \"match\": \"string\"\n          },\n          \"businessHoursAudit\": {\n              \"businessHours\": [\n                    {\n                            \"timePeriods\": [\n                                {\n                                    \"openDay\": \"string\",\n                                    \"openTime\": \"string\",\n                                    \"closeDay\": \"string\",\n                                    \"closeTime\": \"string\",\n                                    \"open24Hours\": \"boolean\",\n                                    \"closed\": \"boolean\"\n                                },\n                            ],\n                            \"name\": \"string\",\n                            \"primary\": \"boolean\",\n                            \"specialHours\": [\n                                {\n                                    \"openTime\": \"string\",\n                                    \"closeTime\": \"string\",\n                                    \"open24Hours\": \"boolean\",\n                                    \"closed\": \"boolean\",\n                                    \"startDate\": \"string\"\n                                },\n                            ],\n                            \"businessHourType\": \"string\"\n                        }\n                ],\n              \"match\": \"string\"\n          }\n        }\n      ],\n      \"categoriesAudit\": {\n          \"category\": [\"string\"],\n          \"match\": \"string\"\n      }\n    },\n  ],\n  \"paging\": {\n    \"offset\": \"integer\",\n    \"limit\": \"integer\",\n    \"next\": \"string\"\n  },\n  \"dateRange\": {\n    \"range\": \"string\",\n    \"from\": \"string\",\n    \"to\": \"string\"\n  }\n}\n\n\n</code></pre>\n","urlObject":{"path":["listing-audits"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Specifies the starting point for the retrieved audits. Useful for pagination. Maximum value: 100,000</p>\n","type":"text/plain"},"key":"offset","value":"<Integer>"},{"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 listing audits, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<Integer>"},{"description":{"content":"<p>The start date for the audit retrieval period, formatted as an ISO Date.</p>\n<p>ex. 2023-09-23T14:32:44</p>\n","type":"text/plain"},"key":"from","value":"<String>"},{"description":{"content":"<p>The end date for the audit retrieval period, also in ISO Date format.</p>\n<p>ex. 2023-09-26T12:32:44</p>\n","type":"text/plain"},"key":"to","value":"<String>"},{"description":{"content":"<p>Pre-defined date ranges for audit retrieval. Valid options include:</p>\n<p>Valid Values: </p>\n<p>Today,Yesterday,ThisWeek,PreviousWeek,ThisMonth,PreviousMonth,ThisQuarter,PreviousQuarter,ThisYear,PreviousYear,YearToDate,LifeToDate,Last7Days,Last30Days,Last60Days,Last90Days,Last6Months,Last1Year,Last2Years,Last3Years</p>\n","type":"text/plain"},"key":"range","value":"<String>"},{"description":{"content":"<p>A comma-separated list of specific location IDs. Useful for filtering audits pertaining to certain locations.</p>\n<p>ex. CH</p>\n","type":"text/plain"},"key":"locationIDs","value":"<String>"},{"description":{"content":"<p>A comma-separated list of source IDs to further narrow down the retrieved audits by particular platforms or sites.</p>\n<p>ex. FACEBOOK</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<String>"}],"variable":[]}},"response":[{"id":"66c7073c-0aa4-4164-8b7c-57bdcd40f3b1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/listing-audits?limit=2","protocol":"https","host":["api","reputation","com"],"path":["v3","listing-audits"],"query":[{"key":"offset","value":"0","disabled":true},{"key":"limit","value":"2"},{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek","disabled":true},{"key":"locationIDs","value":"L005","disabled":true},{"key":"sourceIDs","value":"GOOGLE","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1757"},{"key":"etag","value":"W/\"6dd-2qFwJry1cOKGoMylX2DimhbOX/c\""},{"key":"date","value":"Wed, 27 Sep 2023 04:05:36 GMT"},{"key":"x-envoy-upstream-service-time","value":"53"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"listingAudits\": [\n        {\n            \"locationID\": \"SA\",\n            \"sourceID\": \"CARS\",\n            \"url\": \"https://www.cars.com/dealers/92401/carscom-betaqa-only/\",\n            \"optedOut\": false,\n            \"date\": \"2023-05-17T21:46:14\",\n            \"state\": \"AUDIT_ONLY\",\n            \"sourceState\": {\n                \"suspended\": false,\n                \"duplicate\": false,\n                \"verified\": false,\n                \"pendingReview\": false,\n                \"disabled\": false,\n                \"published\": false,\n                \"claimed\": false,\n                \"pendingVerification\": false,\n                \"optedOut\": false\n            },\n            \"nameAudit\": {\n                \"name\": \"\\\"Cars.com BetaQA Only\\\"\",\n                \"match\": \"MISMATCH\"\n            },\n            \"descriptionAudit\": null,\n            \"placesAudit\": [\n                {\n                    \"addressAudit\": {\n                        \"address\": {\n                            \"addressType\": null,\n                            \"streetAddress2\": null,\n                            \"houseNumber\": null,\n                            \"route\": null,\n                            \"locality\": \"Chicago\",\n                            \"region\": \"IL\",\n                            \"postalCode\": \"60604\",\n                            \"country\": \"USA\",\n                            \"latitude\": 0,\n                            \"longitude\": 0,\n                            \"timeZone\": null,\n                            \"pin\": null,\n                            \"streetAddress1\": \"pego pego Beta testing dealer\"\n                        },\n                        \"match\": \"MISMATCH\"\n                    },\n                    \"phonesAudit\": {\n                        \"phones\": [\n                            {\n                                \"number\": \"(777) 888-7777\",\n                                \"primary\": false,\n                                \"country\": \"US\",\n                                \"extension\": null,\n                                \"phoneType\": \"Local\"\n                            }\n                        ],\n                        \"match\": null\n                    },\n                    \"websitesAudit\": {\n                        \"websites\": [\n                            {\n                                \"url\": \"http://www.microsoft.com\",\n                                \"primary\": false,\n                                \"websiteType\": \"Homepage\"\n                            }\n                        ],\n                        \"match\": \"MISMATCH\"\n                    },\n                    \"businessHoursAudit\": null,\n                    \"serviceAreaAudit\": null\n                }\n            ],\n            \"categoriesAudit\": null\n        },\n        {\n            \"locationID\": \"SA\",\n            \"sourceID\": \"FACEBOOK\",\n            \"url\": \"https://www.facebook.com/845842458799728\",\n            \"optedOut\": false,\n            \"date\": \"2023-05-17T21:46:14\",\n            \"state\": \"NOT_PUBLISHABLE\",\n            \"sourceState\": {\n                \"suspended\": false,\n                \"duplicate\": false,\n                \"verified\": false,\n                \"pendingReview\": false,\n                \"disabled\": false,\n                \"published\": false,\n                \"claimed\": false,\n                \"pendingVerification\": false,\n                \"optedOut\": false\n            },\n            \"nameAudit\": {\n                \"name\": \"Simple Art\",\n                \"match\": \"MATCH\"\n            },\n            \"descriptionAudit\": null,\n            \"placesAudit\": null,\n            \"categoriesAudit\": null\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 2,\n        \"next\": \"https://api.reputation.com/v3/listing-audits?offset=2&limit=2\"\n    },\n    \"dateRange\": {\n        \"range\": \"LifeToDate\",\n        \"from\": \"-\",\n        \"to\": \"2023-09-26T23:59:59\"\n    }\n}"}],"_postman_id":"5d6ea324-b733-48b9-a62d-b97cf78e8d08"}],"id":"ddb11535-1517-41ca-8088-d584f3977899","description":"<p>Use this collection to perform audits and gain additional insights on your business listings.</p>\n","_postman_id":"ddb11535-1517-41ca-8088-d584f3977899"},{"name":"/Locations","item":[{"name":"Get Locations","id":"3bfb15eb-8775-438b-afa0-cf6efd458da2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<Your API key>"},{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/locations?offset=<integer>&limit=<integer>","description":"<p>Retrieves detailed location profiles, providing comprehensive data that extends beyond just basic location attributes within the Business Listing Solution. You can use this endpoint to access an array of information about specific profiles.</p>\n<p><strong>Note:</strong> The <strong>Get Locations</strong> and <strong>Get Location</strong> endpoints are designed to retrieve only <a href=\"https://support.reputation.com/s/article/What-is-an-unmanaged-Profile-and-how-to-make-it-cleansed?language=en_US\">cleansed profiles</a>. If you attempt to fetch an unmanaged profile using either endpoint, the response will result in a <strong>null</strong> value.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/locations', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>locations</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of location profiles providing detailed information about specific locations.</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The internal identification number assigned to the location - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location has opted out of listings publishing.</td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The internal name given to the location - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Location's external name - ex. <code>Majestic Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The industry identification associated with the location - ex. <code>automotive-dealer</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The ID of the parent location if there's any, otherwise <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>An array of custom variables associated with the location, containing the variable name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td><code>locations</code></td>\n<td>Object Arrary</td>\n<td>An array of custom filters applied to the location, containing the filter name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Specifies the location type whether it's <code>main</code>, <code>branch</code>, etc.</td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td><code>Location</code></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Indicates if the profile is the primary one.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Indicates the type of the location - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Definition or category of the profile - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>originalAddress</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Raw non-normalized version of the address inputed by the user</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>orignialAddress</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>originalAdress</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063-2052</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.48776</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group ex. <code>Employed</code>, <code>Independent</code></td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity.</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty type.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary.</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degrees</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>String</td>\n<td>Name of degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td><code>locations</code></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td><code>locations</code></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n<tr>\n<td><code>paging</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing request pagination details</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This offsets the start of each page by the number specified</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 locations, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This is the maximum number of objects that may be returned for the search.</td>\n</tr>\n<tr>\n<td><code>previous</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>API endpoint that will return the next page of data. If not included, this is the last page of data.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"attributes\">Attributes</h3>\n<p>Attributes are features/flags on a business listings page that allow users to know what a business offers at a glance. For example, the attributes below are located under the service options.</p>\n<img src=\"https://content.pstmn.io/7d6af8d2-f262-466c-8f64-2ab395c612c9/aW1hZ2UucG5n\" width=\"234\" height=\"313\" />\n\n<h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"locations\": [\n        {\n            \"id\": \"string\",\n            \"internalID\": \"string\",\n            \"optedOut\": \"boolean\",\n            \"linkedProfileID\": \"string\",\n            \"tenantID\": \"string\",\n            \"internalName\": \"string\",\n            \"externalName\": \"string\",\n            \"industryID\": \"string\",\n            \"parentID\": \"string\",\n            \"customVariables\": [\n                {\n                    \"name\": \"string\",\n                    \"value\": \"string\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"string\",\n                    \"value\": \"string\"\n                }\n            ],\n            \"locationType\": \"string\",\n            \"groupCode\": \"string\",\n            \"state\": \"string\",\n            \"utm\": \"boolean\",\n            \"description\": \"string\",\n            \"tags\": [\n                \"string\",\n            ],\n            \"paymentTypes\": [\n                \"string\"\n            ],\n            \"covidMessage\": \"string\",\n            \"medias\": [\n                {\n                    \"url\": \"string\",\n                    \"title\": \"string\",\n                    \"mediaType\": \"string\",\n                    \"primary\": \"boolean\"\n                }\n            ],\n            \"attributes\": [\n                {\n                    \"attributeId\": \"string\",\n                    \"boolValue\": \"boolean\"\n                },\n                {\n                    \"attributeId\": \"string\",\n                    \"values\": [\n                        {\n                            \"id\": \"string\",\n                            \"boolValue\": \"boolean\"\n                        },\n                    ]\n                }\n            ],\n            \"owners\": [\n                {\n                    \"name\": \"string\",\n                    \"role\": \"string\",\n                    \"pendingInvitation\": \"boolean\"\n                }\n            ]\n            \"socialMedias\": [\n                {\n                    \"url\": \"string\",\n                    \"socialMediaType\": \"string\"\n                },\n            ],\n            \"shortDescription\": \"string\",\n            \"medical\": {\n                \"npi\": \"string\",\n                \"stateLicenseNumber\": \"string\",\n                \"insurancesAccepted\": [\n                    {\n                        \"id\": \"string\",\n                        \"label\": \"string\"\n                    },\n                ],\n                \"acceptingNewPatients\": \"boolean\",\n                \"employerAffiliation\": \"string\",\n                \"specialties\": [\n                    {\n                        \"specialty\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"webMdCampaignId\": \"string\",\n                \"insuranceNetworks\": [\n                    {\n                        \"insuranceNetwork\": {\n                            \"id\": \"string\",\n                            \"label\": \"string\"\n                        }\n                    },\n                ]\n            },\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"string\",\n                        \"label\": \"string\"\n                    },\n                    \"primary\": \"boolean\"\n                }\n            ],\n            \"places\": [\n                {\n                    \"placeID\": \"string\",\n                    \"officeName\": \"string\",\n                    \"address\": {\n                        \"streetAddress2\": \"string\",\n                        \"locality\": \"string\",\n                        \"region\": \"string\",\n                        \"postalCode\": \"string\",\n                        \"country\": \"string\",\n                        \"latitude\": \"string\",\n                        \"longitude\": \"string\",\n                        \"streetAddress1\": \"string\"\n                    },\n                    \"businessHours\": [\n                        {\n                            \"timePeriods\": [\n                                {\n                                    \"openDay\": \"string\",\n                                    \"openTime\": \"string\",\n                                    \"closeDay\": \"string\",\n                                    \"closeTime\": \"string\",\n                                    \"open24Hours\": \"boolean\",\n                                    \"closed\": \"boolean\"\n                                },\n                            ],\n                            \"name\": \"string\",\n                            \"primary\": \"boolean\",\n                            \"specialHours\": [\n                                {\n                                    \"openTime\": \"string\",\n                                    \"closeTime\": \"string\",\n                                    \"open24Hours\": \"boolean\",\n                                    \"closed\": \"boolean\",\n                                    \"startDate\": \"string\"\n                                },\n                            ],\n                            \"businessHourType\": \"string\"\n                        }\n                    ],\n                    \"phones\": [\n                        {\n                            \"number\": \"string\",\n                            \"extension\": \"string\",\n                            \"primary\": \"boolean\",\n                            \"country\": \"string\",\n                            \"phoneType\": \"string\"\n                        }\n                    ],\n                    \"websites\": [\n                        {\n                            \"url\": \"string\",\n                            \"primary\": \"boolean\",\n                            \"websiteType\": \"string\"\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"email\": \"string\",\n                            \"primary\": \"boolean\"\n                        },\n                    ],\n                    \"primary\": \"boolean\",\n                    \"officeStatus\": {\n                        \"officeState\": \"string\",\n                        \"operationalDate\": \"string\"\n                    },\n                    \"originalAddress\": {\n                        \"streetAddress2\": \"string\",\n                        \"locality\": \"string\",\n                        \"region\": \"string\",\n                        \"postalCode\": \"string\",\n                        \"country\": \"string\",\n                        \"latitude\": \"string\",\n                        \"longitude\": \"string\",\n                        \"streetAddress1\": \"string\"\n                    },\n                    \"linkedLuid\": \"integer\",\n                    \"relatedLocations\": [\n                        {\n                            \"type\": \"integer\",\n                            \"placeId\": \"string\"\n                        }\n                    ]\n                }\n            ],\n            \"professional\": {\n                \"title\": \"string\",\n                \"appellation\": \"string\",\n                \"degrees\": [\n                    {\n                        \"degree\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ]\n                \"firstName\": \"string\"\n                \"lastName\": \"string\",\n                \"middleName\": \"string\",\n                \"gender\": \"string\",\n                \"birthday\": \"string\",\n                \"biography\": \"string\",\n                \"certifications\": [\n                    {\n                        \"number\": \"string\",\n                        \"country\": \"string\",\n                        \"endDate\": \"string\",\n                        \"name\": \"string\",\n                        \"issuer\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"affiliations\": [\n                    {\n                        \"affiliation\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"educations\": [\n                    {\n                        \"type\": \"string\",\n                        \"institution\": \"string\",\n                        \"graduationYear\": \"string\",\n                        \"degree\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"languages\": [\n                    \"string\",\n                ],\n            },\n            \"serviceArea\": {\n                \"places\": [\"string\"],\n                \"businessType\": \"string\"\n            },\n            \"richKnowledge\": {\n                \"titleTag\": \"string\",\n                \"metaDescription\": \"string\",\n                \"metaKeywords\": [\"string\"],\n                \"htmlDescription\": \"string\",\n                \"zipCodesServed\": [\"string\"],\n                \"areasServed\": [\"string\"],\n                \"professionalStatement\": \"string\"\n            }\n            \"type\": \"string\",\n            \"primaryProfile\": \"boolean\",\n            \"profileDefinition\": \"string\",\n            \"createdDate\": \"string\",\n            \"updatedDate\": \"string\",\n            \"distance\": \"Double\",\n            \"slug\": \"string\"\n        },\n    ],\n    \"paging\": {\n        \"offset\": \"integer\",\n        \"limit\": \"integer\",\n        \"previous\": \"integer\",\n        \"next\": \"string\",\n        \"count\": \"integer\"\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["locations"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Determines the starting point in the dataset from which data retrieval begins. It is useful for pagination, allowing users to skip a specified number of records before starting to fetch. Max offset is 35k.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 locations, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"}],"variable":[]}},"response":[{"id":"3e227a9a-d7de-4875-93ff-35bb7b9537b8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.reputation.com/v3/locations?offset=0&limit=2","protocol":"https","host":["api","reputation","com"],"path":["v3","locations"],"query":[{"key":"offset","value":"0","description":"This offsets the start of each page by the number specified. Max offset is 35k."},{"key":"limit","value":"2","description":"This is the maximum number of objects that may be returned. A query may return fewer than the value of limit due to filtering. Default limit is 20. Max limit is 2000."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"3247"},{"key":"etag","value":"W/\"caf-ys3g/zOdkmEIwxKxZ62+toUpkdc\""},{"key":"date","value":"Thu, 03 Aug 2023 09:01:34 GMT"},{"key":"x-envoy-upstream-service-time","value":"181"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"locations\": [\n        {\n            \"id\": \"SA\",\n            \"internalID\": \"737476\",\n            \"optedOut\": false,\n            \"internalName\": \"Simple Art\",\n            \"industryID\": \"automotive-dealer\",\n            \"parentID\": null,\n            \"customVariables\": [\n                {\n                    \"name\": \"test-inventory\",\n                    \"value\": \"www.apple.com\"\n                },\n                {\n                    \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n                    \"value\": \"MANUAL\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"Gallery\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"Simple Art\",\n            \"description\": \"Simple Art Page Descripton\",\n            \"shortDescription\": \"Simple Art Page\",\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                        \"label\": \"Open Heart Surgery\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"Simple Art\",\n                    \"address\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.48805\",\n                        \"longitude\": \"-122.22439\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": [\n                        {\n                            \"number\": \"(408) 900-9080\",\n                            \"primary\": true,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Local\"\n                        },\n                        {\n                            \"number\": \"(408) 990-9090\",\n                            \"primary\": false,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Mobile\"\n                        }\n                    ],\n                    \"websites\": [\n                        {\n                            \"url\": \"http://www.yahoo.com\",\n                            \"primary\": true,\n                            \"websiteType\": \"Homepage\"\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"email\": \"repdef40+1990@gmail.com\",\n                            \"primary\": true\n                        }\n                    ],\n                    \"primary\": true,\n                    \"officeStatus\": {\n                        \"officeState\": \"Opening_Soon\",\n                        \"operationalDate\": \"2021-05-01\"\n                    },\n                    \"originalAddress\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.48805\",\n                        \"longitude\": \"-122.22439\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"RoofTop\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"SA\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"RoofTop\",\n            \"createdDate\": \"2018-03-14T05:08:53\",\n            \"updatedDate\": \"2023-04-07T07:45:01\",\n            \"distance\": null,\n            \"slug\": \"simple-art-simple-art-redwood-city-ca\"\n        },\n        {\n            \"id\": \"BP\",\n            \"internalID\": \"737493\",\n            \"optedOut\": false,\n            \"internalName\": \"Bay Plumbing & test (BP)\",\n            \"industryID\": \"automotive-parts\",\n            \"parentID\": null,\n            \"customVariables\": [\n                {\n                    \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n                    \"value\": \"MANUAL\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"N/A\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"Bay Plumbing\",\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"MISSING_CATEGORY\",\n                        \"label\": \"Missing Category\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"Bay Plumbing\",\n                    \"address\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.4880518\",\n                        \"longitude\": \"-122.2243949\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": [\n                        {\n                            \"number\": \"(650) 367-9493\",\n                            \"primary\": true,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Local\"\n                        }\n                    ],\n                    \"websites\": [\n                        {\n                            \"url\": \"http://bayplumbing.net\",\n                            \"primary\": true,\n                            \"websiteType\": \"Homepage\"\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"email\": \"\",\n                            \"primary\": true\n                        }\n                    ],\n                    \"primary\": true,\n                    \"officeStatus\": null,\n                    \"originalAddress\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063-2052\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.48776\",\n                        \"longitude\": \"-122.22447\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"RoofTop\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"BP\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"RoofTop\",\n            \"createdDate\": \"2018-03-14T05:08:53\",\n            \"updatedDate\": \"2023-04-07T07:45:01\",\n            \"distance\": null,\n            \"slug\": \"bay-plumbing-bay-plumbing-redwood-city-ca\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 2,\n        \"next\": \"https://api.reputation.com/v3/locations?offset=2&limit=2\"\n    }\n}"}],"_postman_id":"3bfb15eb-8775-438b-afa0-cf6efd458da2"},{"name":"Save Location","id":"e6e8bb54-bd15-45a3-bc9a-79b0ee8a852e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"location\": {\n    \"optedOut\": \"boolean\",\n    \"internalName\": \"string\",\n    \"industryID\": \"string\",\n    \"externalName\": \"string\",\n    \"places\": [\n      {\n        \"officeName\": \"string\",\n        \"address\": {\n          \"streetAddress1\": \"string\",\n          \"locality\": \"string\",\n          \"region\": \"string\",\n          \"postalCode\": \"string\",\n          \"country\": \"string\"\n        },\n        \"phones\": [\n          {\n            \"number\": \"string\",\n            \"primary\": \"boolean\",\n            \"country\": \"string\",\n            \"phoneType\": \"string\"\n          }\n        ],\n        \"primary\": \"boolean\"\n      }\n    ],\n    \"description\": \"string\",\n    \"categories\": [\n      {\n        \"category\": {\n          \"label\": \"string\"\n        },\n        \"primary\": \"boolean\"\n      }\n    ],\n    \"utm\": \"boolean\",\n    \"attributes\": [\n      {\n        \"attributeId\": \"string\",\n        \"boolValue\": \"boolean\"\n      },\n      {\n        \"attributeId\": \"string\",\n        \"values\": [\n          {\n            \"boolValue\": \"boolean\"\n          },\n          {\n            \"boolValue\": \"boolean\"\n          }\n        ]\n      }\n    ],\n    \"type\": \"string\",\n    \"createdDate\": \"string\",\n    \"updatedDate\": \"string\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/locations","description":"<p>Let's you submit a detailed location profile, providing comprehensive data that extends beyond just basic location attributes within the Business Listing Solution. You can also use this endpoint to add our update information about specific profile.</p>\n<p><strong>Please note:</strong> Incremental changes are not supported. All profile data must be included in each request to prevent existing data from being overwritten or removed.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('POST', 'https://api.reputation.com/v3/locations', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8');\nxhr.onreadystatechange = function () {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nvar data = {\n    \"location\": [\n        {\n            \"id\": \"SA\",\n            \"internalID\": \"737476\",\n            \"optedOut\": false,\n            \"internalName\": \"Simple Art\",\n            \"industryID\": \"automotive-dealer\",\n            \"parentID\": null,\n            \"customVariables\": [\n                {\n                    \"name\": \"test-inventory\",\n                    \"value\": \"www.apple.com\"\n                },\n                {\n                    \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n                    \"value\": \"MANUAL\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"Gallery\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"Simple Art\",\n            \"description\": \"Simple Art Page Descripton\",\n            \"shortDescription\": \"Simple Art Page\",\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                        \"label\": \"Open Heart Surgery\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"Simple Art\",\n                    \"address\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.48805\",\n                        \"longitude\": \"-122.22439\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": [\n                        {\n                            \"number\": \"(408) 900-9080\",\n                            \"primary\": true,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Local\"\n                        },\n                        {\n                            \"number\": \"(408) 990-9090\",\n                            \"primary\": false,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Mobile\"\n                        },\n                        {\n                            \"number\": \"(408) 990-9090\",\n                            \"primary\": false,\n                            \"country\": \"US\",\n                            \"phoneType\": \"WhatsApp\"\n                        },\n                        {\n                            \"number\": \"(408) 990-9090\",\n                            \"primary\": false,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Text_SMS\"\n                        }\n                    ],\n                    \"websites\": [\n                        {\n                            \"url\": \"http://www.yahoo.com\",\n                            \"primary\": true,\n                            \"websiteType\": \"Homepage\"\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"email\": \"repdef40+1990@gmail.com\",\n                            \"primary\": true\n                        }\n                    ],\n                    \"primary\": true,\n                    \"officeStatus\": {\n                        \"officeState\": \"Opening_Soon\",\n                        \"operationalDate\": \"2021-05-01\"\n                    },\n                    \"originalAddress\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.48805\",\n                        \"longitude\": \"-122.22439\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"RoofTop\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"SA\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"RoofTop\",\n            \"createdDate\": \"2018-03-14T05:08:53\",\n            \"updatedDate\": \"2023-04-07T07:45:01\",\n            \"distance\": null,\n            \"slug\": \"simple-art-simple-art-redwood-city-ca\"\n        }\n    ]\n};\nxhr.send(JSON.stringify(data));\n\n</code></pre>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<p>The following table is a list of parameters you can add to the body of your request to create or update your profile. It notes which parameters are <strong>required</strong>. The term <strong>required by parent</strong> is used for nested parameters that are required when an optional parent paremeter is included in the request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>location</code> <strong>(Required)</strong></td>\n<td></td>\n<td>Object</td>\n<td>Profile object</td>\n</tr>\n<tr>\n<td><code>id</code> <strong>(Required)</strong></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Location's unique id - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Location's unique internal id. This is a read-only attribute. - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td><code>location</code></td>\n<td>Boolean</td>\n<td>Refers to enrolling the location profile in listings publishing - ex. <code>false</code>  <br /><strong>This is a read-only attribute.</strong></td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Profile's internal name - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code> <strong>(Required)</strong></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Profile's external name - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Profile's industry id - ex. <code>automotive-parts</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Parent-child relationship between multiple locations. Used for businesses or locations that exist within another location</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td><code>location</code></td>\n<td>Object Array</td>\n<td>List of custom variables. Custom variables can be used to pass metadata you want stored for reporting or integration mapping.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td><code>location</code></td>\n<td>Object Arrary</td>\n<td>List of custom filters. Custom filters can be used to pass metadata you want stored for reporting or integration mapping.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Used to indicate the type of location. Example: main, parts, sales, service, etc. Required if the location is a departmental listing location - ex. <code>main</code></td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td><code>location</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is the primary linked profile - ex. <code>true</code></td>\n</tr>\n<tr>\n<td><code>type</code> <strong>(Required)</strong></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Location type - ex. <code>Rooftop</code>  <br /><code>Person</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Profile definition - ex. <code>RoofTop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td><code>location</code></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code> <strong>(Required)</strong></td>\n<td><code>location</code></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code> <strong>(Required)</strong></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code> <strong>(Required)</strong></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code> <strong>(Required)</strong></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code> <strong>(Required)</strong></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code> <strong>(Required)</strong></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code> <strong>(Required by parent)</strong></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code> <strong>(Required by parent)</strong></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code> <strong>(Required by parent)</strong></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code> <strong>(Required by parent)</strong></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code><strong>(Required by parent)</strong></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code> <strong>(Required by parent)</strong></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code> <strong>(Required by parent)</strong></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code> <strong>(Required by parent)</strong></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code> <strong>(Required by parent)</strong></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code> <strong>(Reqiured by Parent)</strong></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code> <strong>(Required by parent)</strong></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code> <strong>(Required by parent)</strong></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code> <strong>(Required by parent)</strong></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code>, <code>BingHomepage</code></td>\n</tr>\n<tr>\n<td><code>url</code> <strong>(Required by parent)</strong></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code> <strong>(Required by parent)</strong></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code><strong>(Required by parent)</strong></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code><strong>(Required by parent)</strong></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code><strong>(Required by parent)</strong></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code> <strong>(Required)</strong></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code> <strong>(Required by parent)</strong></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code> <strong>(Required by parent)</strong></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code> <strong>(Required by parent)</strong></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code> <strong>(Required by parent)</strong></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code> <strong>(Required by parent)</strong></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code> <strong>(Required by parent)</strong></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group. Example: Employed, Independent</td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degree objects</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>Object</td>\n<td>The degree object</td>\n</tr>\n<tr>\n<td><code>id</code> <strong>(Required by parent)</strong></td>\n<td><code>degree</code></td>\n<td>String</td>\n<td>Id of the degree object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>degree</code></td>\n<td>String</td>\n<td>Descriptive text for the degree object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code> <strong>(Required)</strong></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td><code>locations</code></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td><code>locations</code></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n<tr>\n<td><code>paging</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing request pagination details</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This offsets the start of each page by the number specified</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This is the maximum number of objects that may be returned. A query may return fewer than the value of limit due to filtering.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This is the maximum number of objects that may be returned for the search.</td>\n</tr>\n<tr>\n<td><code>previous</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>API endpoint that will return the next page of data. If not included, this is the last page of data.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"attributes\">Attributes</h3>\n<p>Attributes are features/flags on a business listings page that allow users to know what a business offers at a glance. For example, the attributes below are located under the service options</p>\n<img src=\"https://content.pstmn.io/7d6af8d2-f262-466c-8f64-2ab395c612c9/aW1hZ2UucG5n\" width=\"234\" height=\"313\" />","urlObject":{"path":["locations"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Validates the request without actually creating a profile when set to true.</p>\n","type":"text/plain"},"key":"validateOnly","value":"<boolean>"},{"disabled":true,"description":{"content":"<p>Checks the request to ensure listings can be successfully created when set to true.</p>\n","type":"text/plain"},"key":"validateListings","value":"<boolean>"},{"disabled":true,"description":{"content":"<p>A list of source Ids, separated by commas. If \"validateListings\" is true and \"validateSources\" is not specified, all sources will undergo validation.</p>\n","type":"text/plain"},"key":"validateSources","value":"<string>"},{"disabled":true,"description":{"content":"<p>Bypasses the address normalization process when set to true.</p>\n","type":"text/plain"},"key":"skipAddressNormalization","value":"<boolean>"},{"disabled":true,"description":{"content":"<p>When set to true, irrelevant attributes for the primary category will be removed, retaining only the applicable ones.</p>\n","type":"text/plain"},"key":"optimizeAttributes","value":"<boolean>"},{"disabled":true,"description":{"content":"<p>If set to true and a media logo is provided, this logo will replace the current location's logo.</p>\n","type":"text/plain"},"key":"useLogoForLocation","value":"<boolean>"}],"variable":[]}},"response":[{"id":"e34c7188-8105-4413-a757-1d85984cbaec","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n    \"location\": [\n        {\n            \"id\": \"SA\",\n            \"internalID\": \"737476\",\n            \"optedOut\": false,\n            \"internalName\": \"Simple Art\",\n            \"industryID\": \"automotive-dealer\",\n            \"parentID\": null,\n            \"customVariables\": [\n                {\n                    \"name\": \"test-inventory\",\n                    \"value\": \"www.apple.com\"\n                },\n                {\n                    \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n                    \"value\": \"MANUAL\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"Gallery\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"Simple Art\",\n            \"description\": \"Simple Art Page Descripton\",\n            \"shortDescription\": \"Simple Art Page\",\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                        \"label\": \"Open Heart Surgery\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"Simple Art\",\n                    \"address\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.48805\",\n                        \"longitude\": \"-122.22439\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": [\n                        {\n                            \"number\": \"(408) 900-9080\",\n                            \"primary\": true,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Local\"\n                        },\n                        {\n                            \"number\": \"(408) 990-9090\",\n                            \"primary\": false,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Mobile\"\n                        }\n                    ],\n                    \"websites\": [\n                        {\n                            \"url\": \"http://www.yahoo.com\",\n                            \"primary\": true,\n                            \"websiteType\": \"Homepage\"\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"email\": \"repdef40+1990@gmail.com\",\n                            \"primary\": true\n                        }\n                    ],\n                    \"primary\": true,\n                    \"officeStatus\": {\n                        \"officeState\": \"Opening_Soon\",\n                        \"operationalDate\": \"2021-05-01\"\n                    },\n                    \"originalAddress\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Redwood City\",\n                        \"region\": \"CA\",\n                        \"postalCode\": \"94063\",\n                        \"country\": \"US\",\n                        \"latitude\": \"37.48805\",\n                        \"longitude\": \"-122.22439\",\n                        \"streetAddress1\": \"1001 Marshall St\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"RoofTop\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"SA\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"RoofTop\",\n            \"createdDate\": \"2018-03-14T05:08:53\",\n            \"updatedDate\": \"2023-04-07T07:45:01\",\n            \"distance\": null,\n            \"slug\": \"simple-art-simple-art-redwood-city-ca\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.reputation.com/v3/locations","protocol":"https","host":["api","reputation","com"],"path":["v3","locations"],"query":[{"key":"validateOnly","value":"true","disabled":true},{"key":"validateListings","value":"true","disabled":true},{"key":"validateSources","value":"dolor ut","disabled":true},{"key":"skipAddressNormalization","value":"true","disabled":true},{"key":"optimizeAttributes","value":"true","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"346345\",\n  \"optedOut\": false,\n  \"internalName\": \"Store 100\",\n  \"industryID\": \"home-services\",\n  \"externalName\": \"Johns Plumbing Company\",\n  \"places\": [\n    {\n      \"officeName\": \"Johns Plumbing Company\",\n      \"address\": {\n        \"streetAddress1\": \"123 Main Blvd\",\n        \"streetAddress2\": null,\n        \"locality\": \"Redwood City\",\n        \"region\": \"CA\",\n        \"postalCode\": \"95063\",\n        \"country\": \"US\"\n      },\n      \"businessHours\": null,\n      \"phones\": [\n        {\n          \"number\": \"(650) 555-2700\",\n          \"primary\": true,\n          \"country\": \"US\",\n          \"phoneType\": \"Local\"\n        }\n      ],\n      \"primary\": true\n    }\n  ],\n  \"description\": \"Johns Plumbing Company\",\n  \"categories\": [\n    {\n      \"category\": {\n        \"id\": \"GENERAL_CONTRACTOR\",\n        \"label\": \"General Contractor\"\n      },\n      \"primary\": true\n    }\n  ],\n  \"paymentTypes\": null,\n  \"tags\": null,\n  \"utm\": false,\n  \"attributes\": [\n    {\n      \"attributeId\": \"pay_debit_card\",\n      \"boolValue\": false\n    },\n    {\n      \"attributeId\": \"pay_credit_card_types_accepted\",\n      \"values\": [\n        {\n          \"id\": \"american_express\",\n          \"boolValue\": false\n        },\n        {\n          \"id\": \"visa\",\n          \"boolValue\": true\n        }\n      ]\n    }\n  ],\n  \"type\": \"RoofTop\",\n  \"createdDate\": \"2014-01-23T14:32:44\",\n  \"updatedDate\": \"2014-01-23T14:32:44\"\n}"}],"_postman_id":"e6e8bb54-bd15-45a3-bc9a-79b0ee8a852e"},{"name":"Search Locations","id":"e60c20a2-2016-4e2d-93f2-26be1f349cd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/locations-search","description":"<p>Facilitates the searching of profiles based on various parameters like name, location, type, and more. It's designed to offer a comprehensive search capability for you to filter and retrieve specific profiles from the vast Business Listing Solution database.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/locations-search?type=Person&amp;primaryProfile=true&amp;sort=ASC&amp;offset=0&amp;limit=20', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>locations</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of location profiles providing detailed information about specific locations.</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The internal identification number assigned to the location - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location has opted out of listings publishing.</td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The internal name given to the location - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Location's external name - ex. <code>Majestic Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The industry identification associated with the location - ex. <code>automotive-dealer</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The ID of the parent location if there's any, otherwise <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>An array of custom variables associated with the location, containing the variable name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td><code>locations</code></td>\n<td>Object Arrary</td>\n<td>An array of custom filters applied to the location, containing the filter name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Specifies the location type whether it's <code>main</code>, <code>branch</code>, etc.</td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td><code>Location</code></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Indicates if the profile is the primary one.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Indicates the type of the location - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Definition or category of the profile - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>originalAddress</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Raw non-normalized version of the address inputed by the user</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>orignialAddress</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>originalAdress</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063-2052</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.48776</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group ex. <code>Employed</code>, <code>Independent</code></td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity.</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty type.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary.</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degrees</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>String</td>\n<td>Name of degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td><code>locations</code></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td><code>locations</code></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n<tr>\n<td><code>paging</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing request pagination details</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This offsets the start of each page by the number specified</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 locations, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This is the maximum number of objects that may be returned for the search.</td>\n</tr>\n<tr>\n<td><code>previous</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>API endpoint that will return the next page of data. If not included, this is the last page of data.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"locations\": [\n        {\n            \"id\": \"string\",\n            \"internalID\": \"string\",\n            \"optedOut\": \"boolean\",\n            \"linkedProfileID\": \"string\",\n            \"tenantID\": \"string\",\n            \"internalName\": \"string\",\n            \"externalName\": \"string\",\n            \"industryID\": \"string\",\n            \"parentID\": \"string\",\n            \"customVariables\": [\n                {\n                    \"name\": \"string\",\n                    \"value\": \"string\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"string\",\n                    \"value\": \"string\"\n                }\n            ],\n            \"locationType\": \"string\",\n            \"groupCode\": \"string\",\n            \"state\": \"string\",\n            \"utm\": \"boolean\",\n            \"description\": \"string\",\n            \"tags\": [\n                \"string\",\n            ],\n            \"paymentTypes\": [\n                \"string\"\n            ],\n            \"covidMessage\": \"string\",\n            \"medias\": [\n                {\n                    \"url\": \"string\",\n                    \"title\": \"string\",\n                    \"mediaType\": \"string\",\n                    \"primary\": \"boolean\"\n                }\n            ],\n            \"attributes\": [\n                {\n                    \"attributeId\": \"string\",\n                    \"boolValue\": \"boolean\"\n                },\n                {\n                    \"attributeId\": \"string\",\n                    \"values\": [\n                        {\n                            \"id\": \"string\",\n                            \"boolValue\": \"boolean\"\n                        },\n                    ]\n                }\n            ],\n            \"owners\": [\n                {\n                    \"name\": \"string\",\n                    \"role\": \"string\",\n                    \"pendingInvitation\": \"boolean\"\n                }\n            ]\n            \"socialMedias\": [\n                {\n                    \"url\": \"string\",\n                    \"socialMediaType\": \"string\"\n                },\n            ],\n            \"shortDescription\": \"string\",\n            \"medical\": {\n                \"npi\": \"string\",\n                \"stateLicenseNumber\": \"string\",\n                \"insurancesAccepted\": [\n                    {\n                        \"id\": \"string\",\n                        \"label\": \"string\"\n                    },\n                ],\n                \"acceptingNewPatients\": \"boolean\",\n                \"employerAffiliation\": \"string\",\n                \"specialties\": [\n                    {\n                        \"specialty\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"webMdCampaignId\": \"string\",\n                \"insuranceNetworks\": [\n                    {\n                        \"insuranceNetwork\": {\n                            \"id\": \"string\",\n                            \"label\": \"string\"\n                        }\n                    },\n                ]\n            },\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"string\",\n                        \"label\": \"string\"\n                    },\n                    \"primary\": \"boolean\"\n                }\n            ],\n            \"places\": [\n                {\n                    \"placeID\": \"string\",\n                    \"officeName\": \"string\",\n                    \"address\": {\n                        \"streetAddress2\": \"string\",\n                        \"locality\": \"string\",\n                        \"region\": \"string\",\n                        \"postalCode\": \"string\",\n                        \"country\": \"string\",\n                        \"latitude\": \"string\",\n                        \"longitude\": \"string\",\n                        \"streetAddress1\": \"string\"\n                    },\n                    \"businessHours\": [\n                        {\n                            \"timePeriods\": [\n                                {\n                                    \"openDay\": \"string\",\n                                    \"openTime\": \"string\",\n                                    \"closeDay\": \"string\",\n                                    \"closeTime\": \"string\",\n                                    \"open24Hours\": \"boolean\",\n                                    \"closed\": \"boolean\"\n                                },\n                            ],\n                            \"name\": \"string\",\n                            \"primary\": \"boolean\",\n                            \"specialHours\": [\n                                {\n                                    \"openTime\": \"string\",\n                                    \"closeTime\": \"string\",\n                                    \"open24Hours\": \"boolean\",\n                                    \"closed\": \"boolean\",\n                                    \"startDate\": \"string\"\n                                },\n                            ],\n                            \"businessHourType\": \"string\"\n                        }\n                    ],\n                    \"phones\": [\n                        {\n                            \"number\": \"string\",\n                            \"extension\": \"string\",\n                            \"primary\": \"boolean\",\n                            \"country\": \"string\",\n                            \"phoneType\": \"string\"\n                        }\n                    ],\n                    \"websites\": [\n                        {\n                            \"url\": \"string\",\n                            \"primary\": \"boolean\",\n                            \"websiteType\": \"string\"\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"email\": \"string\",\n                            \"primary\": \"boolean\"\n                        },\n                    ],\n                    \"primary\": \"boolean\",\n                    \"officeStatus\": {\n                        \"officeState\": \"string\",\n                        \"operationalDate\": \"string\"\n                    },\n                    \"originalAddress\": {\n                        \"streetAddress2\": \"string\",\n                        \"locality\": \"string\",\n                        \"region\": \"string\",\n                        \"postalCode\": \"string\",\n                        \"country\": \"string\",\n                        \"latitude\": \"string\",\n                        \"longitude\": \"string\",\n                        \"streetAddress1\": \"string\"\n                    },\n                    \"linkedLuid\": \"integer\",\n                    \"relatedLocations\": [\n                        {\n                            \"type\": \"integer\",\n                            \"placeId\": \"string\"\n                        }\n                    ]\n                }\n            ],\n            \"professional\": {\n                \"title\": \"string\",\n                \"appellation\": \"string\",\n                \"degrees\": [\n                    {\n                        \"degree\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ]\n                \"firstName\": \"string\"\n                \"lastName\": \"string\",\n                \"middleName\": \"string\",\n                \"gender\": \"string\",\n                \"birthday\": \"string\",\n                \"biography\": \"string\",\n                \"certifications\": [\n                    {\n                        \"number\": \"string\",\n                        \"country\": \"string\",\n                        \"endDate\": \"string\",\n                        \"name\": \"string\",\n                        \"issuer\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"affiliations\": [\n                    {\n                        \"affiliation\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"educations\": [\n                    {\n                        \"type\": \"string\",\n                        \"institution\": \"string\",\n                        \"graduationYear\": \"string\",\n                        \"degree\": \"string\",\n                        \"primary\": \"boolean\"\n                    }\n                ],\n                \"languages\": [\n                    \"string\",\n                ],\n            },\n            \"serviceArea\": {\n                \"places\": [\"string\"],\n                \"businessType\": \"string\"\n            },\n            \"richKnowledge\": {\n                \"titleTag\": \"string\",\n                \"metaDescription\": \"string\",\n                \"metaKeywords\": [\"string\"],\n                \"htmlDescription\": \"string\",\n                \"zipCodesServed\": [\"string\"],\n                \"areasServed\": [\"string\"],\n                \"professionalStatement\": \"string\"\n            }\n            \"type\": \"string\",\n            \"primaryProfile\": \"boolean\",\n            \"profileDefinition\": \"string\",\n            \"createdDate\": \"string\",\n            \"updatedDate\": \"string\",\n            \"distance\": \"Double\",\n            \"slug\": \"string\"\n        },\n    ],\n    \"paging\": {\n        \"offset\": \"integer\",\n        \"limit\": \"integer\",\n        \"previous\": \"integer\",\n        \"next\": \"string\",\n        \"count\": \"integer\"\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["locations-search"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>First name of the service provider.</p>\n","type":"text/plain"},"key":"firstName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Last name of the service provider.</p>\n","type":"text/plain"},"key":"lastName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Unique identifier for a specific place.</p>\n","type":"text/plain"},"key":"placeID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Identifier representing a parent location. Useful for businesses or entities located within a larger establishment.</p>\n","type":"text/plain"},"key":"parentID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Identifier of the linked profile.</p>\n","type":"text/plain"},"key":"linkedProfileID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Name of the specific office or establishment.</p>\n","type":"text/plain"},"key":"officeName","value":"<string>"},{"disabled":true,"description":{"content":"<p>City or locality where the provider is based.</p>\n","type":"text/plain"},"key":"locality","value":"<string>"},{"disabled":true,"description":{"content":"<p>State or region where the provider operates.</p>\n","type":"text/plain"},"key":"region","value":"<string>"},{"disabled":true,"description":{"content":"<p>ZIP or postal code of the provider's location.</p>\n","type":"text/plain"},"key":"postalCode","value":"<string>"},{"disabled":true,"description":{"content":"<p>Gender of the provider. Accepts values: Male, Female, Unknown.</p>\n","type":"text/plain"},"key":"gender","value":"<string>"},{"disabled":true,"description":{"content":"<p>Type of phone. Valid values are: Local, Mobile, Fax, TollFree, Tracked, Sales, Service, Parts, Emergency, GoogleOnly, FacebookOnly, BingOnly, FoursquareOnly, Other</p>\n","type":"text/plain"},"key":"phoneType","value":"<string>"},{"disabled":true,"description":{"content":"<p>Specifies the type of the associated website. Options include: Homepage, Reservation, Order, GoogleHomepage, Covid, Telehealth, Menu</p>\n","type":"text/plain"},"key":"websiteType","value":"<string>"},{"disabled":true,"description":{"content":"<p>Defines the profile type. Possible values are: Person, RoofTop.</p>\n","type":"text/plain"},"key":"type","value":"<string>"},{"disabled":true,"description":{"content":"<p>Classification or definition of the profile.</p>\n","type":"text/plain"},"key":"profileDefinition","value":"<string>"},{"disabled":true,"description":{"content":"<p>A list of category identifiers.</p>\n","type":"text/plain"},"key":"categoryID","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Names of categories. For names containing commas, encapsulate within double quotes.</p>\n","type":"text/plain"},"key":"categoryName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Tags associated with the profile, accepted in JSON or as comma-separated values.</p>\n","type":"text/plain"},"key":"tag","value":"<string>"},{"disabled":true,"description":{"content":"<p>A list of associated insurance identifiers.</p>\n","type":"text/plain"},"key":"insuranceID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Names of insurance providers.</p>\n","type":"text/plain"},"key":"insuranceName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Languages spoken or offered by the provider.</p>\n","type":"text/plain"},"key":"language","value":"<string>"},{"disabled":true,"description":{"content":"<p>Whether accepting new patients. Valid values are: true or false</p>\n","type":"text/plain"},"key":"acceptingNewPatients","value":"<string>"},{"disabled":true,"description":{"content":"<p>List of Specialty Ids</p>\n","type":"text/plain"},"key":"specialtyID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Indicates if the provider is accepting new patients. Accepts values: true, false.</p>\n","type":"text/plain"},"key":"primaryProfile","value":"<string>"},{"disabled":true,"description":{"content":"<p>Latitude for a radius-based search. Requires both longitude and radius when specified.</p>\n","type":"text/plain"},"key":"lat","value":"<number (double)>"},{"disabled":true,"description":{"content":"<p>Longitude for a radius-based search. Requires both latitude and radius when specified.</p>\n","type":"text/plain"},"key":"lng","value":"<number (double)>"},{"disabled":true,"description":{"content":"<p>Search radius. Mandatory with latitude and longitude. Can also be paired with postalCode for centralized postal code searches.</p>\n","type":"text/plain"},"key":"radius","value":"<number (double)>"},{"disabled":true,"description":{"content":"<p>Fields for sorting results. The direction (ASC or DESC) can be specified.</p>\n<p>Examples:  </p>\n<p>lastName:DESC,firstName:ASC,distance:DESC,officeName:ASC</p>\n","type":"text/plain"},"key":"sort","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Skips the starting results by the specified number. Maximum offset is 35,000.</p>\n","type":"text/plain"},"key":"offset","value":"<int>"},{"disabled":true,"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 locations, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<int>"},{"disabled":true,"description":{"content":"<p>A partial search string to match results.</p>\n","type":"text/plain"},"key":"query","value":"<string>"},{"disabled":true,"description":{"content":"<p>Fetches results updated after the specified date. Date should be in ISO 8601 format.</p>\n","type":"text/plain"},"key":"updatedSince","value":"<string>"}],"variable":[]}},"response":[{"id":"6571f70c-e14f-4bb8-9443-9fa8e822c965","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/locations-search?type=Person&primaryProfile=true&sort=ASC&offset=0&limit=20","protocol":"https","host":["api","reputation","com"],"path":["v3","locations-search"],"query":[{"key":"firstName","value":"","description":"First name of the provider\n\n","disabled":true},{"key":"lastName","value":"","description":"Last name of the provider","disabled":true},{"key":"placeID","value":"BP","description":"Place Id","disabled":true},{"key":"parentID","value":"","description":"Parent id. Parent-child relationship between multiple locations. Used for businesses or locations that exist within another location.","disabled":true},{"key":"linkedProfileID","value":"","description":"Linked Profile Id\n\n","disabled":true},{"key":"officeName","value":"Johns Plumbing Company","description":"Name of the office","disabled":true},{"key":"locality","value":"Redwood Cit","description":"City / Locality of the provider\n\n","disabled":true},{"key":"region","value":"CA","description":"Region / State of the provider\n\n","disabled":true},{"key":"postalCode","value":"95063","description":"Postal code / Zip code of the provider\n\n","disabled":true},{"key":"gender","value":"Male","description":"Gender of the provider. Valid values are: Male, Female, Unknown\n\n","disabled":true},{"key":"phoneType","value":"Local","description":"Type of phone. Valid values are: Local, Mobile, Fax, TollFree, Tracked, Sales, Service, Parts, Emergency, GoogleOnly, FacebookOnly, BingOnly, FoursquareOnly, Other","disabled":true},{"key":"websiteType","value":"","description":"Type of website. Valid values are: Homepage, Reservation, Order, GoogleHomepage, Covid, Telehealth, Menu","disabled":true},{"key":"type","value":"Person","description":"Type of the profile. Valid values are: Person, RoofTop\n\n"},{"key":"profileDefinition","value":"","description":"Profile definition\n\n","disabled":true},{"key":"categoryID","value":"GENERAL_CONTRACTOR","description":"List of category Ids","disabled":true},{"key":"categoryName","value":"General Contractor","description":"List of category names. Use double quotes if category name contains commas\n\n","disabled":true},{"key":"tag","value":"","description":"List of tags. Either JSON or Comma separated values.\n\n","disabled":true},{"key":"insuranceID","value":"","description":"List of Insurance Ids\n\n","disabled":true},{"key":"insuranceName","value":"","description":"List of Insurance Names","disabled":true},{"key":"language","value":"","description":"List of Languages\n\n","disabled":true},{"key":"acceptingNewPatients","value":"true","description":"Whether accepting new patients. Valid values are: true or false","disabled":true},{"key":"specialtyID","value":"","description":"List of Specialty Ids\n\n","disabled":true},{"key":"primaryProfile","value":"true","description":"Whether primary linked profile. Valid values are: true or false\n\n"},{"key":"lat","value":"94565360.0320892","description":"Latitude to search for profiles within the radius. If latitude is passed, than both longitude and radius are required\n\n","disabled":true},{"key":"lng","value":"94565360.0320892","description":"Longitude to search for profiles within the radius. If longitude is passed, than both latitude and radius are required","disabled":true},{"key":"radius","value":"94565360.0320892","description":"Radius to search. Required if either latitude and longitude are passed. radius can also be used with postalCode. When used with postal code, profiles will be searched from the center of the postalCode\n\n","disabled":true},{"key":"sort","value":"ASC","description":"List of sort fields separated by comma. Sort order for the field is passed along with the field name separated by :. Default sort order is ASC if the order is not specified with the field name. Example: lastName:DESC,firstName:ASC,distance:DESC,officeName:ASC"},{"key":"offset","value":"0","description":"This offsets the start of each page by the number specified. Max offset is 35k."},{"key":"limit","value":"20","description":"This is the maximum number of objects that may be returned. A query may return fewer than the value of limit due to filtering. Default limit is 20. Max limit is 500."},{"key":"query","value":"","description":"Returns matching results using partial search.\n\n","disabled":true},{"key":"updatedSince","value":"","description":"Returns matching results last updated since date (Datetime ISO 8601).\n\n","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"2840"},{"key":"etag","value":"W/\"b18-JtHELOLGM33b00B7U1rdi4JKNYM\""},{"key":"date","value":"Tue, 03 Oct 2023 06:25:23 GMT"},{"key":"x-envoy-upstream-service-time","value":"176"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"locations\": [\n        {\n            \"id\": \"LVO\",\n            \"internalID\": \"737497\",\n            \"optedOut\": false,\n            \"internalName\": \"Leone & Vaughn Orthodontics\",\n            \"industryID\": \"health-care-dentists\",\n            \"parentID\": null,\n            \"customVariables\": [\n                {\n                    \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n                    \"value\": \"AUTOMATED\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"N/A\"\n                },\n                {\n                    \"name\": \"Pants\",\n                    \"value\": \"N/A\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"Leone & Vaughn Orthodontics\",\n            \"professional\": {\n                \"lastName\": \"Vaughn Orthodontics\",\n                \"firstName\": \"Leone\"\n            },\n            \"medical\": {\n                \"npi\": \"1598213076\"\n            },\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"TENANT_1990:MANGALAM\",\n                        \"label\": \"mangalam\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"Leone & Vaughn Orthodontics\",\n                    \"address\": {\n                        \"streetAddress2\": \"#100\",\n                        \"locality\": \"Seattle\",\n                        \"region\": \"WA\",\n                        \"postalCode\": \"98119\",\n                        \"country\": \"US\",\n                        \"latitude\": \"47.62729\",\n                        \"longitude\": \"-122.36967\",\n                        \"streetAddress1\": \"945 Elliott Avenue West\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": [\n                        {\n                            \"number\": \"(206) 792-5473\",\n                            \"primary\": true,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Local\"\n                        }\n                    ],\n                    \"websites\": null,\n                    \"emails\": [\n                        {\n                            \"email\": \"ss@gmail.com\",\n                            \"primary\": true\n                        }\n                    ],\n                    \"primary\": true,\n                    \"officeStatus\": null,\n                    \"originalAddress\": {\n                        \"streetAddress2\": \"#100\",\n                        \"locality\": \"Seattle\",\n                        \"region\": \"WA\",\n                        \"postalCode\": \"98119\",\n                        \"country\": \"US\",\n                        \"latitude\": \"47.62729\",\n                        \"longitude\": \"-122.36967\",\n                        \"streetAddress1\": \"945 Elliott Avenue West\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"Person\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"LVO\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"Physician\",\n            \"createdDate\": \"2018-03-14T05:09:02\",\n            \"updatedDate\": \"2023-04-07T07:44:59\",\n            \"distance\": null,\n            \"slug\": \"leone-vaughn-orthodontics-seattle-wa\"\n        },\n        {\n            \"id\": \"T\",\n            \"internalID\": \"3490502\",\n            \"optedOut\": false,\n            \"internalName\": \"T\",\n            \"industryID\": \"automotive-parts\",\n            \"parentID\": null,\n            \"customVariables\": null,\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"N/A\"\n                },\n                {\n                    \"name\": \"Pants\",\n                    \"value\": \"N/A\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"jl\",\n            \"professional\": {\n                \"lastName\": \"L\",\n                \"firstName\": \"j\"\n            },\n            \"medical\": {\n                \"npi\": \"1619943354\"\n            },\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                        \"label\": \"Open Heart Surgery\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"jl office\",\n                    \"address\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Littleton\",\n                        \"region\": \"CO\",\n                        \"postalCode\": \"80123\",\n                        \"country\": \"US\",\n                        \"latitude\": \"39.6092313\",\n                        \"longitude\": \"-105.0355823\",\n                        \"streetAddress1\": \"5911 Middlefield Rd\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": null,\n                    \"websites\": null,\n                    \"emails\": null,\n                    \"primary\": true,\n                    \"officeStatus\": {\n                        \"officeState\": \"Open\"\n                    },\n                    \"originalAddress\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Littleton\",\n                        \"region\": \"CO\",\n                        \"postalCode\": \"80123\",\n                        \"country\": \"US\",\n                        \"latitude\": 0,\n                        \"longitude\": 0,\n                        \"streetAddress1\": \"5911 Middlefield Rd\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"Person\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"T\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"Physician\",\n            \"createdDate\": \"2021-04-01T15:28:10\",\n            \"updatedDate\": \"2023-04-07T03:02:51\",\n            \"distance\": null,\n            \"slug\": \"j-l-littleton-co\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 20,\n        \"count\": 2\n    }\n}"}],"_postman_id":"e60c20a2-2016-4e2d-93f2-26be1f349cd2"},{"name":"Search Locations","id":"6606b81e-4c60-45ed-abd7-462a9518169f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"string\",\n  \"lastName\": \"string\",\n  \"placeID\": \"string\",\n  \"parentID\": \"string\",\n  \"linkedProfileID\": \"string\",\n  \"officeName\": \"string\",\n  \"locality\": \"string\",\n  \"region\": \"string\",\n  \"postalCode\": \"string\",\n  \"gender\": \"string\",\n  \"phoneType\": \"string\",\n  \"websiteType\": \"string\",\n  \"type\": \"string\",\n  \"profileDefinition\": \"string\",\n  \"categoryID\": [\n    \"string\"\n  ],\n  \"categoryName\": [\n    \"string\"\n  ],\n  \"tag\": [\n    \"string\"\n  ],\n  \"utm\": \"boolean\",\n  \"insuranceID\": [\n    \"string\"\n  ],\n  \"insuranceName\": [\n    \"string\"\n  ],\n  \"language\": [\n    \"string\"\n  ],\n  \"acceptingNewPatients\": \"string\",\n  \"specialtyID\": [\n    \"string\"\n  ],\n  \"primaryProfile\": \"string\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"radius\": 0,\n  \"sorts\": [\n    {\n      \"fieldName\": \"string\",\n      \"sortOrder\": \"string\"\n    }\n  ],\n  \"offset\": \"integer\",\n  \"limit\": \"integer\",\n  \"query\": \"string\",\n  \"updatedSince\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/locations-search","description":"<p>Facilitates detailed searches for location profiles based on a range of specific parameters provided in the request body. It serves as an alternative to the <code>GET</code> version of the endpoint, providing a means to submit search parameters in the body of the request.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nvar url = \"https://api.reputation.com/v3/locations-search\";\nxhr.open(\"POST\", url, true);\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nvar data = JSON.stringify({\n    \"type\": \"Person\",\n    \"primaryProfile\": \"true\",\n    \"sorts\": [\n        {\n            \"fieldName\": \"type\",\n            \"sortOrder\": \"ASC\"\n        }\n    ],\n    \"offset\": 0,\n    \"limit\": 20\n});\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firstName</code></td>\n<td>String</td>\n<td>First name of the provider - ex. <code>John</code></td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td>String</td>\n<td>Last name of the provider - ex. <code>Doe</code></td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td>String</td>\n<td>Identifier for a specific place - ex. <code>SA2</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td>String</td>\n<td>Denotes the parent-child relationship - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td>String</td>\n<td>Identifier for a linked profile - ex. <code>abcd1234</code></td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td>String</td>\n<td>Name of the office</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td>String</td>\n<td>The city or locality where the provider is located.</td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td>String</td>\n<td>The state or region where the provider operates.</td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td>String</td>\n<td>The postal code or zip code associated with the provider's location.</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td>String</td>\n<td>Gender of the provider. Valid values include <code>Male</code>, <code>Female</code>, and <code>Unknown</code></td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td>String</td>\n<td>Specifies the type of phone. Valid options encompass <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>Tollfree</code>,<code>Tracked</code>,<code>Sales</code>,<code>Parts</code>,<code>Emergency</code>,<code>GoogleOnly</code>,<code>FacebookOnly</code>,<code>BingOnly</code>,<code>FoursquareOnly</code>,<code>Other</code>.</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td>String</td>\n<td>Defines the kind of website. Options include <code>Homepage</code>, <code>Reservation</code>,<code>Order</code>,<code>GoogleHomepage</code>,<code>Telehealth</code>,<code>Menu</code>.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Type of profile. Valid values are <code>Person</code> and <code>Rooftop</code>.</td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td>String</td>\n<td>Definition of the profile</td>\n</tr>\n<tr>\n<td><code>categoryID</code></td>\n<td>String Array</td>\n<td>List of category names. If a category name contains commas, it should be enclosed in double quotes</td>\n</tr>\n<tr>\n<td><code>tag</code></td>\n<td>String Array</td>\n<td>List of tags, either JSON or comma seperated values.</td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td>Boolean</td>\n<td>Indicator for UTM tracking.</td>\n</tr>\n<tr>\n<td><code>insuranceID</code></td>\n<td>String Array</td>\n<td>List of Insurance IDs.</td>\n</tr>\n<tr>\n<td><code>insuranceName</code></td>\n<td>String Array</td>\n<td>List of Insurance Names.</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>String Array</td>\n<td>List of languages associated with the provider.</td>\n</tr>\n<tr>\n<td>acceptingNewPatients</td>\n<td>String</td>\n<td>Indicates if the provider is accepting new patients. Valid values are <code>true</code> or <code>false</code></td>\n</tr>\n<tr>\n<td><code>specialtyID</code></td>\n<td>String Array</td>\n<td>List of Specialty IDs.</td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td>String</td>\n<td>Denotes whether the profile is the primary linked profile. Valid values are <code>true</code> or <code>false</code></td>\n</tr>\n<tr>\n<td><code>lat</code></td>\n<td>Number</td>\n<td>Latitude for searching profiles within a specified radius. <strong>Required if</strong> <code>lng</code> <strong>is used.</strong></td>\n</tr>\n<tr>\n<td><code>lng</code></td>\n<td>Number</td>\n<td>Longitude for searching profiles within a specific radius. <strong>Required if</strong> <code>lat</code> <strong>is used.</strong></td>\n</tr>\n<tr>\n<td><code>radius</code></td>\n<td>Number</td>\n<td>The search defined by <code>lat</code>and <code>lng</code> in which profiles are sought.</td>\n</tr>\n<tr>\n<td><code>sorts</code></td>\n<td>Object Array</td>\n<td>Specifies the fields and their respective order for sorting results. Each object contains a <code>fieldName</code>and a <code>sortOrder</code></td>\n</tr>\n<tr>\n<td><code>fieldName</code>  <br /><strong>parent</strong>: <code>sorts</code></td>\n<td>String</td>\n<td>Name of the field to sort - ex. <code>firstName</code></td>\n</tr>\n<tr>\n<td><code>sortOrder</code>  <br /><strong>parent</strong>: <code>sorts</code></td>\n<td>String</td>\n<td>Order to sort - valid values. <code>ASC</code>,<code>DESC</code></td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>Number</td>\n<td>Offsets the start of each results page by the specified number.</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>Integer</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 locations, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td><code>query</code></td>\n<td>String</td>\n<td>Returns matching results based on a partial search.</td>\n</tr>\n<tr>\n<td><code>updatedSince</code></td>\n<td>String</td>\n<td>Returns results updated since the specified date (Datetime in ISO 8601 format).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>locations</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of location profiles providing detailed information about specific locations.</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The internal identification number assigned to the location - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Indicates whether the location has opted out of listings publishing.</td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The internal name given to the location - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Location's external name - ex. <code>Majestic Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The industry identification associated with the location - ex. <code>automotive-dealer</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The ID of the parent location if there's any, otherwise <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>An array of custom variables associated with the location, containing the variable name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td><code>locations</code></td>\n<td>Object Arrary</td>\n<td>An array of custom filters applied to the location, containing the filter name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Specifies the location type whether it's <code>main</code>, <code>branch</code>, etc.</td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td><code>Location</code></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Indicates if the profile is the primary one.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Indicates the type of the location - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Definition or category of the profile - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>originalAddress</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Raw non-normalized version of the address inputed by the user</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>orignialAddress</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>originalAdress</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063-2052</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.48776</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td><code>locations</code></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group ex. <code>Employed</code>, <code>Independent</code></td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity.</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty type.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary.</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degrees</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>String</td>\n<td>Name of degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td><code>locations</code></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td><code>locations</code></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td><code>locations</code></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td><code>locations</code></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n<tr>\n<td><code>paging</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing request pagination details</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This offsets the start of each page by the number specified</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 locations, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>This is the maximum number of objects that may be returned for the search.</td>\n</tr>\n<tr>\n<td><code>previous</code></td>\n<td><code>paging</code></td>\n<td>Integer (int64)</td>\n<td>API endpoint that will return the next page of data. If not included, this is the last page of data.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["locations-search"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c5fc7126-3c92-4e69-a3af-1580a92156ed","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Person\",\n    \"primaryProfile\": \"true\",\n    \"sorts\": [\n        {\n            \"fieldName\": \"type\",\n            \"sortOrder\": \"ASC\"\n        }\n    ],\n    \"offset\": 0,\n    \"limit\": 20\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/locations-search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"2840"},{"key":"etag","value":"W/\"b18-JtHELOLGM33b00B7U1rdi4JKNYM\""},{"key":"date","value":"Tue, 03 Oct 2023 08:53:39 GMT"},{"key":"x-envoy-upstream-service-time","value":"249"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"locations\": [\n        {\n            \"id\": \"LVO\",\n            \"internalID\": \"737497\",\n            \"optedOut\": false,\n            \"internalName\": \"Leone & Vaughn Orthodontics\",\n            \"industryID\": \"health-care-dentists\",\n            \"parentID\": null,\n            \"customVariables\": [\n                {\n                    \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n                    \"value\": \"AUTOMATED\"\n                }\n            ],\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"N/A\"\n                },\n                {\n                    \"name\": \"Pants\",\n                    \"value\": \"N/A\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"Leone & Vaughn Orthodontics\",\n            \"professional\": {\n                \"lastName\": \"Vaughn Orthodontics\",\n                \"firstName\": \"Leone\"\n            },\n            \"medical\": {\n                \"npi\": \"1598213076\"\n            },\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"TENANT_1990:MANGALAM\",\n                        \"label\": \"mangalam\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"Leone & Vaughn Orthodontics\",\n                    \"address\": {\n                        \"streetAddress2\": \"#100\",\n                        \"locality\": \"Seattle\",\n                        \"region\": \"WA\",\n                        \"postalCode\": \"98119\",\n                        \"country\": \"US\",\n                        \"latitude\": \"47.62729\",\n                        \"longitude\": \"-122.36967\",\n                        \"streetAddress1\": \"945 Elliott Avenue West\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": [\n                        {\n                            \"number\": \"(206) 792-5473\",\n                            \"primary\": true,\n                            \"country\": \"US\",\n                            \"phoneType\": \"Local\"\n                        }\n                    ],\n                    \"websites\": null,\n                    \"emails\": [\n                        {\n                            \"email\": \"ss@gmail.com\",\n                            \"primary\": true\n                        }\n                    ],\n                    \"primary\": true,\n                    \"officeStatus\": null,\n                    \"originalAddress\": {\n                        \"streetAddress2\": \"#100\",\n                        \"locality\": \"Seattle\",\n                        \"region\": \"WA\",\n                        \"postalCode\": \"98119\",\n                        \"country\": \"US\",\n                        \"latitude\": \"47.62729\",\n                        \"longitude\": \"-122.36967\",\n                        \"streetAddress1\": \"945 Elliott Avenue West\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"Person\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"LVO\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"Physician\",\n            \"createdDate\": \"2018-03-14T05:09:02\",\n            \"updatedDate\": \"2023-04-07T07:44:59\",\n            \"distance\": null,\n            \"slug\": \"leone-vaughn-orthodontics-seattle-wa\"\n        },\n        {\n            \"id\": \"T\",\n            \"internalID\": \"3490502\",\n            \"optedOut\": false,\n            \"internalName\": \"T\",\n            \"industryID\": \"automotive-parts\",\n            \"parentID\": null,\n            \"customVariables\": null,\n            \"customFilters\": [\n                {\n                    \"name\": \"Brand\",\n                    \"value\": \"N/A\"\n                },\n                {\n                    \"name\": \"Pants\",\n                    \"value\": \"N/A\"\n                }\n            ],\n            \"state\": \"Active\",\n            \"externalName\": \"jl\",\n            \"professional\": {\n                \"lastName\": \"L\",\n                \"firstName\": \"j\"\n            },\n            \"medical\": {\n                \"npi\": \"1619943354\"\n            },\n            \"categories\": [\n                {\n                    \"category\": {\n                        \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                        \"label\": \"Open Heart Surgery\"\n                    },\n                    \"primary\": true\n                }\n            ],\n            \"places\": [\n                {\n                    \"officeName\": \"jl office\",\n                    \"address\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Littleton\",\n                        \"region\": \"CO\",\n                        \"postalCode\": \"80123\",\n                        \"country\": \"US\",\n                        \"latitude\": \"39.6092313\",\n                        \"longitude\": \"-105.0355823\",\n                        \"streetAddress1\": \"5911 Middlefield Rd\"\n                    },\n                    \"businessHours\": null,\n                    \"phones\": null,\n                    \"websites\": null,\n                    \"emails\": null,\n                    \"primary\": true,\n                    \"officeStatus\": {\n                        \"officeState\": \"Open\"\n                    },\n                    \"originalAddress\": {\n                        \"streetAddress2\": null,\n                        \"locality\": \"Littleton\",\n                        \"region\": \"CO\",\n                        \"postalCode\": \"80123\",\n                        \"country\": \"US\",\n                        \"latitude\": 0,\n                        \"longitude\": 0,\n                        \"streetAddress1\": \"5911 Middlefield Rd\"\n                    },\n                    \"linkedLuid\": null,\n                    \"relatedLocations\": null\n                }\n            ],\n            \"type\": \"Person\",\n            \"locationType\": \"main\",\n            \"groupCode\": \"T\",\n            \"primaryProfile\": true,\n            \"profileDefinition\": \"Physician\",\n            \"createdDate\": \"2021-04-01T15:28:10\",\n            \"updatedDate\": \"2023-04-07T03:02:51\",\n            \"distance\": null,\n            \"slug\": \"j-l-littleton-co\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 20,\n        \"count\": 2\n    }\n}"}],"_postman_id":"6606b81e-4c60-45ed-abd7-462a9518169f"},{"name":"Search Faceted Locations","id":"bd275ce4-4f8b-42b1-ac01-e0099d35f9c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/locations-faceted-search?groupBy=<string>","description":"<p>This endpoint facilitates a faceted profile search of the platform, providing aggregated counts of profiles based on specified criteria. Rather than returning individual profile data, this endpoint groups profiles based on a selected attribute (such as <code>phoneType</code>, <code>gender</code>, etc.) and returns a count of profiles for each distinct value within that attribute. It's an efficient way to understand the distribution of profiles based on varying characteristics without retrieving the details of each profile.</p>\n<p>For instance, if you'd like to know how many providers have a <strong>Local</strong> phone type versus a <strong>Mobile</strong> phone type, this service can quickly provide those aggregated counts, as exemplified in the given response.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/locations-faceted-search?groupBy=phoneType', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\n﻿\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var jsonResponse = JSON.parse(xhr.responseText);\n        console.log(jsonResponse);\n    }\n};\n﻿\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>locations</code></td>\n<td></td>\n<td>Object Array</td>\n<td>A collection of aggregated results based on the specified grouping criteria.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td><code>locations</code></td>\n<td>Integer</td>\n<td>Represents the number of occurrences of the specified value within its associated group - ex. <code>16</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The specific value or category that the count pertains to within its associated group - ex. <code>Local</code></td>\n</tr>\n<tr>\n<td><code>group</code></td>\n<td><code>locations</code></td>\n<td>String</td>\n<td>The criteria or category by which the results are grouped.  <br />- ex. <code>phoneType</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"locations\": [\n        {\n            \"count\": \"integer\",\n            \"value\": \"string\",\n            \"group\": \"string\"\n        },\n    ]\n}\n\n\n</code></pre>\n","urlObject":{"path":["locations-faceted-search"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>(Required) Attributes by which the results should be grouped. Valid Values: gender, language, officeName, employerAffiliation, websiteType, phoneType, categoryID, categoryName, tag</p>\n","type":"text/plain"},"key":"groupBy","value":"<string>"},{"disabled":true,"description":{"content":"<p>First name of the provider</p>\n","type":"text/plain"},"key":"firstName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Last name of the provider</p>\n","type":"text/plain"},"key":"lastName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Name of the office or establishment.</p>\n","type":"text/plain"},"key":"officeName","value":"<string>"},{"disabled":true,"description":{"content":"<p>City or locality where the provider is located.</p>\n","type":"text/plain"},"key":"locality","value":"<string>"},{"disabled":true,"description":{"content":"<p>Region or state where the provider operates.</p>\n","type":"text/plain"},"key":"region","value":"<string>"},{"disabled":true,"description":{"content":"<p>Postal or zip code of the provider's location.</p>\n","type":"text/plain"},"key":"postalCode","value":"<string>"},{"disabled":true,"description":{"content":"<p>Gender of the provider. Valid Values: Male, Female, Unknown</p>\n","type":"text/plain"},"key":"gender","value":"<string>"},{"disabled":true,"description":{"content":"<p>The classification of phone numbers associated with the provider. Valid Values: Local, Mobile, Fax, TollFree, Tracked, Sales, Service, Parts, Emergency, GoogleOnly, FacebookOnly, BingOnly, FoursquareOnly, Other</p>\n","type":"text/plain"},"key":"phoneType","value":"<string>"},{"disabled":true,"description":{"content":"<p>Type or purpose of the website linked with the provider. Valid Values: Homepage, Reservation, Order, GoogleHomepage, Covid, Telehealth, Menu</p>\n","type":"text/plain"},"key":"websiteType","value":"<string>"},{"disabled":true,"description":{"content":"<p>Classification of the profile. Valid Values: Person, RoofTop</p>\n","type":"text/plain"},"key":"type","value":"<string>"},{"disabled":true,"description":{"content":"<p>Identifier(s) corresponding to the service categories of the provider.</p>\n","type":"text/plain"},"key":"categoryID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Names of service categories. Enclose in double quotes if the name contains commas. Example: \"General Medicine\", \"Pediatrics\"</p>\n","type":"text/plain"},"key":"categoryName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Tags associated with the profile. Can be provided as JSON or comma-separated values.</p>\n","type":"text/plain"},"key":"tags","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Identifier(s) of insurance plans accepted by the provider.</p>\n","type":"text/plain"},"key":"insuranceID","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Names of insurance plans accepted.</p>\n","type":"text/plain"},"key":"insuranceName","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Language(s) spoken by the provider.</p>\n","type":"text/plain"},"key":"languages","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Indicator if the provider is currently accepting new patients. Valid Values: true, false</p>\n","type":"text/plain"},"key":"acceptingNewPatients","value":"<string>"},{"disabled":true,"description":{"content":"<p>Latitude coordinate for location-based search. Must be used in conjunction with lng and radius. Example: 37.7749</p>\n","type":"text/plain"},"key":"lat","value":"<number (double)>"},{"disabled":true,"description":{"content":"<p>Longitude coordinate for location-based search. Must be used in conjunction with lat and radius. Example: -122.4194</p>\n","type":"text/plain"},"key":"lng","value":"<number (double)>"},{"disabled":true,"description":{"content":"<p>Search radius in kilometers/miles (as applicable). Required if lat and lng are provided. Can also be combined with postalCode to initiate search from the center of the postal code. Example: 10</p>\n","type":"text/plain"},"key":"radius","value":"<number (double)>"}],"variable":[]}},"response":[{"id":"1db28dbe-165c-4a49-a610-e416ef5a3c63","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/locations-faceted-search?groupBy=phoneType","protocol":"https","host":["api","reputation","com"],"path":["v3","locations-faceted-search"],"query":[{"key":"firstName","value":"","disabled":true},{"key":"lastName","value":"","disabled":true},{"key":"placeID","value":"","disabled":true},{"key":"parentID","value":"","disabled":true},{"key":"linkedProfileID","value":"","disabled":true},{"key":"officeName","value":"Johns Plumbing Company","disabled":true},{"key":"locality","value":"Redwood Cit","disabled":true},{"key":"region","value":"CA","disabled":true},{"key":"postalCode","value":"95063","disabled":true},{"key":"gender","value":"Male","disabled":true},{"key":"phoneType","value":"Local","disabled":true},{"key":"websiteType","value":"","disabled":true},{"key":"type","value":"Person","disabled":true},{"key":"profileDefinition","value":"","disabled":true},{"key":"categoryID","value":"GENERAL_CONTRACTOR","disabled":true},{"key":"categoryName","value":"General Contractor","disabled":true},{"key":"tag","value":"","disabled":true},{"key":"insuranceID","value":"","disabled":true},{"key":"insuranceName","value":"","disabled":true},{"key":"language","value":"","disabled":true},{"key":"acceptingNewPatients","value":"true","disabled":true},{"key":"specialtyID","value":"","disabled":true},{"key":"primaryProfile","value":"true","disabled":true},{"key":"lat","value":"94565360.0320892","disabled":true},{"key":"lng","value":"94565360.0320892","disabled":true},{"key":"radius","value":"94565360.0320892","disabled":true},{"key":"sort","value":"ASC","disabled":true},{"key":"offset","value":"0","disabled":true},{"key":"limit","value":"20","disabled":true},{"key":"query","value":"","disabled":true},{"key":"updatedSince","value":"","disabled":true},{"key":"groupBy","value":"phoneType"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"113"},{"key":"etag","value":"W/\"71-dcV+7LHPbfxAImUWaR7srMwEUr0\""},{"key":"date","value":"Tue, 03 Oct 2023 11:36:43 GMT"},{"key":"x-envoy-upstream-service-time","value":"86"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"locations\": [\n        {\n            \"count\": 16,\n            \"value\": \"Local\",\n            \"group\": \"phoneType\"\n        },\n        {\n            \"count\": 2,\n            \"value\": \"Mobile\",\n            \"group\": \"phoneType\"\n        }\n    ]\n}"}],"_postman_id":"bd275ce4-4f8b-42b1-ac01-e0099d35f9c7"},{"name":"Get Location","id":"5dfe287f-1395-40b9-8f43-2eb2aac05798","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":"{{baseUrl}}/locations/:locationID","description":"<p>This endpoint retrieves detailed information about a specific location profile on the platform based on the provided <strong>locationID</strong>.</p>\n<p>The response returns detailed attributes of the location profile, including its internal and external names, industry type, state, associated places like office addresses, contact information, and more.</p>\n<p><strong>Note:</strong> The <strong>Get Locations</strong> and <strong>Get Location</strong> endpoints are designed to retrieve only <a href=\"https://support.reputation.com/s/article/What-is-an-unmanaged-Profile-and-how-to-make-it-cleansed?language=en_US\">cleansed profiles</a>. If you attempt to fetch an unmanaged profile using either endpoint, the response will result in a <strong>null</strong> value.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/locations/SA', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td></td>\n<td>String</td>\n<td>Identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td></td>\n<td>String</td>\n<td>The internal identification number assigned to the location - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates whether the location has opted out of listings publishing.</td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td></td>\n<td>String</td>\n<td>The internal name given to the location - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code></td>\n<td></td>\n<td>String</td>\n<td>Location's external name - ex. <code>Majestic Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td></td>\n<td>String</td>\n<td>The industry identification associated with the location - ex. <code>automotive-dealer</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td></td>\n<td>String</td>\n<td>The ID of the parent location if there's any, otherwise <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of custom variables associated with the location, containing the variable name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td></td>\n<td>Object Arrary</td>\n<td>An array of custom filters applied to the location, containing the filter name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td></td>\n<td>String</td>\n<td>Specifies the location type whether it's <code>main</code>, <code>branch</code>, etc.</td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates if the profile is the primary one.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td></td>\n<td>String</td>\n<td>Indicates the type of the location - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td></td>\n<td>String</td>\n<td>Definition or category of the profile - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>originalAddress</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Raw non-normalized version of the address inputed by the user</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>orignialAddress</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>originalAdress</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063-2052</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.48776</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group ex. <code>Employed</code>, <code>Independent</code></td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity.</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty type.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary.</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degrees</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>String</td>\n<td>Name of degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"string\",\n    \"internalID\": \"string\",\n    \"optedOut\": \"boolean\",\n    \"linkedProfileID\": \"string\",\n    \"tenantID\": \"string\",\n    \"internalName\": \"string\",\n    \"externalName\": \"string\",\n    \"industryID\": \"string\",\n    \"parentID\": \"string\",\n    \"customVariables\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"locationType\": \"string\",\n    \"groupCode\": \"string\",\n    \"state\": \"string\",\n    \"utm\": \"boolean\",\n    \"description\": \"string\",\n    \"tags\": [\n        \"string\",\n    ],\n    \"paymentTypes\": [\n        \"string\"\n    ],\n    \"covidMessage\": \"string\",\n    \"medias\": [\n        {\n            \"url\": \"string\",\n            \"title\": \"string\",\n            \"mediaType\": \"string\",\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"attributes\": [\n        {\n            \"attributeId\": \"string\",\n            \"boolValue\": \"boolean\"\n        },\n        {\n            \"attributeId\": \"string\",\n            \"values\": [\n                {\n                    \"id\": \"string\",\n                    \"boolValue\": \"boolean\"\n                },\n            ]\n        }\n    ],\n    \"owners\": [\n        {\n            \"name\": \"string\",\n            \"role\": \"string\",\n            \"pendingInvitation\": \"boolean\"\n        }\n    ]\n    \"socialMedias\": [\n        {\n            \"url\": \"string\",\n            \"socialMediaType\": \"string\"\n        },\n    ],\n    \"shortDescription\": \"string\",\n    \"medical\": {\n        \"npi\": \"string\",\n        \"stateLicenseNumber\": \"string\",\n        \"insurancesAccepted\": [\n            {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n        ],\n        \"acceptingNewPatients\": \"boolean\",\n        \"employerAffiliation\": \"string\",\n        \"specialties\": [\n            {\n                \"specialty\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"webMdCampaignId\": \"string\",\n        \"insuranceNetworks\": [\n            {\n                \"insuranceNetwork\": {\n                    \"id\": \"string\",\n                    \"label\": \"string\"\n                }\n            },\n        ]\n    },\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"places\": [\n        {\n            \"placeID\": \"string\",\n            \"officeName\": \"string\",\n            \"address\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"businessHours\": [\n                {\n                    \"timePeriods\": [\n                        {\n                            \"openDay\": \"string\",\n                            \"openTime\": \"string\",\n                            \"closeDay\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\"\n                        },\n                    ],\n                    \"name\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"specialHours\": [\n                        {\n                            \"openTime\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\",\n                            \"startDate\": \"string\"\n                        },\n                    ],\n                    \"businessHourType\": \"string\"\n                }\n            ],\n            \"phones\": [\n                {\n                    \"number\": \"string\",\n                    \"extension\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"country\": \"string\",\n                    \"phoneType\": \"string\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"websiteType\": \"string\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"string\",\n                    \"primary\": \"boolean\"\n                },\n            ],\n            \"primary\": \"boolean\",\n            \"officeStatus\": {\n                \"officeState\": \"string\",\n                \"operationalDate\": \"string\"\n            },\n            \"originalAddress\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"linkedLuid\": \"integer\",\n            \"relatedLocations\": [\n                {\n                    \"type\": \"integer\",\n                    \"placeId\": \"string\"\n                }\n            ]\n        }\n    ],\n    \"professional\": {\n        \"title\": \"string\",\n        \"appellation\": \"string\",\n        \"degrees\": [\n            {\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ]\n        \"firstName\": \"string\"\n        \"lastName\": \"string\",\n        \"middleName\": \"string\",\n        \"gender\": \"string\",\n        \"birthday\": \"string\",\n        \"biography\": \"string\",\n        \"certifications\": [\n            {\n                \"number\": \"string\",\n                \"country\": \"string\",\n                \"endDate\": \"string\",\n                \"name\": \"string\",\n                \"issuer\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"affiliations\": [\n            {\n                \"affiliation\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"educations\": [\n            {\n                \"type\": \"string\",\n                \"institution\": \"string\",\n                \"graduationYear\": \"string\",\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"languages\": [\n            \"string\",\n        ],\n    },\n    \"serviceArea\": {\n        \"places\": [\"string\"],\n        \"businessType\": \"string\"\n    },\n    \"richKnowledge\": {\n        \"titleTag\": \"string\",\n        \"metaDescription\": \"string\",\n        \"metaKeywords\": [\"string\"],\n        \"htmlDescription\": \"string\",\n        \"zipCodesServed\": [\"string\"],\n        \"areasServed\": [\"string\"],\n        \"professionalStatement\": \"string\"\n    }\n    \"type\": \"string\",\n    \"primaryProfile\": \"boolean\",\n    \"profileDefinition\": \"string\",\n    \"createdDate\": \"string\",\n    \"updatedDate\": \"string\",\n    \"distance\": \"Double\",\n    \"slug\": \"string\"\n}\n\n</code></pre>\n","urlObject":{"path":["locations",":locationID"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) The specific location identifier tied to the profile.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"locationID"}]}},"response":[{"id":"86408a7f-2d02-4cc5-a63b-469313c08d9e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/locations/:locationID","protocol":"https","host":["api","reputation","com"],"path":["v3","locations",":locationID"],"variable":[{"key":"locationID","value":"SA","description":"(Required) Location id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1705"},{"key":"etag","value":"W/\"6a9-6bxjKXSpBiutQV6EZq0GBDGL4Ws\""},{"key":"date","value":"Tue, 03 Oct 2023 17:27:59 GMT"},{"key":"x-envoy-upstream-service-time","value":"207"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"SA\",\n    \"internalID\": \"737476\",\n    \"optedOut\": false,\n    \"internalName\": \"Simple Art\",\n    \"industryID\": \"automotive-dealer\",\n    \"parentID\": null,\n    \"customVariables\": [\n        {\n            \"name\": \"test-inventory\",\n            \"value\": \"www.apple.com\"\n        },\n        {\n            \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n            \"value\": \"MANUAL\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"Brand\",\n            \"value\": \"Gallery\"\n        }\n    ],\n    \"state\": \"Active\",\n    \"externalName\": \"Simple Art\",\n    \"description\": \"Simple Art Page Descripton\",\n    \"shortDescription\": \"Simple Art Page\",\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                \"label\": \"Open Heart Surgery\"\n            },\n            \"primary\": true\n        }\n    ],\n    \"places\": [\n        {\n            \"officeName\": \"Simple Art\",\n            \"address\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063\",\n                \"country\": \"US\",\n                \"latitude\": \"37.48805\",\n                \"longitude\": \"-122.22439\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"businessHours\": null,\n            \"phones\": [\n                {\n                    \"number\": \"(408) 900-9080\",\n                    \"primary\": true,\n                    \"country\": \"US\",\n                    \"phoneType\": \"Local\"\n                },\n                {\n                    \"number\": \"(408) 990-9090\",\n                    \"primary\": false,\n                    \"country\": \"US\",\n                    \"phoneType\": \"Mobile\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"http://www.yahoo.com\",\n                    \"primary\": true,\n                    \"websiteType\": \"Homepage\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"repdef40+1990@gmail.com\",\n                    \"primary\": true\n                }\n            ],\n            \"primary\": true,\n            \"officeStatus\": {\n                \"officeState\": \"Opening_Soon\",\n                \"operationalDate\": \"2021-05-01\"\n            },\n            \"originalAddress\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063\",\n                \"country\": \"US\",\n                \"latitude\": \"37.48805\",\n                \"longitude\": \"-122.22439\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"linkedLuid\": null,\n            \"relatedLocations\": null\n        }\n    ],\n    \"type\": \"RoofTop\",\n    \"locationType\": \"main\",\n    \"groupCode\": \"SA\",\n    \"primaryProfile\": true,\n    \"profileDefinition\": \"RoofTop\",\n    \"createdDate\": \"2018-03-14T05:08:53\",\n    \"updatedDate\": \"2023-04-07T07:45:01\",\n    \"distance\": null,\n    \"slug\": \"simple-art-simple-art-redwood-city-ca\"\n}"}],"_postman_id":"5dfe287f-1395-40b9-8f43-2eb2aac05798"},{"name":"Delete Location","id":"8a321c1d-d9fe-4db2-be5e-f7a55ecf4e71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/locations/:locationID","description":"<p>This endpoint lets you delete a specific location profile from the system, identified by its <code>locationID</code>. If you wish to only mark the location as inactive rather than fully deleting it, you can utilize the optional <code>preserveLocation</code> query parameter.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('DELETE', 'https://api.reputation.com/v3/locations/BP?preserveLocation=true', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td></td>\n<td>String</td>\n<td>Identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td></td>\n<td>String</td>\n<td>The internal identification number assigned to the location - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates whether the location has opted out of listings publishing.</td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td></td>\n<td>String</td>\n<td>The internal name given to the location - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code></td>\n<td></td>\n<td>String</td>\n<td>Location's external name - ex. <code>Majestic Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td></td>\n<td>String</td>\n<td>The industry identification associated with the location - ex. <code>automotive-dealer</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td></td>\n<td>String</td>\n<td>The ID of the parent location if there's any, otherwise <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of custom variables associated with the location, containing the variable name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td></td>\n<td>Object Arrary</td>\n<td>An array of custom filters applied to the location, containing the filter name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td></td>\n<td>String</td>\n<td>Specifies the location type whether it's <code>main</code>, <code>branch</code>, etc.</td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates if the profile is the primary one.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td></td>\n<td>String</td>\n<td>Indicates the type of the location - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td></td>\n<td>String</td>\n<td>Definition or category of the profile - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>originalAddress</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Raw non-normalized version of the address inputed by the user</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>orignialAddress</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>originalAdress</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063-2052</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.48776</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group ex. <code>Employed</code>, <code>Independent</code></td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity.</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty type.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary.</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degrees</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>String</td>\n<td>Name of degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"string\",\n    \"internalID\": \"string\",\n    \"optedOut\": \"boolean\",\n    \"linkedProfileID\": \"string\",\n    \"tenantID\": \"string\",\n    \"internalName\": \"string\",\n    \"externalName\": \"string\",\n    \"industryID\": \"string\",\n    \"parentID\": \"string\",\n    \"customVariables\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"locationType\": \"string\",\n    \"groupCode\": \"string\",\n    \"state\": \"string\",\n    \"utm\": \"boolean\",\n    \"description\": \"string\",\n    \"tags\": [\n        \"string\",\n    ],\n    \"paymentTypes\": [\n        \"string\"\n    ],\n    \"covidMessage\": \"string\",\n    \"medias\": [\n        {\n            \"url\": \"string\",\n            \"title\": \"string\",\n            \"mediaType\": \"string\",\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"attributes\": [\n        {\n            \"attributeId\": \"string\",\n            \"boolValue\": \"boolean\"\n        },\n        {\n            \"attributeId\": \"string\",\n            \"values\": [\n                {\n                    \"id\": \"string\",\n                    \"boolValue\": \"boolean\"\n                },\n            ]\n        }\n    ],\n    \"owners\": [\n        {\n            \"name\": \"string\",\n            \"role\": \"string\",\n            \"pendingInvitation\": \"boolean\"\n        }\n    ]\n    \"socialMedias\": [\n        {\n            \"url\": \"string\",\n            \"socialMediaType\": \"string\"\n        },\n    ],\n    \"shortDescription\": \"string\",\n    \"medical\": {\n        \"npi\": \"string\",\n        \"stateLicenseNumber\": \"string\",\n        \"insurancesAccepted\": [\n            {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n        ],\n        \"acceptingNewPatients\": \"boolean\",\n        \"employerAffiliation\": \"string\",\n        \"specialties\": [\n            {\n                \"specialty\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"webMdCampaignId\": \"string\",\n        \"insuranceNetworks\": [\n            {\n                \"insuranceNetwork\": {\n                    \"id\": \"string\",\n                    \"label\": \"string\"\n                }\n            },\n        ]\n    },\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"places\": [\n        {\n            \"placeID\": \"string\",\n            \"officeName\": \"string\",\n            \"address\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"businessHours\": [\n                {\n                    \"timePeriods\": [\n                        {\n                            \"openDay\": \"string\",\n                            \"openTime\": \"string\",\n                            \"closeDay\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\"\n                        },\n                    ],\n                    \"name\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"specialHours\": [\n                        {\n                            \"openTime\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\",\n                            \"startDate\": \"string\"\n                        },\n                    ],\n                    \"businessHourType\": \"string\"\n                }\n            ],\n            \"phones\": [\n                {\n                    \"number\": \"string\",\n                    \"extension\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"country\": \"string\",\n                    \"phoneType\": \"string\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"websiteType\": \"string\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"string\",\n                    \"primary\": \"boolean\"\n                },\n            ],\n            \"primary\": \"boolean\",\n            \"officeStatus\": {\n                \"officeState\": \"string\",\n                \"operationalDate\": \"string\"\n            },\n            \"originalAddress\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"linkedLuid\": \"integer\",\n            \"relatedLocations\": [\n                {\n                    \"type\": \"integer\",\n                    \"placeId\": \"string\"\n                }\n            ]\n        }\n    ],\n    \"professional\": {\n        \"title\": \"string\",\n        \"appellation\": \"string\",\n        \"degrees\": [\n            {\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ]\n        \"firstName\": \"string\"\n        \"lastName\": \"string\",\n        \"middleName\": \"string\",\n        \"gender\": \"string\",\n        \"birthday\": \"string\",\n        \"biography\": \"string\",\n        \"certifications\": [\n            {\n                \"number\": \"string\",\n                \"country\": \"string\",\n                \"endDate\": \"string\",\n                \"name\": \"string\",\n                \"issuer\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"affiliations\": [\n            {\n                \"affiliation\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"educations\": [\n            {\n                \"type\": \"string\",\n                \"institution\": \"string\",\n                \"graduationYear\": \"string\",\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"languages\": [\n            \"string\",\n        ],\n    },\n    \"serviceArea\": {\n        \"places\": [\"string\"],\n        \"businessType\": \"string\"\n    },\n    \"richKnowledge\": {\n        \"titleTag\": \"string\",\n        \"metaDescription\": \"string\",\n        \"metaKeywords\": [\"string\"],\n        \"htmlDescription\": \"string\",\n        \"zipCodesServed\": [\"string\"],\n        \"areasServed\": [\"string\"],\n        \"professionalStatement\": \"string\"\n    }\n    \"type\": \"string\",\n    \"primaryProfile\": \"boolean\",\n    \"profileDefinition\": \"string\",\n    \"createdDate\": \"string\",\n    \"updatedDate\": \"string\",\n    \"distance\": \"Double\",\n    \"slug\": \"string\"\n}\n\n</code></pre>\n","urlObject":{"path":["locations",":locationID"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>If set to true, the location will be marked as inactive but won't be fully deleted from the system. By default, this value is set to false, meaning the location will be fully removed unless specified otherwise.</p>\n","type":"text/plain"},"key":"preserveLocation","value":"<boolean>"}],"variable":[{"description":{"content":"<p>(Required) The unique identifier of the location profile to be deleted.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"locationID"}]}},"response":[{"id":"a54cb9a1-371a-4202-bc1a-a7ee602c285c","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/locations/:locationID?preserveLocation=true","protocol":"https","host":["api","reputation","com"],"path":["v3","locations",":locationID"],"query":[{"key":"preserveLocation","value":"true"}],"variable":[{"key":"locationID","value":"BP"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1427"},{"key":"etag","value":"W/\"593-0YrdKhyJL/j4J76P64aNU6toQ4A\""},{"key":"date","value":"Tue, 03 Oct 2023 23:33:05 GMT"},{"key":"x-envoy-upstream-service-time","value":"364"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"BP\",\n    \"internalID\": \"737493\",\n    \"optedOut\": false,\n    \"internalName\": \"Bay Plumbing & test (BP)\",\n    \"industryID\": \"automotive-parts\",\n    \"parentID\": null,\n    \"customVariables\": [\n        {\n            \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n            \"value\": \"MANUAL\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"Brand\",\n            \"value\": \"N/A\"\n        }\n    ],\n    \"state\": \"Active\",\n    \"externalName\": \"Bay Plumbing\",\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"MISSING_CATEGORY\",\n                \"label\": \"Missing Category\"\n            },\n            \"primary\": true\n        }\n    ],\n    \"places\": [\n        {\n            \"officeName\": \"Bay Plumbing\",\n            \"address\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063\",\n                \"country\": \"US\",\n                \"latitude\": \"37.4880518\",\n                \"longitude\": \"-122.2243949\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"businessHours\": null,\n            \"phones\": [\n                {\n                    \"number\": \"(650) 367-9493\",\n                    \"primary\": true,\n                    \"country\": \"US\",\n                    \"phoneType\": \"Local\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"http://bayplumbing.net\",\n                    \"primary\": true,\n                    \"websiteType\": \"Homepage\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"\",\n                    \"primary\": true\n                }\n            ],\n            \"primary\": true,\n            \"officeStatus\": null,\n            \"originalAddress\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063-2052\",\n                \"country\": \"US\",\n                \"latitude\": \"37.48776\",\n                \"longitude\": \"-122.22447\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"linkedLuid\": null,\n            \"relatedLocations\": null\n        }\n    ],\n    \"type\": \"RoofTop\",\n    \"locationType\": \"main\",\n    \"groupCode\": \"BP\",\n    \"primaryProfile\": true,\n    \"profileDefinition\": \"RoofTop\",\n    \"createdDate\": \"2018-03-14T05:08:53\",\n    \"updatedDate\": \"2023-04-07T07:45:01\",\n    \"distance\": null,\n    \"slug\": \"bay-plumbing-bay-plumbing-redwood-city-ca\"\n}"}],"_postman_id":"8a321c1d-d9fe-4db2-be5e-f7a55ecf4e71"},{"name":"Opt Out Of Audit","id":"8ff1d205-2056-409e-810d-683eff0f2dcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/locations/:locationID/opt-out","description":"<p>Opt-out specific sources from location profiles. If no specific <code>sourceIDs</code> are provided, the profile will be opted out from all eligible sources.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"PUT\", \"https://api.reputation.com/v3/locations/SA/opt-out?sourceIDs=FACEBOOK\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function() {\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    var response = JSON.parse(xhr.responseText);\n    console.log(response);\n  }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td></td>\n<td>String</td>\n<td>Identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td></td>\n<td>String</td>\n<td>The internal identification number assigned to the location - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates whether the location has opted out of listings publishing.</td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td></td>\n<td>String</td>\n<td>The internal name given to the location - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code></td>\n<td></td>\n<td>String</td>\n<td>Location's external name - ex. <code>Majestic Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td></td>\n<td>String</td>\n<td>The industry identification associated with the location - ex. <code>automotive-dealer</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td></td>\n<td>String</td>\n<td>The ID of the parent location if there's any, otherwise <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of custom variables associated with the location, containing the variable name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td></td>\n<td>Object Arrary</td>\n<td>An array of custom filters applied to the location, containing the filter name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td></td>\n<td>String</td>\n<td>Specifies the location type whether it's <code>main</code>, <code>branch</code>, etc.</td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates if the profile is the primary one.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td></td>\n<td>String</td>\n<td>Indicates the type of the location - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td></td>\n<td>String</td>\n<td>Definition or category of the profile - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>originalAddress</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Raw non-normalized version of the address inputed by the user</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>orignialAddress</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>originalAdress</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063-2052</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.48776</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group ex. <code>Employed</code>, <code>Independent</code></td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity.</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty type.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary.</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degrees</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>String</td>\n<td>Name of degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"string\",\n    \"internalID\": \"string\",\n    \"optedOut\": \"boolean\",\n    \"linkedProfileID\": \"string\",\n    \"tenantID\": \"string\",\n    \"internalName\": \"string\",\n    \"externalName\": \"string\",\n    \"industryID\": \"string\",\n    \"parentID\": \"string\",\n    \"customVariables\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"locationType\": \"string\",\n    \"groupCode\": \"string\",\n    \"state\": \"string\",\n    \"utm\": \"boolean\",\n    \"description\": \"string\",\n    \"tags\": [\n        \"string\",\n    ],\n    \"paymentTypes\": [\n        \"string\"\n    ],\n    \"covidMessage\": \"string\",\n    \"medias\": [\n        {\n            \"url\": \"string\",\n            \"title\": \"string\",\n            \"mediaType\": \"string\",\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"attributes\": [\n        {\n            \"attributeId\": \"string\",\n            \"boolValue\": \"boolean\"\n        },\n        {\n            \"attributeId\": \"string\",\n            \"values\": [\n                {\n                    \"id\": \"string\",\n                    \"boolValue\": \"boolean\"\n                },\n            ]\n        }\n    ],\n    \"owners\": [\n        {\n            \"name\": \"string\",\n            \"role\": \"string\",\n            \"pendingInvitation\": \"boolean\"\n        }\n    ]\n    \"socialMedias\": [\n        {\n            \"url\": \"string\",\n            \"socialMediaType\": \"string\"\n        },\n    ],\n    \"shortDescription\": \"string\",\n    \"medical\": {\n        \"npi\": \"string\",\n        \"stateLicenseNumber\": \"string\",\n        \"insurancesAccepted\": [\n            {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n        ],\n        \"acceptingNewPatients\": \"boolean\",\n        \"employerAffiliation\": \"string\",\n        \"specialties\": [\n            {\n                \"specialty\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"webMdCampaignId\": \"string\",\n        \"insuranceNetworks\": [\n            {\n                \"insuranceNetwork\": {\n                    \"id\": \"string\",\n                    \"label\": \"string\"\n                }\n            },\n        ]\n    },\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"places\": [\n        {\n            \"placeID\": \"string\",\n            \"officeName\": \"string\",\n            \"address\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"businessHours\": [\n                {\n                    \"timePeriods\": [\n                        {\n                            \"openDay\": \"string\",\n                            \"openTime\": \"string\",\n                            \"closeDay\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\"\n                        },\n                    ],\n                    \"name\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"specialHours\": [\n                        {\n                            \"openTime\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\",\n                            \"startDate\": \"string\"\n                        },\n                    ],\n                    \"businessHourType\": \"string\"\n                }\n            ],\n            \"phones\": [\n                {\n                    \"number\": \"string\",\n                    \"extension\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"country\": \"string\",\n                    \"phoneType\": \"string\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"websiteType\": \"string\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"string\",\n                    \"primary\": \"boolean\"\n                },\n            ],\n            \"primary\": \"boolean\",\n            \"officeStatus\": {\n                \"officeState\": \"string\",\n                \"operationalDate\": \"string\"\n            },\n            \"originalAddress\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"linkedLuid\": \"integer\",\n            \"relatedLocations\": [\n                {\n                    \"type\": \"integer\",\n                    \"placeId\": \"string\"\n                }\n            ]\n        }\n    ],\n    \"professional\": {\n        \"title\": \"string\",\n        \"appellation\": \"string\",\n        \"degrees\": [\n            {\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ]\n        \"firstName\": \"string\"\n        \"lastName\": \"string\",\n        \"middleName\": \"string\",\n        \"gender\": \"string\",\n        \"birthday\": \"string\",\n        \"biography\": \"string\",\n        \"certifications\": [\n            {\n                \"number\": \"string\",\n                \"country\": \"string\",\n                \"endDate\": \"string\",\n                \"name\": \"string\",\n                \"issuer\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"affiliations\": [\n            {\n                \"affiliation\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"educations\": [\n            {\n                \"type\": \"string\",\n                \"institution\": \"string\",\n                \"graduationYear\": \"string\",\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"languages\": [\n            \"string\",\n        ],\n    },\n    \"serviceArea\": {\n        \"places\": [\"string\"],\n        \"businessType\": \"string\"\n    },\n    \"richKnowledge\": {\n        \"titleTag\": \"string\",\n        \"metaDescription\": \"string\",\n        \"metaKeywords\": [\"string\"],\n        \"htmlDescription\": \"string\",\n        \"zipCodesServed\": [\"string\"],\n        \"areasServed\": [\"string\"],\n        \"professionalStatement\": \"string\"\n    }\n    \"type\": \"string\",\n    \"primaryProfile\": \"boolean\",\n    \"profileDefinition\": \"string\",\n    \"createdDate\": \"string\",\n    \"updatedDate\": \"string\",\n    \"distance\": \"Double\",\n    \"slug\": \"string\"\n}\n\n</code></pre>\n","urlObject":{"path":["locations",":locationID","opt-out"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>A comma-separated list of source IDs to specify which sources to opt-out from. If omitted, all eligible sources are opted out.\nExample: source1,source2,source3</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"}],"variable":[{"description":{"content":"<p>The unique identifier for the profile.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"locationID"}]}},"response":[{"id":"cf32fdcf-cc19-4441-ab9d-5960f231440b","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/locations/:locationID/opt-out?sourceIDs=FACEBOOK","protocol":"https","host":["api","reputation","com"],"path":["v3","locations",":locationID","opt-out"],"query":[{"key":"sourceIDs","value":"FACEBOOK"}],"variable":[{"key":"locationID","value":"SA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1703"},{"key":"etag","value":"W/\"6a7-+Jh79ZSy7pF4QxnEiXrIwzprLOE\""},{"key":"date","value":"Wed, 04 Oct 2023 00:04:53 GMT"},{"key":"x-envoy-upstream-service-time","value":"414"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"SA\",\n    \"internalID\": \"737476\",\n    \"optedOut\": false,\n    \"internalName\": \"Simple Art\",\n    \"industryID\": \"automotive-dealer\",\n    \"parentID\": null,\n    \"customVariables\": [\n        {\n            \"name\": \"test-inventory\",\n            \"value\": \"www.apple.com\"\n        },\n        {\n            \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n            \"value\": \"MANUAL\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"Brand\",\n            \"value\": \"Gallery\"\n        }\n    ],\n    \"state\": \"Active\",\n    \"externalName\": \"Simple Art\",\n    \"description\": \"Simple Art Page Descripton\",\n    \"shortDescription\": \"Simple Art Page\",\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                \"label\": \"Open Heart Surgery\"\n            },\n            \"primary\": true\n        }\n    ],\n    \"places\": [\n        {\n            \"officeName\": \"Simple Art\",\n            \"address\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063\",\n                \"country\": \"US\",\n                \"latitude\": \"37.48805\",\n                \"longitude\": \"-122.22439\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"businessHours\": null,\n            \"phones\": [\n                {\n                    \"number\": \"(408) 900-9080\",\n                    \"primary\": true,\n                    \"country\": \"US\",\n                    \"phoneType\": \"Local\"\n                },\n                {\n                    \"number\": \"(408) 990-9090\",\n                    \"primary\": false,\n                    \"country\": \"US\",\n                    \"phoneType\": \"Mobile\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"http://www.yahoo.com\",\n                    \"primary\": true,\n                    \"websiteType\": \"Homepage\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"repdef40+1990@gmail.com\",\n                    \"primary\": true\n                }\n            ],\n            \"primary\": true,\n            \"officeStatus\": {\n                \"officeState\": \"Opening_Soon\",\n                \"operationalDate\": \"2021-05-01\"\n            },\n            \"originalAddress\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063\",\n                \"country\": \"US\",\n                \"latitude\": \"37.48805\",\n                \"longitude\": \"-122.22439\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"linkedLuid\": null,\n            \"relatedLocations\": null\n        }\n    ],\n    \"type\": \"RoofTop\",\n    \"locationType\": null,\n    \"groupCode\": null,\n    \"primaryProfile\": true,\n    \"profileDefinition\": \"RoofTop\",\n    \"createdDate\": \"2018-03-14T05:08:53\",\n    \"updatedDate\": \"2023-10-03T17:04:52\",\n    \"distance\": null,\n    \"slug\": \"simple-art-simple-art-redwood-city-ca\"\n}"}],"_postman_id":"8ff1d205-2056-409e-810d-683eff0f2dcf"},{"name":"Opt In To Audit","id":"385b2b69-d70f-4cb1-9d8b-c27212d059f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/locations/:locationID/opt-in","description":"<p>Opt-in specific sources from location profiles. If no specific <code>sourceIDs</code> are provided, the profile will be opted in to all eligible sources.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"PUT\", \"https://api.reputation.com/v3/locations/SA/opt-in?sourceIDs=FACEBOOK\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function() {\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    var response = JSON.parse(xhr.responseText);\n    console.log(response);\n  }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td></td>\n<td>String</td>\n<td>Identifier for the location - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>internalID</code></td>\n<td></td>\n<td>String</td>\n<td>The internal identification number assigned to the location - ex. <code>737476</code></td>\n</tr>\n<tr>\n<td><code>optedOut</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates whether the location has opted out of listings publishing.</td>\n</tr>\n<tr>\n<td><code>linkedProfileID</code></td>\n<td></td>\n<td>String</td>\n<td>Id used to reference existing linked profiles</td>\n</tr>\n<tr>\n<td><code>tenantID</code></td>\n<td></td>\n<td>String</td>\n<td>Tenant's unique id. Attribute becomes read-only after profile is created</td>\n</tr>\n<tr>\n<td><code>internalName</code></td>\n<td></td>\n<td>String</td>\n<td>The internal name given to the location - ex. <code>Simple Art</code></td>\n</tr>\n<tr>\n<td><code>externalName</code></td>\n<td></td>\n<td>String</td>\n<td>Location's external name - ex. <code>Majestic Art</code></td>\n</tr>\n<tr>\n<td><code>industryID</code></td>\n<td></td>\n<td>String</td>\n<td>The industry identification associated with the location - ex. <code>automotive-dealer</code></td>\n</tr>\n<tr>\n<td><code>parentID</code></td>\n<td></td>\n<td>String</td>\n<td>The ID of the parent location if there's any, otherwise <code>null</code>.</td>\n</tr>\n<tr>\n<td><code>customVariables</code></td>\n<td></td>\n<td>Object Array</td>\n<td>An array of custom variables associated with the location, containing the variable name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Custom variable name - ex. <code>CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customVariables</code></td>\n<td>String</td>\n<td>Value of the custom variable - ex. <code>MANUAL</code></td>\n</tr>\n<tr>\n<td><code>customFilters</code></td>\n<td></td>\n<td>Object Arrary</td>\n<td>An array of custom filters applied to the location, containing the filter name and its value.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Custom filter name - ex. <code>Brand</code></td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td><code>customFilters</code></td>\n<td>String</td>\n<td>Value of the custom filter - ex. <code>Gallery</code></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td></td>\n<td>String</td>\n<td>Specifies the location type whether it's <code>main</code>, <code>branch</code>, etc.</td>\n</tr>\n<tr>\n<td><code>groupCode</code></td>\n<td></td>\n<td>String</td>\n<td>A common identifier used to associate the main location with its corresponding departmental or supplemental locations. This unique code must be the same for both the main location and any related department/supplemental locations - ex. <code>SA</code></td>\n</tr>\n<tr>\n<td><code>primaryProfile</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Indicates if the profile is the primary one.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td></td>\n<td>String</td>\n<td>Indicates the type of the location - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>profileDefinition</code></td>\n<td></td>\n<td>String</td>\n<td>Definition or category of the profile - ex. <code>Rooftop</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td></td>\n<td>String</td>\n<td>Defines the state of the entity, i.e. whether it is covered by the current contract with Reputation. If left empty, state will default to active - ex. <code>Active</code></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of \"Place\" objects</td>\n</tr>\n<tr>\n<td><code>placeID</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Place id</td>\n</tr>\n<tr>\n<td><code>officeName</code></td>\n<td><code>places</code></td>\n<td>String</td>\n<td>Office or practice name - ex. <code>Bay Plumbing</code></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Address object</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.4880518</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>address</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>originalAddress</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>Raw non-normalized version of the address inputed by the user</td>\n</tr>\n<tr>\n<td><code>streetAddress1</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 1 - ex. <code>1001 Marshall St</code></td>\n</tr>\n<tr>\n<td><code>streetAddress2</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Street address line 2 - ex. <code>Suite 300 null</code> if there is no line 2</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Locality/city - ex. <code>Redwood City</code></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td><code>orignialAddress</code></td>\n<td>String</td>\n<td>Region/State or Province - ex. <code>CA</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Country's 2 letter ISO Code - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>postalCode</code></td>\n<td><code>originalAdress</code></td>\n<td>String</td>\n<td>Postal Code/Zip Code - ex. <code>94063-2052</code></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address latitude - ex. <code>37.48776</code></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td><code>originalAddress</code></td>\n<td>String</td>\n<td>Address longitude - ex. <code>-122.2243949</code></td>\n</tr>\n<tr>\n<td><code>businessHours</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of \"business hours\" objects - If there are no objects, <code>null</code> is returned.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Name of the \"business hour\" object</td>\n</tr>\n<tr>\n<td><code>businessHourType</code></td>\n<td><code>businessHours</code></td>\n<td>String</td>\n<td>Refers to the type of business hours. - valid values: <code>Main</code> <code>Sales</code> <code>Service</code> <code>Parts</code> <code>Holiday</code></td>\n</tr>\n<tr>\n<td><code>timePeriods</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"Time Period\" objects to represent days and times opened/closed.</td>\n</tr>\n<tr>\n<td><code>openDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open days - valid values: <code>Sunday</code>, <code>Monday</code>, <code>Tuesday</code>,<code>Wednesday</code>,<code>Thursday</code>,<code>Friday</code>,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's open times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>openDay</code>.</td>\n</tr>\n<tr>\n<td><code>closeDay</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed days - valid values: <code>Sunday</code> ,<code>Monday</code>, <code>Tuesday</code> ,<code>Wednesday</code> ,<code>Thursday</code> ,<code>Friday</code> ,<code>Saturday</code></td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>timePeriods</code></td>\n<td>String</td>\n<td>Profile's closed times in 24hr ISO 8601 - valid values:  <br /><code>00:00-24:00</code>, where 24:00 represents midnight at the end of the specified <code>closeDay</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is open 24 hours during the specified day range</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>timePeriods</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed at the current time</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>businessHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether business hours are the profile's primary hours</td>\n</tr>\n<tr>\n<td><code>specialHours</code></td>\n<td><code>businessHours</code></td>\n<td>Object Array</td>\n<td>List of \"special time period\" objects -similar to <code>timePeriods</code> but used for special instances</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>The calendar date the special hour period starts on - In ISO 8601 format (YYYY-MM-DD) .</td>\n</tr>\n<tr>\n<td><code>openTime</code></td>\n<td><code>specialHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>closeTime</code></td>\n<td><code>speicalHours</code></td>\n<td>String</td>\n<td>Time in 24hr ISO 8601 extended format (hh:mm). Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the specified day field. Specified if <code>closed</code>and <code>open24Hours</code> is <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>open24Hours</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether open 24 hours during the specified day range. If true, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in startDate is treated as the location being open for the entire day.</td>\n</tr>\n<tr>\n<td><code>closed</code></td>\n<td><code>specialHours</code></td>\n<td>Boolean</td>\n<td>Denotes whether the profile is closed. If <code>true</code>, <code>openTime</code>, and <code>closeTime</code> are ignored, and the date specified in <code>startDate</code> is treated as the location being closed for the entire day.</td>\n</tr>\n<tr>\n<td><code>phones</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of phone number objects.</td>\n</tr>\n<tr>\n<td><code>phoneType</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone type - valid values: <code>Local</code>, <code>Mobile</code>, <code>Fax</code>, <code>TollFree</code>, <code>Tracked</code>, <code>Sales</code>, <code>Service</code>, <code>Parts</code>, <code>Emergency</code>, <code>GoogleOnly</code>, <code>FacebookOnly</code>, <code>BingOnly</code>, <code>FourSquareOnly</code>, <code>WhatsApp</code>, <code>Text_SMS</code>, <code>Other</code></td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Phone number - ex. \"<code>(408) 900-9080</code></td>\n</tr>\n<tr>\n<td><code>extension</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Extension number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>phones</code></td>\n<td>String</td>\n<td>Country of origin - ex. <code>US</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>phones</code></td>\n<td>Boolean</td>\n<td>Denotes whether phone is primary</td>\n</tr>\n<tr>\n<td><code>websites</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of websites</td>\n</tr>\n<tr>\n<td><code>websiteType</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Type of website - valid values: <code>Homepage</code> ,<code>Reservation</code>, <code>Order</code>, <code>GoogleHomepage</code>, <code>Covid</code>, <code>Telehealth</code>, <code>Menu</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>websites</code></td>\n<td>String</td>\n<td>Website URL - ex. <code>http://www.reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>websites</code></td>\n<td>Boolean</td>\n<td>Whether website is primary</td>\n</tr>\n<tr>\n<td><code>emails</code></td>\n<td><code>places</code></td>\n<td>Object Array</td>\n<td>List of emails</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>emails</code></td>\n<td>String</td>\n<td>The business's email address - ex. <code>business@reputation.com</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>emails</code></td>\n<td>Boolean</td>\n<td>Whether email is primary email</td>\n</tr>\n<tr>\n<td><code>officeStatus</code></td>\n<td><code>places</code></td>\n<td>Object</td>\n<td>An office status object containing the <code>officeState</code> and <code>operationalDate</code>.</td>\n</tr>\n<tr>\n<td><code>officeState</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Office state/status type - valid values: <code>Open</code>,<code>Closed</code>,<code>Moved</code>,<code>Permanently_Closed</code>,<code>Opening_Soon</code>,<code>Closing_Soon</code>,<code>Temporarily_Closed</code></td>\n</tr>\n<tr>\n<td><code>operationalDate</code></td>\n<td><code>officeStatus</code></td>\n<td>String</td>\n<td>Date of office state in ISO 8601 format (YYYY-MM-DD) - ex. <code>2021-05-01</code></td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>places</code></td>\n<td>Boolean</td>\n<td>Whether place is business's primary place</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td></td>\n<td>String</td>\n<td>Description of the business - ex. <code>Simple Art Page Description</code></td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td></td>\n<td>String</td>\n<td>Short description to publish on Source site. Limit of 155 characters - ex. <code>Simple Art Page</code></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n<td>String</td>\n<td>Keywords identifying the location, used in meta-tags - ex. <code>art</code>,<code>exclusive</code>,<code>low prices</code></td>\n</tr>\n<tr>\n<td><code>utm</code></td>\n<td></td>\n<td>Boolean</td>\n<td>Whether a UTM source is appended to a primary URL when it is sent to GoogleMyBusinees. UTM example: ?utm_source=local&amp;utm_medium=organic&amp;utm_camp</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of Attribute objects. Available attributes depend on selected categories. See <strong>Attributes</strong> section below for more details.</td>\n</tr>\n<tr>\n<td><code>attributeId</code></td>\n<td><code>attributes</code></td>\n<td>String</td>\n<td>Attribute Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>attributes</code></td>\n<td>Boolean</td>\n<td>Attribute boolean value. This field or <code>values</code>is used but not both. Valid values are: <code>true</code>or <code>false</code></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td><code>attributes</code></td>\n<td>Object Array</td>\n<td>List of Attribute values. This field or <code>boolValue</code>is used but not both</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>values</code></td>\n<td>String</td>\n<td>Attribute value Id</td>\n</tr>\n<tr>\n<td><code>boolValue</code></td>\n<td><code>values</code></td>\n<td>Boolean</td>\n<td>Boolean of attribute value</td>\n</tr>\n<tr>\n<td><code>owners</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of owners</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>The name of the admin. When making the initial invitation, this is the invitee's email address.</td>\n</tr>\n<tr>\n<td><code>role</code></td>\n<td><code>owners</code></td>\n<td>String</td>\n<td>Role of the owner</td>\n</tr>\n<tr>\n<td><code>pendingInvitation</code></td>\n<td><code>owners</code></td>\n<td>Boolean</td>\n<td>Status of the invitation sent to the owner.</td>\n</tr>\n<tr>\n<td><code>socialMedias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of social media objects</td>\n</tr>\n<tr>\n<td><code>socialMediaType</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>Type of social media - valid values: <code>Facebook</code>,<code>Twitter</code>,<code>Instagram</code>,<code>Snapchat</code>,<code>YouTube</code>,<code>LinkedIn</code>,<code>Pintrest</code>,<code>Blog</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>socialMedias</code></td>\n<td>String</td>\n<td>URL for social media</td>\n</tr>\n<tr>\n<td><code>medias</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of media objects</td>\n</tr>\n<tr>\n<td><code>mediaType</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Media Type. png or jpeg file for cover photo: 16:9 aspect ratio with minimum size 400px - <strong>valid values:</strong> <code>Headshot</code>,<code>Cover</code>,<code>Profile</code>,<code>Logo</code>,<code>Video</code>,<code>Google_Logo</code>,<code>Google_Cover</code>,<code>Facebook_Profile</code>,<code>Facebook_Cover</code>,<code>Additional</code></td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>URL for Media</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>medias</code></td>\n<td>String</td>\n<td>Title for media object</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>medias</code></td>\n<td>Boolean</td>\n<td>Whether media is primary</td>\n</tr>\n<tr>\n<td><code>medical</code></td>\n<td></td>\n<td>Object</td>\n<td>Medical details provided if listing is for a medical business.</td>\n</tr>\n<tr>\n<td><code>npi</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>National Provider Identifier (NPI) is a unique 10-digit identification number issued to health care providers in the United States. NPI is used to uniquely identify health care providers in the US.</td>\n</tr>\n<tr>\n<td><code>stateLicenseNumber</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>State license number</td>\n</tr>\n<tr>\n<td><code>insurancesAccepted</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance objects</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insurancesAccepted</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>acceptingNewPatients</code></td>\n<td><code>medical</code></td>\n<td>Boolean</td>\n<td>Boolean used to determine whether a health care provider or facility is currently accepting new patients</td>\n</tr>\n<tr>\n<td><code>employerAffiliation</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>Used to characterize the employer affiliation, as doctors can be either employed or affiliated with a health care group ex. <code>Employed</code>, <code>Independent</code></td>\n</tr>\n<tr>\n<td><code>specialties</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of specialties associated with the entity.</td>\n</tr>\n<tr>\n<td><code>specialty</code></td>\n<td><code>specialties</code></td>\n<td>String</td>\n<td>Specialty type.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>specialties</code></td>\n<td>Boolean</td>\n<td>Whether specialty is primary.</td>\n</tr>\n<tr>\n<td><code>webMdCampaignId</code></td>\n<td><code>medical</code></td>\n<td>String</td>\n<td>This is an ID provided by WebMD to shared clients between Reputation and WebMD that are running paid Carefinder campaigns on WebMD. This field will allow shared clients to manage their WebMD campaigns directly from the Reputation platform.</td>\n</tr>\n<tr>\n<td><code>insuranceNetworks</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>List of insurance networks that are accepted by the health care provider or facility. This field will replace the deprecated InsurancesAccepted.</td>\n</tr>\n<tr>\n<td><code>insuranceNetork</code></td>\n<td><code>medical</code></td>\n<td>Object Array</td>\n<td>An insurance network is a list of the doctors, other health care providers, and hospitals that a plan has contracted with to provide medical care to its members</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Id of the object</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>insuranceNetork</code></td>\n<td>String</td>\n<td>Label of the object</td>\n</tr>\n<tr>\n<td><code>professional</code></td>\n<td></td>\n<td>Object</td>\n<td>If the listing is for service professional, then it will provide the details for the professional.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Title</td>\n</tr>\n<tr>\n<td><code>appellation</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Appellation</td>\n</tr>\n<tr>\n<td><code>degrees</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of Degrees</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>degrees</code></td>\n<td>String</td>\n<td>Name of degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>degrees</code></td>\n<td>Boolean</td>\n<td>Whether degree is primary</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's first name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's last name</td>\n</tr>\n<tr>\n<td><code>middleName</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's middle name</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's gender</td>\n</tr>\n<tr>\n<td><code>birthday</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's Birthday in ISO 8601 format (YYYY-MM-DD)</td>\n</tr>\n<tr>\n<td><code>biography</code></td>\n<td><code>professional</code></td>\n<td>String</td>\n<td>Person's biography</td>\n</tr>\n<tr>\n<td><code>certifications</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of certifications</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification/License number</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Country issuing certification. 2 letter ISO code.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Expiration date of the Certification/License (YYYY-MM-DD).</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td><code>issuer</code></td>\n<td><code>certifications</code></td>\n<td>String</td>\n<td>Certification issuer</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>certifications</code></td>\n<td>Boolean</td>\n<td>Whether certification is primary certification</td>\n</tr>\n<tr>\n<td><code>affiliations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of affiliations. For non-healthcare professionals, list of professional associations. For Healthcare Professionals, list of admitting hospitals.</td>\n</tr>\n<tr>\n<td><code>affiliation</code></td>\n<td><code>affiliations</code></td>\n<td>String</td>\n<td>Affiliation name</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>affiliations</code></td>\n<td>Boolean</td>\n<td>Whether affiliation is primary affiliation. If none of the affiliations are defined as prmary=<code>true</code>, then the first affiliation will be defaulted to primary=<code>true</code></td>\n</tr>\n<tr>\n<td><code>educations</code></td>\n<td><code>professional</code></td>\n<td>Object Array</td>\n<td>List of educational experience</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Type of edcuation - valid values: <code>Undergraduate</code>,<code>Graduate</code>,<code>Medical</code>,<code>Law</code>,<code>Internship</code>,<code>Fellowship</code>,<code>Residency</code>,<code>AdditionalTraining</code>,<code>BachelorOfScience</code>,<code>DentalSchool</code>,<code>MasterOfArts</code>,<code>Masters</code>,<code>MastersOfScience</code>,<code>NursingSchool</code>,<code>PHD</code>,<code>ProfessionalEducation</code>,<code>PsyD</code>,<code>Society</code>,<code>Certification</code>,<code>Education</code>,<code>ProfessionalAffiliations</code>,<code>ProfessionalMembership</code>,<code>SpecializationsAndProcedures</code>,<code>Awards</code>,<code>Other</code></td>\n</tr>\n<tr>\n<td><code>institution</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Name of institution</td>\n</tr>\n<tr>\n<td><code>graduationYear</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation year</td>\n</tr>\n<tr>\n<td><code>degree</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Graduation Degree</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>educations</code></td>\n<td>String</td>\n<td>Whether education is the professional's primary/main education</td>\n</tr>\n<tr>\n<td><code>languages</code></td>\n<td><code>professionals</code></td>\n<td>String</td>\n<td>List of languages</td>\n</tr>\n<tr>\n<td><code>serviceArea</code></td>\n<td></td>\n<td>Object</td>\n<td>Service are details object (for service area businesses).</td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td><code>serviceArea</code></td>\n<td>String Array</td>\n<td>Zip Code or City Name, State, Country (if applicable)</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td><code>serviceArea</code></td>\n<td>String</td>\n<td>Business type - valid values: <code>BUSINESS_TYPE_UNSPECIFIED</code>,<code>CUSTOMER_AND_BUSINESS_LOCATION</code>,<code>CUSTOMER_LOCATION_ONLY</code></td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td></td>\n<td>Object Array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>categories</code></td>\n<td>Object</td>\n<td>Caregory object</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object id</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td><code>category</code></td>\n<td>String</td>\n<td>Object label</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td><code>categories</code></td>\n<td>Boolean</td>\n<td>Whether <code>category</code> object is the primary object.</td>\n</tr>\n<tr>\n<td><code>paymentTypes</code></td>\n<td></td>\n<td>String Array</td>\n<td>Comma separated list of accepted payment types</td>\n</tr>\n<tr>\n<td><code>richKnowledge</code></td>\n<td></td>\n<td>Object</td>\n<td>Object containing metadata</td>\n</tr>\n<tr>\n<td><code>titleTag</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that specifies the title of the web page</td>\n</tr>\n<tr>\n<td><code>metaDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>The HTML element that describes the subject of the webpage</td>\n</tr>\n<tr>\n<td><code>metaKeywords</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The HTML element that lists keywords related to the webpage</td>\n</tr>\n<tr>\n<td><code>htmlDescription</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>HTML enabled business description of the profile</td>\n</tr>\n<tr>\n<td><code>zipCodesServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of zipCodes served by the entity</td>\n</tr>\n<tr>\n<td><code>areasServed</code></td>\n<td><code>richKnowledge</code></td>\n<td>String Array</td>\n<td>The list of areas served by the entity</td>\n</tr>\n<tr>\n<td><code>professionalStatement</code></td>\n<td><code>richKnowledge</code></td>\n<td>String</td>\n<td>Brief statement of the professional represented by the entity</td>\n</tr>\n<tr>\n<td><code>covidMessage</code></td>\n<td></td>\n<td>String</td>\n<td>This field allows communication centered around COVID-19. It can be used to communicate cleaning protocols, store capacity, security measures, mask requirements, and other measures. The field is limited to 200 characters and must only be used to provide messages related to COVID-19.</td>\n</tr>\n<tr>\n<td><code>createdDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's created date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>updatedDate</code></td>\n<td></td>\n<td>String</td>\n<td>Profile's updated date - Datetime ISO 8601</td>\n</tr>\n<tr>\n<td><code>distance</code></td>\n<td></td>\n<td>Number (Double)</td>\n<td>Shows the distance of the Location from the provided Latitude and Longitude or Postal Code</td>\n</tr>\n<tr>\n<td><code>slug</code></td>\n<td></td>\n<td>String</td>\n<td>Url slug</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"string\",\n    \"internalID\": \"string\",\n    \"optedOut\": \"boolean\",\n    \"linkedProfileID\": \"string\",\n    \"tenantID\": \"string\",\n    \"internalName\": \"string\",\n    \"externalName\": \"string\",\n    \"industryID\": \"string\",\n    \"parentID\": \"string\",\n    \"customVariables\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"locationType\": \"string\",\n    \"groupCode\": \"string\",\n    \"state\": \"string\",\n    \"utm\": \"boolean\",\n    \"description\": \"string\",\n    \"tags\": [\n        \"string\",\n    ],\n    \"paymentTypes\": [\n        \"string\"\n    ],\n    \"covidMessage\": \"string\",\n    \"medias\": [\n        {\n            \"url\": \"string\",\n            \"title\": \"string\",\n            \"mediaType\": \"string\",\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"attributes\": [\n        {\n            \"attributeId\": \"string\",\n            \"boolValue\": \"boolean\"\n        },\n        {\n            \"attributeId\": \"string\",\n            \"values\": [\n                {\n                    \"id\": \"string\",\n                    \"boolValue\": \"boolean\"\n                },\n            ]\n        }\n    ],\n    \"owners\": [\n        {\n            \"name\": \"string\",\n            \"role\": \"string\",\n            \"pendingInvitation\": \"boolean\"\n        }\n    ]\n    \"socialMedias\": [\n        {\n            \"url\": \"string\",\n            \"socialMediaType\": \"string\"\n        },\n    ],\n    \"shortDescription\": \"string\",\n    \"medical\": {\n        \"npi\": \"string\",\n        \"stateLicenseNumber\": \"string\",\n        \"insurancesAccepted\": [\n            {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n        ],\n        \"acceptingNewPatients\": \"boolean\",\n        \"employerAffiliation\": \"string\",\n        \"specialties\": [\n            {\n                \"specialty\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"webMdCampaignId\": \"string\",\n        \"insuranceNetworks\": [\n            {\n                \"insuranceNetwork\": {\n                    \"id\": \"string\",\n                    \"label\": \"string\"\n                }\n            },\n        ]\n    },\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"string\",\n                \"label\": \"string\"\n            },\n            \"primary\": \"boolean\"\n        }\n    ],\n    \"places\": [\n        {\n            \"placeID\": \"string\",\n            \"officeName\": \"string\",\n            \"address\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"businessHours\": [\n                {\n                    \"timePeriods\": [\n                        {\n                            \"openDay\": \"string\",\n                            \"openTime\": \"string\",\n                            \"closeDay\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\"\n                        },\n                    ],\n                    \"name\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"specialHours\": [\n                        {\n                            \"openTime\": \"string\",\n                            \"closeTime\": \"string\",\n                            \"open24Hours\": \"boolean\",\n                            \"closed\": \"boolean\",\n                            \"startDate\": \"string\"\n                        },\n                    ],\n                    \"businessHourType\": \"string\"\n                }\n            ],\n            \"phones\": [\n                {\n                    \"number\": \"string\",\n                    \"extension\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"country\": \"string\",\n                    \"phoneType\": \"string\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"string\",\n                    \"primary\": \"boolean\",\n                    \"websiteType\": \"string\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"string\",\n                    \"primary\": \"boolean\"\n                },\n            ],\n            \"primary\": \"boolean\",\n            \"officeStatus\": {\n                \"officeState\": \"string\",\n                \"operationalDate\": \"string\"\n            },\n            \"originalAddress\": {\n                \"streetAddress2\": \"string\",\n                \"locality\": \"string\",\n                \"region\": \"string\",\n                \"postalCode\": \"string\",\n                \"country\": \"string\",\n                \"latitude\": \"string\",\n                \"longitude\": \"string\",\n                \"streetAddress1\": \"string\"\n            },\n            \"linkedLuid\": \"integer\",\n            \"relatedLocations\": [\n                {\n                    \"type\": \"integer\",\n                    \"placeId\": \"string\"\n                }\n            ]\n        }\n    ],\n    \"professional\": {\n        \"title\": \"string\",\n        \"appellation\": \"string\",\n        \"degrees\": [\n            {\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ]\n        \"firstName\": \"string\"\n        \"lastName\": \"string\",\n        \"middleName\": \"string\",\n        \"gender\": \"string\",\n        \"birthday\": \"string\",\n        \"biography\": \"string\",\n        \"certifications\": [\n            {\n                \"number\": \"string\",\n                \"country\": \"string\",\n                \"endDate\": \"string\",\n                \"name\": \"string\",\n                \"issuer\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"affiliations\": [\n            {\n                \"affiliation\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"educations\": [\n            {\n                \"type\": \"string\",\n                \"institution\": \"string\",\n                \"graduationYear\": \"string\",\n                \"degree\": \"string\",\n                \"primary\": \"boolean\"\n            }\n        ],\n        \"languages\": [\n            \"string\",\n        ],\n    },\n    \"serviceArea\": {\n        \"places\": [\"string\"],\n        \"businessType\": \"string\"\n    },\n    \"richKnowledge\": {\n        \"titleTag\": \"string\",\n        \"metaDescription\": \"string\",\n        \"metaKeywords\": [\"string\"],\n        \"htmlDescription\": \"string\",\n        \"zipCodesServed\": [\"string\"],\n        \"areasServed\": [\"string\"],\n        \"professionalStatement\": \"string\"\n    }\n    \"type\": \"string\",\n    \"primaryProfile\": \"boolean\",\n    \"profileDefinition\": \"string\",\n    \"createdDate\": \"string\",\n    \"updatedDate\": \"string\",\n    \"distance\": \"Double\",\n    \"slug\": \"string\"\n}\n\n</code></pre>\n","urlObject":{"path":["locations",":locationID","opt-in"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>A comma-separated list of source IDs to specify which sources to opt-in to. If omitted, all eligible sources are opted in.</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"}],"variable":[{"description":{"content":"<p>(Required) The unique identifier for the profile.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"locationID"}]}},"response":[{"id":"c70c4374-52d2-4ffb-aaf7-bd6105ce3738","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/locations/:locationID/opt-in?sourceIDs=FACEBOOK","protocol":"https","host":["api","reputation","com"],"path":["v3","locations",":locationID","opt-in"],"query":[{"key":"sourceIDs","value":"FACEBOOK"}],"variable":[{"key":"locationID","value":"SA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1703"},{"key":"etag","value":"W/\"6a7-Lkve0iQDlml4K3kRMsFLyPcjNY4\""},{"key":"date","value":"Wed, 04 Oct 2023 00:20:54 GMT"},{"key":"x-envoy-upstream-service-time","value":"124"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"SA\",\n    \"internalID\": \"737476\",\n    \"optedOut\": false,\n    \"internalName\": \"Simple Art\",\n    \"industryID\": \"automotive-dealer\",\n    \"parentID\": null,\n    \"customVariables\": [\n        {\n            \"name\": \"test-inventory\",\n            \"value\": \"www.apple.com\"\n        },\n        {\n            \"name\": \"CAMPAIGN_ENROLLMENT_AND_SCHEDULE_PREFERENCE\",\n            \"value\": \"MANUAL\"\n        }\n    ],\n    \"customFilters\": [\n        {\n            \"name\": \"Brand\",\n            \"value\": \"Gallery\"\n        }\n    ],\n    \"state\": \"Active\",\n    \"externalName\": \"Simple Art\",\n    \"description\": \"Simple Art Page Descripton\",\n    \"shortDescription\": \"Simple Art Page\",\n    \"categories\": [\n        {\n            \"category\": {\n                \"id\": \"TENANT_1990:OPEN_HEART_SURGERY\",\n                \"label\": \"Open Heart Surgery\"\n            },\n            \"primary\": true\n        }\n    ],\n    \"places\": [\n        {\n            \"officeName\": \"Simple Art\",\n            \"address\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063\",\n                \"country\": \"US\",\n                \"latitude\": \"37.48805\",\n                \"longitude\": \"-122.22439\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"businessHours\": null,\n            \"phones\": [\n                {\n                    \"number\": \"(408) 900-9080\",\n                    \"primary\": true,\n                    \"country\": \"US\",\n                    \"phoneType\": \"Local\"\n                },\n                {\n                    \"number\": \"(408) 990-9090\",\n                    \"primary\": false,\n                    \"country\": \"US\",\n                    \"phoneType\": \"Mobile\"\n                }\n            ],\n            \"websites\": [\n                {\n                    \"url\": \"http://www.yahoo.com\",\n                    \"primary\": true,\n                    \"websiteType\": \"Homepage\"\n                }\n            ],\n            \"emails\": [\n                {\n                    \"email\": \"repdef40+1990@gmail.com\",\n                    \"primary\": true\n                }\n            ],\n            \"primary\": true,\n            \"officeStatus\": {\n                \"officeState\": \"Opening_Soon\",\n                \"operationalDate\": \"2021-05-01\"\n            },\n            \"originalAddress\": {\n                \"streetAddress2\": null,\n                \"locality\": \"Redwood City\",\n                \"region\": \"CA\",\n                \"postalCode\": \"94063\",\n                \"country\": \"US\",\n                \"latitude\": \"37.48805\",\n                \"longitude\": \"-122.22439\",\n                \"streetAddress1\": \"1001 Marshall St\"\n            },\n            \"linkedLuid\": null,\n            \"relatedLocations\": null\n        }\n    ],\n    \"type\": \"RoofTop\",\n    \"locationType\": null,\n    \"groupCode\": null,\n    \"primaryProfile\": true,\n    \"profileDefinition\": \"RoofTop\",\n    \"createdDate\": \"2018-03-14T05:08:53\",\n    \"updatedDate\": \"2023-10-03T17:20:54\",\n    \"distance\": null,\n    \"slug\": \"simple-art-simple-art-redwood-city-ca\"\n}"}],"_postman_id":"385b2b69-d70f-4cb1-9d8b-c27212d059f1"},{"name":"Add Page","id":"1c14d39a-0f0b-47bc-a8f7-645dca46b09c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"source\": \"string\",\n  \"url\": \"string\",\n  \"pageID\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/locations/:locationID/addPage","description":"<p>Use this endpoint to associate a new external page (such as a social media profile or a source page) with a specific location profile in the Reputation platform. It's important to ensure that the provided URL and page ID are unclaimed.</p>\n<p>For assistance in determining available source URLs, you can utilize the <strong>Autofind Results</strong> feature in the platform to identify potential matches for your location.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"POST\", \"https://api.reputation.com/v3/locations/101/addPage\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\nxhr.onreadystatechange = function () {\n  if (xhr.readyState == 4) {\n    console.log(xhr.responseText);\n  }\n};\nvar data = JSON.stringify({\n  \"source\": \"YAHOO_LOCAL\",\n  \"url\": \"https://local.yahoo.com/info-16208499\",\n  \"pageID\": \"16208499\"\n});\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>source</code><strong>(Required)</strong></td>\n<td>String</td>\n<td>The platform or origin from where the page originates (e.g., <code>FACEBOOK</code>, <code>YELLOW_PAGES</code>, etc.)</td>\n</tr>\n<tr>\n<td><code>url</code> <strong>(Required)</strong></td>\n<td>String</td>\n<td>The complete web address (URL) where the page can be accessed - ex. <code>https://local.yahoo.com/info-16208499</code></td>\n</tr>\n<tr>\n<td><code>pageID</code> <strong>(Required)</strong></td>\n<td>String</td>\n<td>A unique identifier for the page assigned by the platform or source hosting the page - ex. <code>16208499</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["locations",":locationID","addPage"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) The unique identifier for the profile to which the page is to be added.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"locationID"}]}},"response":[{"id":"3dae9ac8-d830-45d1-b41d-ab5256ff3d30","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"source\": \"YAHOO_LOCAL\",\n  \"url\": \"https://local.yahoo.com/info-16208499\",\n  \"pageID\": \"16208499\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.reputation.com/v3/locations/:locationID/addPage","protocol":"https","host":["api","reputation","com"],"path":["v3","locations",":locationID","addPage"],"variable":[{"key":"locationID","value":"101","description":"(Required) Location id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"109"},{"key":"etag","value":"W/\"6d-9DFEJuqT8MddR+/XYQAeFEC69LE\""},{"key":"date","value":"Wed, 04 Oct 2023 03:12:12 GMT"},{"key":"x-envoy-upstream-service-time","value":"218"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"locationID\": \"101\",\n    \"source\": \"YAHOO_LOCAL\",\n    \"url\": \"https://local.yahoo.com/info-16208499\",\n    \"pageID\": \"16208499\"\n}"}],"_postman_id":"1c14d39a-0f0b-47bc-a8f7-645dca46b09c"},{"name":"Get Attribute Definitions","id":"d888f2f7-4521-47ba-846d-301ecf9a5260","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/location-attribute-definitions?categoryIds=<string array>","description":"<p>An array of category IDs for which the attribute definitions are fetched. The provided IDs help in narrowing down the list of attribute definitions specific to the given profile categories.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/location-attribute-definitions?categoryIds=RESTAURANTS_,ARTS_&amp;_ENTERTAINMENT_ARTIST', true);\nxhr.setRequestHeader('x-api-key', 'Your API Key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>String</td>\n<td>A unique identifier representing a specific attribute within the system. For example, the ID <code>has_order_and_pay_ahead</code> signifies an attribute related to the ability of a location to accept orders and payments ahead of time.</td>\n</tr>\n<tr>\n<td><code>sourceID</code></td>\n<td>String</td>\n<td>The identifier for the external source platform or system from which the attribute originates or is relevant. It indicates where this particular attribute is primarily used or where it's fetched from -ex. <code>GOOGLE_PLACES</code></td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>String</td>\n<td>A human-readable name or label for the attribute, which offers a brief description or representation of what the attribute stands for or indicates - ex. <code>Pay ahead</code></td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Specifies the datatype or nature of the attribute's value. This helps in understanding how the attribute's value should be interpreted or used -ex. <code>BOOL</code>indicates that the attribute's value is boolean</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"string\",\n    \"sourceID\": \"string\",\n    \"name\": \"string\",\n    \"type\": \"string\"\n}\n\n\n</code></pre>\n","urlObject":{"path":["location-attribute-definitions"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>(Required) An array of comma seperated category IDs for which the attribute definitions are to be fetched. The provided IDs help in narrowing down the list of attribute definitions specific to the given location categories.</p>\n","type":"text/plain"},"key":"categoryIds","value":"<string array>"}],"variable":[]}},"response":[{"id":"c351b2b0-6dc1-46d8-aff2-3ff46855990f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API Key"}],"url":{"raw":"https://api.reputation.com/v3/location-attribute-definitions?categoryIds=RESTAURANTS_,ARTS_%26_ENTERTAINMENT_ARTIST","protocol":"https","host":["api","reputation","com"],"path":["v3","location-attribute-definitions"],"query":[{"key":"categoryIds","value":"RESTAURANTS_,ARTS_&_ENTERTAINMENT_ARTIST"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"18564"},{"key":"etag","value":"W/\"4884-rVfP0BMAhAdkSn7EUSb2n7TBOrs\""},{"key":"date","value":"Wed, 04 Oct 2023 03:55:16 GMT"},{"key":"x-envoy-upstream-service-time","value":"2918"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"has_order_and_pay_ahead\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Pay ahead\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-breakfastoption-freebreakfast\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Free Breakfast\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-safety_features-sanitationstation\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Sanitation Station\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-streetparking\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Street Parking\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-services-curbside_pickup\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Curbside Pickup\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-transportation-shuttle\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Shuttle\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_no_contact_delivery\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"No-contact delivery\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-family_kids-kidsamenities\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Kids Amenities\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_covid_19_testing_patient_restrictions\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Tests limited to certain patients\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-barservice-beer_wine\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Beer Wine\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-pets-serviceanimals\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Service Animals\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-transportation-free_airportshuttle\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Free Airport Shuttle\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-spoken_languages-spanish\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Spanish\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-accessibility_features-digital_accessibility\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Digital Accessibility\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"welcomes_children\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Good for kids\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"welcomes_lgbtq\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"LGBTQ+ friendly\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_drive_through_covid_19_testing\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Drive-through\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_halal_food\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Halal food\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-payments-cash\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Cash\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-reservations-accepts_reservations\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Accepts Reservations\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-valetparking\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Valet Parking\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_dinner\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Dinner\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ev_chargingstations-tesla_supercharger\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Tesla Supercharger\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"suitable_for_watching_sports\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Sports\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-goodfor-couples\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Couples\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ambiance-traditional\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Traditional\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_owned_by_veterans\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Identifies as veteran-owned\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_hearing_loop\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Assistive hearing loop\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_high_chairs\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"High chairs\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-barservice-fullbar\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Full Bar\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_beer\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Beer\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ambiance-romantic\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Romantic\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-techfeatures-airconditioning\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Air Conditioning\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-family_kids-game_gamingroom\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Game Gaming Room\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_braille_menu\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Braille menu\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-goodfor-groups\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Groups\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_counter_service\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Counter service\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ambiance-casual\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Casual\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-age_restrictions-over_21\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Over 21\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ambiance-trendy\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Trendy\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-specialhours-open_24h\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Open 24h\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_takeout\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Takeout\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_wheelchair_accessible_parking\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Wheelchair accessible parking lot\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_wine\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Wine\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_happy_hour_food\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Happy hour food\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-techfeatures-internet\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Internet\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ambiance-upscale\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Upscale\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-free_selfpark\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Free Self Park\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"requires_temperature_check_customers\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Temperature check required\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"requires_reservations\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Reservations required\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-specialhours-senior_hours\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Senior Hours\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-reservations-walk_ins\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Walk Ins\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-bike_parking\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Bike Parking\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_late_night_food\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Late-night food\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_restroom\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-age_restrictions-adults_only\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Adults Only\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-attire-bizcasual\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Bizcasual\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-payments-applepay\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Apple Pay\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-age_restrictions-all_ages\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"All Ages\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-restrooms-family_restroom\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Family Restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-services-dropoff\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Drop Off\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_wheelchair_accessible_entrance\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Wheelchair accessible entrance\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ev_chargingstations-dc_fast_chargers\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Dc Fast Chargers\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_drive_through\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Drive-through\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_restroom_unisex\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Gender-neutral restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_childrens_menu\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Kids' menu\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-accessibleparking\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Accessible Parking\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_organic\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Organic dishes\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"welcomes_families\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Family-friendly\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"wi_fi\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Wi-Fi\",\n        \"values\": [\n            {\n                \"id\": \"free_wi_fi\",\n                \"label\": \"Free\"\n            },\n            {\n                \"id\": \"paid_wi_fi\",\n                \"label\": \"Paid\"\n            }\n        ],\n        \"type\": \"ENUM\"\n    },\n    {\n        \"id\": \"crossbusiness-payments-debitcard\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Debit Card\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-outdoor_parking\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Outdoor Parking\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_coffee\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Coffee\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-pets-petamenities\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Pet Amenities\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-pets-pets_welcome\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Pets Welcome\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_lunch\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Lunch\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_catering\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Catering\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"requires_masks_staff\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Staff wear masks\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_breakfast\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Breakfast\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-services-drive_through\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Drive Through\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-smoking-smoking_areas\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Smoking Areas\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-spoken_languages-english\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"English\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-attire-elegant\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Elegant\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_fireplace\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Fireplace\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_owned_by_asian\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Identifies as Asian-owned\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_sanitizing_between_customers\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Staff required to disinfect surfaces between visits\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_cocktails\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Cocktails\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-attire-casual_attire\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Casual Attire\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-safety_features-free_masks\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Free Masks\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-specialhours-drivethrough_open_24h\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Drive Through Open 24h\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"pay_debit_card\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Debit cards\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-breakfastoption-englishbreakfast\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"English Breakfast\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-barservice-happyhour\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Happy Hour\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_transgender_safespace\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Transgender safespace\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"local_specialty\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Serves local specialty\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_seating\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Seating\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_vegetarian\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Vegetarian options\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-restrooms-female_restroom\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Female Restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-barservice-bar_lounge\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Bar Lounge\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_dessert\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Dessert\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_brunch\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Brunch\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"offers_fifa_world_cup_broadcast\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Showing the World Cup\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-breakfastoption-continentalbreakfast\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Continental Breakfast\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"accepts_reservations\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Accepts reservations\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-family_kids-kids_playarea\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Kids Play Area\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-goodfor-families\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Families\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-goodfor-singles\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Singles\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-specialhours-holiday_hours\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Holiday Hours\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-parking_garage\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Parking Garage\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_private_dining_room\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Private dining room\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_alcohol\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Alcohol\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-pets-petsfree\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Pets Free\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-reservations-reservations_only\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Reservations Only\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_liquor\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Hard liquor\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-payments-creditcard\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Credit Card\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_appointment_required_covid_19_testing\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Appointment required for Covid Test\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_live_music\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Live music\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_happy_hour_drinks\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Happy hour drinks\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-transportation-elevator\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Elevator\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-safety_features-sanitized_rooms\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Sanitized Rooms\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_changing_tables\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Has changing table(s)\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_wheelchair_accessible_restroom\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Wheelchair accessible restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_salad_bar\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Salad bar\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"pay_mobile_nfc\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"NFC mobile payments\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-age_restrictions-over_16\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Over 16\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"pay_check\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Checks\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-techfeatures-wifi\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Wifi\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-bizmodels-nonprofit\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Non Profit\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-pets-petsitting_service\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Pet Sitting Service\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-restrooms-gender_neutral_restroom\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Gender Neutral Restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"allows_dogs_inside\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Dogs allowed inside\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-safety_features-free_sanitizers\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Free Sanitizers\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"allows_dogs_outside\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Dogs allowed outside\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_seating_outdoors\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Outdoor seating\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_covid_19_bool_1\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"COVID-19 testing center\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-pets-dogpark_nearby\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Dog Park Nearby\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-attire-formal\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Formal\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_curbside_pickup\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Curbside pickup\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_owned_by_lgbtq\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Identifies as LGBTQ+ owned\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-breakfastoption-fullbreakfast\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Full Breakfast\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_wheelchair_accessible_elevator\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Wheelchair accessible elevator\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_prescription_required_covid_19_testing\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Referral required\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-ev_chargingstations-e_bike_chargers\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"E Bike Chargers\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-services-self_checkout\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Self Checkout\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-family_kids-childcare\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Childcare\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_owned_by_women\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Identifies as women-owned\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_seating_rooftop\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Rooftop seating\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-motorcycle_parking\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Motorcycle Parking\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-services-delivery\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Delivery\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_owned_by_latinx\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Identifies as Latino-owned\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_small_plates\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Small plates\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-accessibility_features-wheelchair_accessible\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Wheelchair Accessible\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"requires_masks_customers\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Mask required\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-restrooms-male_restroom\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Male Restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-smoking-smoking_free\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Smoking Free\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-bizmodels-co_op\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Co Op\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-transportation-car_rental_desk\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Car Rental Desk\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-parking-rec_vehicleparking\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Rec Vehicle Parking\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"pay_credit_card_types_accepted\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Credit cards\",\n        \"values\": [\n            {\n                \"id\": \"american_express\",\n                \"label\": \"American Express\"\n            },\n            {\n                \"id\": \"china_union_pay\",\n                \"label\": \"China Union Pay\"\n            },\n            {\n                \"id\": \"diners_club\",\n                \"label\": \"Diners Club\"\n            },\n            {\n                \"id\": \"discover\",\n                \"label\": \"Discover\"\n            },\n            {\n                \"id\": \"jcb\",\n                \"label\": \"JCB\"\n            },\n            {\n                \"id\": \"mastercard\",\n                \"label\": \"MasterCard\"\n            },\n            {\n                \"id\": \"visa\",\n                \"label\": \"VISA\"\n            }\n        ],\n        \"type\": \"ENUM\"\n    },\n    {\n        \"id\": \"crossbusiness-nightlife-latenightmeals\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Late Night Meals\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-pets-petfee\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Pet Fee\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_all_you_can_eat_always\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"All you can eat\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"requires_temperature_check_staff\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Staff get temperature checks\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-restrooms-accessible_restroom\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Accessible Restroom\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"requires_cash_only\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Cash-only\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-payments-contactless_pay\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Contactless Pay\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"pay_credit_card\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Credit cards\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-payments-membercard\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Member Card\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-family_kids-kidsclub\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Kids Club\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-smoking-smoking_allowed\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Smoking Allowed\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_delivery\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Delivery\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-services-instore_pickup\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"In Store Pickup\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_dine_in\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Dine-in\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-reservations-appointments_only\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Appointments Only\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_comfort_food\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Comfort food\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_wheelchair_accessible_seating\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Wheelchair accessible seating\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"is_black_owned\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Identifies as Black-owned\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-accessibility_features-accessible_elevator\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Accessible Elevator\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"welcomes_dogs\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Dogs allowed\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"serves_vegan\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Vegan options\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"has_bar_onsite\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"name\": \"Bar onsite\",\n        \"type\": \"BOOL\"\n    },\n    {\n        \"id\": \"crossbusiness-transportation-ev_charging_onsite\",\n        \"sourceID\": \"APPLE\",\n        \"name\": \"Ev Charging Onsite\",\n        \"type\": \"BOOL\"\n    }\n]"}],"_postman_id":"d888f2f7-4521-47ba-846d-301ecf9a5260"},{"name":"Get Duplicate Locations","id":"430cd4e2-1fed-4d30-bda2-577328d36524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/locations-duplicate","description":"<p>Retrieves location profiles from the Reputation platform that are identified as potential duplicates based on specific criteria. By using this endpoint, you can identify and manage locations that may have been inadvertently entered multiple times or those that appear similar across different sources.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/locations-duplicate\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function() {\n  // If the request completed successfully, handle the response\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    var response = JSON.parse(xhr.responseText);\n    console.log(response);\n  }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locationID</td>\n<td></td>\n<td>String</td>\n<td>Unique identifier for the location. Example: \"346345\"</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td></td>\n<td>String</td>\n<td>Identifier for the source platform. Example: \"GOOGLE_PLACES\"</td>\n</tr>\n<tr>\n<td>duplicateLocationID</td>\n<td></td>\n<td>String</td>\n<td>Unique identifier for the potential duplicate. Example: \"1A02abc3rep\"</td>\n</tr>\n<tr>\n<td>businessName</td>\n<td>location</td>\n<td>String</td>\n<td>Name of the business. Example: \"Johns Plumbing Company\"</td>\n</tr>\n<tr>\n<td>streetAddress</td>\n<td>address</td>\n<td>String</td>\n<td>Main address line. Example: \"123 Main Blvd\"</td>\n</tr>\n<tr>\n<td>streetAddress2</td>\n<td>address</td>\n<td>String (nullable)</td>\n<td>Secondary address line (if available). Example: null</td>\n</tr>\n<tr>\n<td>streetNumber</td>\n<td>address</td>\n<td>String (nullable)</td>\n<td>Street number for the address. Example: null</td>\n</tr>\n<tr>\n<td>locality</td>\n<td>address</td>\n<td>String</td>\n<td>City or locality. Example: \"Redwood City\"</td>\n</tr>\n<tr>\n<td>region</td>\n<td>address</td>\n<td>String</td>\n<td>State or region. Example: \"CA\"</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>address</td>\n<td>String</td>\n<td>Postal or ZIP code. Example: \"94063\"</td>\n</tr>\n<tr>\n<td>country</td>\n<td>address</td>\n<td>String</td>\n<td>Country code. Example: \"US\"</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>address</td>\n<td>Number</td>\n<td>Latitude coordinates. Example: 0</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>address</td>\n<td>Number</td>\n<td>Longitude coordinates. Example: 0</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>address</td>\n<td>String (nullable)</td>\n<td>Timezone for the location. Example: null</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>location</td>\n<td>String (nullable)</td>\n<td>Phone number of the business. Example: null</td>\n</tr>\n<tr>\n<td>category</td>\n<td>location</td>\n<td>String</td>\n<td>Business category. Example: \"General\"</td>\n</tr>\n<tr>\n<td>websiteUrl</td>\n<td>location</td>\n<td>String (nullable)</td>\n<td>Website URL of the business. Example: null</td>\n</tr>\n<tr>\n<td>url</td>\n<td></td>\n<td>String</td>\n<td>URL link to the location on the source platform. Example: \"<a href=\"https://maps.google.com/maps\">https://maps.google.com/maps\"</a></td>\n</tr>\n<tr>\n<td>status</td>\n<td></td>\n<td>String</td>\n<td>Status of the duplicate detection. Example: \"Potential\"</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td></td>\n<td>String</td>\n<td>Date and time of creation in ISO 8601 format. Example: \"2019-09-20T15:06:25\"</td>\n</tr>\n<tr>\n<td>lastUpdated</td>\n<td></td>\n<td>String</td>\n<td>Last updated date and time in ISO 8601 format. Example: \"2019-10-25T14:08:55\"</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"locationID\": \"string\",\n  \"sourceID\": \"string\",\n  \"duplicateLocationID\": \"string\",\n  \"location\": {\n    \"businessName\": \"string\",\n    \"address\": {\n      \"streetAddress\": \"string\",\n      \"streetAddress2\": \"string\",\n      \"streetNumber\": \"string\",\n      \"locality\": \"string\",\n      \"region\": \"string\",\n      \"postalCode\": \"string\",\n      \"country\": \"string\",\n      \"latitude\": \"Number\",\n      \"longitude\": \"Number\",\n      \"timezone\": \"string\"\n    },\n    \"phone\": \"string\",\n    \"category\": \"string\",\n    \"websiteUrl\": \"string\"\n  },\n  \"url\": \"string\",\n  \"status\": \"string\",\n  \"createdDate\": \"string\",\n  \"lastUpdated\": \"string\"\n}\n\n\n</code></pre>\n","urlObject":{"path":["locations-duplicate"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>A list of location profile identifiers, separated by commas. When provided, the endpoint will filter and return only those profiles that match the given IDs.</p>\n<p>Example: \"123,456,789\" will return information related to locations with IDs 123, 456, and 789.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>A list of source identifiers, separated by commas. This parameter allows users to narrow down the results to locations that are associated with specific external sources.</p>\n<p>Example: Filtering by \"GOOGLE_PLACES,YELP\" will return duplicate locations specific to Google Places and Yelp.</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>A list of statuses, separated by commas, to filter the results by specific duplicate identification statuses. It provides insight into the stage or category of duplication for each location. By default, if no status is provided, the endpoint will return locations with the \"Potential\" status.</p>\n<p>Valid Values: \"Potential\", \"Confirmed\", \"ConfirmedNonDuplicate\", \"Processing\", \"Unknown\", \"Suppressed\"</p>\n","type":"text/plain"},"key":"status","value":"<string array>"}],"variable":[]}},"response":[{"id":"047b0a9a-2850-44a4-8a2e-9819037f8372","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/locations-duplicate","protocol":"https","host":["api","reputation","com"],"path":["v3","locations-duplicate"],"query":[{"key":"locationIDs","value":"dolor ut","disabled":true},{"key":"sourceIDs","value":"dolor ut","disabled":true},{"key":"status","value":"Potential","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"locationID\": \"346345\",\n  \"sourceID\": \"GOOGLE_PLACES\",\n  \"duplicateLocationID\": \"1A02abc3rep\",\n  \"location\": {\n    \"businessName\": \"Johns Plumbing Company\",\n    \"address\": {\n      \"streetAddress\": \"123 Main Blvd\",\n      \"streetAddress2\": null,\n      \"streetNumber\": null,\n      \"locality\": \"Redwood City\",\n      \"region\": \"CA\",\n      \"postalCode\": \"94063\",\n      \"country\": \"US\",\n      \"latitude\": 0,\n      \"longitude\": 0,\n      \"timezone\": null\n    },\n    \"phone\": null,\n    \"category\": \"General\",\n    \"websiteUrl\": null\n  },\n  \"url\": \"https://maps.google.com/maps\",\n  \"status\": \"Potential\",\n  \"createdDate\": \"2019-09-20T15:06:25\",\n  \"lastUpdated\": \"2019-10-25T14:08:55\"\n}"}],"_postman_id":"430cd4e2-1fed-4d30-bda2-577328d36524"}],"id":"bd746cb3-97d6-4667-a4de-808614798793","description":"<p>The <strong>Locations</strong> collection of endpoints offers tools to interact with profiles, encompassing extensive details beyond basic location attributes. These endpoints allow users to fetch, add, or delete the detailed profiles present in the Business Listing Solution.</p>\n","_postman_id":"bd746cb3-97d6-4667-a4de-808614798793"},{"name":"/Metrics","item":[{"name":"Get Metrics (Deprecated)","id":"977376ce-a793-4b8e-a0cf-bccb0fc9b7f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/metrics","description":"<p>Retrieve a variety of metrics based on specific criteria. These metrics can provide insights into trends, user behavior, and more, over different time intervals and for different sources or locations.</p>\n<p><strong>Note:</strong> This endpoint is now deprecated and might be removed in future versions. Ensure you check for alternative endpoints or methods to fetch the required data.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/metrics', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>metrics</td>\n<td>string</td>\n<td>Unique identifier (e.g., \"737495_FACEBOOK_page:insights_Day_2023-10-03\")</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>metrics</td>\n<td>string</td>\n<td>Location identifier (e.g., \"DW\")</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>metrics</td>\n<td>string</td>\n<td>Source of the metric (e.g., \"FACEBOOK\")</td>\n</tr>\n<tr>\n<td>date</td>\n<td>metrics</td>\n<td>string</td>\n<td>Date of the metric (e.g., \"2023-10-03T00:00:00\")</td>\n</tr>\n<tr>\n<td>type</td>\n<td>metrics</td>\n<td>string</td>\n<td>Type of metric (e.g., \"page:insights\")</td>\n</tr>\n<tr>\n<td>interval</td>\n<td>metrics</td>\n<td>string</td>\n<td>Interval/frequency (e.g., \"Day\")</td>\n</tr>\n<tr>\n<td>page_views_logged_in_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total logged-in page views</td>\n</tr>\n<tr>\n<td>page_video_views_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique video page views</td>\n</tr>\n<tr>\n<td>page_posts_impressions_paid_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique paid post impressions</td>\n</tr>\n<tr>\n<td>page_likes_lifetime</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Lifetime page likes</td>\n</tr>\n<tr>\n<td>page_actions_post_reactions_like_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total like reactions on posts</td>\n</tr>\n<tr>\n<td>page_posts_impressions_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique post impressions</td>\n</tr>\n<tr>\n<td>page_engaged_users</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Engaged users count</td>\n</tr>\n<tr>\n<td>page_fan_adds_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique fan additions</td>\n</tr>\n<tr>\n<td>page_total_actions</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total page actions</td>\n</tr>\n<tr>\n<td>page_impressions_organic</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Organic page impressions</td>\n</tr>\n<tr>\n<td>page_website_clicks_logged_in_count</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of website clicks by logged-in users</td>\n</tr>\n<tr>\n<td>page_impressions_viral</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Viral page impressions</td>\n</tr>\n<tr>\n<td>page_consumptions</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Page consumptions count</td>\n</tr>\n<tr>\n<td>page_actions_post_reactions_wow_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total \"wow\" reactions on posts</td>\n</tr>\n<tr>\n<td>page_content_activity</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Page content activity count</td>\n</tr>\n<tr>\n<td>page_posts_impressions_paid</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Paid post impressions</td>\n</tr>\n<tr>\n<td>page_video_views_organic</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Organic video views</td>\n</tr>\n<tr>\n<td>page_impressions_paid</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Paid page impressions</td>\n</tr>\n<tr>\n<td>page_impressions_viral_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique viral page impressions</td>\n</tr>\n<tr>\n<td>page_views_logged_in_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique logged-in page views</td>\n</tr>\n<tr>\n<td>page_post_engagements</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Post engagements count</td>\n</tr>\n<tr>\n<td>page_get_directions_clicks_logged_in_count</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of direction clicks by logged-in users</td>\n</tr>\n<tr>\n<td>page_impressions_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique page impressions</td>\n</tr>\n<tr>\n<td>page_actions_post_reactions_anger_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total \"anger\" reactions on posts</td>\n</tr>\n<tr>\n<td>page_video_views_paid</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Paid video views</td>\n</tr>\n<tr>\n<td>page_call_phone_clicks_logged_in_count</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of phone call clicks by logged-in users</td>\n</tr>\n<tr>\n<td>page:unfollow:count</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of page unfollows</td>\n</tr>\n<tr>\n<td>page_posts_impressions_viral</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Viral post impressions</td>\n</tr>\n<tr>\n<td>page_posts_impressions</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total post impressions</td>\n</tr>\n<tr>\n<td>page_actions_post_reactions_sorry_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total \"sorry\" reactions on posts</td>\n</tr>\n<tr>\n<td>page:directions:click</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of direction clicks</td>\n</tr>\n<tr>\n<td>page_impressions_paid_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique paid page impressions</td>\n</tr>\n<tr>\n<td>page_actions_post_reactions_love_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total \"love\" reactions on posts</td>\n</tr>\n<tr>\n<td>page:views</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of page views</td>\n</tr>\n<tr>\n<td>page_impressions</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total page impressions</td>\n</tr>\n<tr>\n<td>page_video_views</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total video views</td>\n</tr>\n<tr>\n<td>page_posts_impressions_organic</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Organic post impressions</td>\n</tr>\n<tr>\n<td>page_impressions_organic_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique organic page impressions</td>\n</tr>\n<tr>\n<td>page:phone:click</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of phone click actions</td>\n</tr>\n<tr>\n<td>page_posts_impressions_organic_unique</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Unique organic post impressions</td>\n</tr>\n<tr>\n<td>page_actions_post_reactions_haha_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total \"haha\" reactions on posts</td>\n</tr>\n<tr>\n<td>page:website:click</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of website click actions</td>\n</tr>\n<tr>\n<td>page_negative_feedback</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Count of negative feedback actions</td>\n</tr>\n<tr>\n<td>page_places_checkin_total</td>\n<td>metrics</td>\n<td>integer</td>\n<td>Total places check-ins</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer</td>\n<td>Pagination offset (e.g., 0)</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 metric objects, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>Next page URL (e.g., \"<a href=\"https://api.reputation.com/v3/metrics?offset=20&amp;limit=20\">https://api.reputation.com/v3/metrics?offset=20&amp;limit=20\"</a>)</td>\n</tr>\n<tr>\n<td>range</td>\n<td>dateRange</td>\n<td>string</td>\n<td>Date range type (e.g., \"LifeToDate\")</td>\n</tr>\n<tr>\n<td>from</td>\n<td>dateRange</td>\n<td>string</td>\n<td>Start date of the range (e.g., \"-\")</td>\n</tr>\n<tr>\n<td>to</td>\n<td>dateRange</td>\n<td>string</td>\n<td>End date of the range (e.g., \"2023-10-04T23:59:59\")</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["metrics"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Offsets the start of each page by the number specified. Max offset is 10k. For instance, offset=50 would start from the 51st record.</p>\n","type":"text/plain"},"key":"offset","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 metric objects, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>The start date for the metric retrieval in ISO Date format, e.g., \"2023-09-21\".</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>The end date for the metric retrieval in ISO Date format, e.g., \"2023-09-28\".</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies a predefined date range. Valid values: \"Today\"\"Yesterday\"\"ThisWeek\"\"PreviousWeek\"\"ThisMonth\"\"PreviousMonth\"\"ThisQuarter\"\"PreviousQuarter\"\"ThisYear\"\"PreviousYear\"\"YearToDate\"\"LifeToDate\"\"Last7Days\"\"Last30Days\"\"Last60Days\"\"Last90Days\"\"Last6Months\"\"Last1Year\"\"Last2Years\"\"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of source ids to filter by, e.g., \"SOURCE1,SOURCE2\".</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of location ids to filter by, e.g., \"LOC1,LOC2\".</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string>"},{"disabled":true,"description":{"content":"<p>Specifies the metric types to retrieve. Can specify multiple, comma-separated values. Default value is all.</p>\n<p>Valid values: \"page:insights\"\"page:insights:age\"\"page:insights:driving\"\"page:insights:gender\"\"page:insights:phone\"</p>\n","type":"text/plain"},"key":"type","value":"<string>"},{"disabled":true,"description":{"content":"<p>Specifies the intervals for metric retrieval. Valid values:  \"Day\", \"Hour\", \"Week\", \"Lifetime\"</p>\n","type":"text/plain"},"key":"interval","value":"<string>"}],"variable":[]}},"response":[{"id":"683b3bd9-0f21-475b-8f29-4fa8ce999924","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/metrics","protocol":"https","host":["api","reputation","com"],"path":["v3","metrics"],"query":[{"key":"offset","value":"45530734","disabled":true},{"key":"limit","value":"45530734","disabled":true},{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek","disabled":true},{"key":"sourceIDs","value":"dolor ut","disabled":true},{"key":"locationIDs","value":"dolor ut","disabled":true},{"key":"type","value":"page:insights:age","disabled":true},{"key":"interval","value":"Hour","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"31297"},{"key":"etag","value":"W/\"7a41-c0XYKgOyL1akFvJ9k0kex6Do/yc\""},{"key":"date","value":"Wed, 04 Oct 2023 07:12:24 GMT"},{"key":"x-envoy-upstream-service-time","value":"247"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"metrics\": [\n        {\n            \"id\": \"737495_FACEBOOK_page:insights_Day_2023-10-03\",\n            \"locationID\": \"DW\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-03T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737489_FACEBOOK_page:insights_Day_2023-10-03\",\n            \"locationID\": \"AAA Waterbury\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-03T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 1,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737476_FACEBOOK_page:insights_Day_2023-10-03\",\n            \"locationID\": \"SA\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-03T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737473_FACEBOOK_page:insights_Day_2023-10-03\",\n            \"locationID\": \"CH\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-03T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 34,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737495_FACEBOOK_page:insights_Day_2023-10-02\",\n            \"locationID\": \"DW\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-02T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737489_FACEBOOK_page:insights_Day_2023-10-02\",\n            \"locationID\": \"AAA Waterbury\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-02T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 1,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 1,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737476_FACEBOOK_page:insights_Day_2023-10-02\",\n            \"locationID\": \"SA\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-02T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737473_FACEBOOK_page:insights_Day_2023-10-02\",\n            \"locationID\": \"CH\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-02T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 34,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 2,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 2,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 2,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 39,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 2,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 2,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 2,\n                \"page_impressions_organic_unique\": 2,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 2,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737495_FACEBOOK_page:insights_Day_2023-10-01\",\n            \"locationID\": \"DW\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-01T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737489_FACEBOOK_page:insights_Day_2023-10-01\",\n            \"locationID\": \"AAA Waterbury\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-01T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 1,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 1,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737476_FACEBOOK_page:insights_Day_2023-10-01\",\n            \"locationID\": \"SA\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-01T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737473_FACEBOOK_page:insights_Day_2023-10-01\",\n            \"locationID\": \"CH\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-01T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 34,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 2,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 2,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 2,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 39,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 2,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 2,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 2,\n                \"page_impressions_organic_unique\": 2,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 2,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737495_FACEBOOK_page:insights_Day_2023-09-30\",\n            \"locationID\": \"DW\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-30T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737489_FACEBOOK_page:insights_Day_2023-09-30\",\n            \"locationID\": \"AAA Waterbury\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-30T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 1,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 1,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737476_FACEBOOK_page:insights_Day_2023-09-30\",\n            \"locationID\": \"SA\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-30T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737473_FACEBOOK_page:insights_Day_2023-09-30\",\n            \"locationID\": \"CH\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-30T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 34,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 1,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 1,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 1,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 39,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737495_FACEBOOK_page:insights_Day_2023-09-29\",\n            \"locationID\": \"DW\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-29T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737489_FACEBOOK_page:insights_Day_2023-09-29\",\n            \"locationID\": \"AAA Waterbury\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-29T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 1,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 1,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737476_FACEBOOK_page:insights_Day_2023-09-29\",\n            \"locationID\": \"SA\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-29T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 0,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 0,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737473_FACEBOOK_page:insights_Day_2023-09-29\",\n            \"locationID\": \"CH\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-09-29T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 2,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 34,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 0,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 0,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 1,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 1,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_follows_lifetime\": 39,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 0,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 2,\n                \"page_impressions\": 1,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 0,\n                \"page_impressions_organic_unique\": 0,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 0,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 20,\n        \"next\": \"https://api.reputation.com/v3/metrics?offset=20&limit=20\"\n    },\n    \"dateRange\": {\n        \"range\": \"LifeToDate\",\n        \"from\": \"-\",\n        \"to\": \"2023-10-04T23:59:59\"\n    }\n}"}],"_postman_id":"977376ce-a793-4b8e-a0cf-bccb0fc9b7f6"},{"name":"Get Page Metrics","id":"93d775dd-db0a-4ab0-ac48-c9db12fce944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/page-metrics","description":"<p>This endpoint allows for the retrieval of page-specific metrics from the Reputation API. By specifying various query parameters, you can filter and customize the data being fetched, enabling a more detailed and targeted insights analysis.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/page-metrics?limit=2', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var jsonResponse = JSON.parse(xhr.responseText);\n        console.log(jsonResponse);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>metrics</code></td>\n<td>-</td>\n<td>array</td>\n<td>Array of metric objects for different sources and dates.</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td><code>metrics</code></td>\n<td>string</td>\n<td>Unique identifier for the metric entry.</td>\n</tr>\n<tr>\n<td><code>locationID</code></td>\n<td><code>metrics</code></td>\n<td>string</td>\n<td>Identifier for the location related to the metrics.</td>\n</tr>\n<tr>\n<td><code>sourceID</code></td>\n<td><code>metrics</code></td>\n<td>string</td>\n<td>Source platform for the metrics (e.g., FACEBOOK).</td>\n</tr>\n<tr>\n<td><code>date</code></td>\n<td><code>metrics</code></td>\n<td>string</td>\n<td>Date for the metrics in ISO format.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>metrics</code></td>\n<td>string</td>\n<td>Type of metric.</td>\n</tr>\n<tr>\n<td><code>interval</code></td>\n<td><code>metrics</code></td>\n<td>string</td>\n<td>The interval for which the metric is calculated.</td>\n</tr>\n<tr>\n<td><code>page_views_logged_in_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total page views by logged in users.</td>\n</tr>\n<tr>\n<td><code>page_video_views_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique video views on the page.</td>\n</tr>\n<tr>\n<td><code>page_posts_impressions_paid_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique paid post impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_likes_lifetime</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Lifetime page likes.</td>\n</tr>\n<tr>\n<td><code>page_actions_post_reactions_like_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total \"like\" reactions to posts.</td>\n</tr>\n<tr>\n<td><code>page_posts_impressions_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique post impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_engaged_users</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Engaged users on the page.</td>\n</tr>\n<tr>\n<td><code>page_fan_adds_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique new fans added.</td>\n</tr>\n<tr>\n<td><code>page_total_actions</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total actions performed on the page.</td>\n</tr>\n<tr>\n<td><code>page_impressions_organic</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Organic impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_website_clicks_logged_in_count</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of logged in users clicking on the website link.</td>\n</tr>\n<tr>\n<td><code>page_impressions_viral</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Viral impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_consumptions</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Page consumptions.</td>\n</tr>\n<tr>\n<td><code>page_actions_post_reactions_wow_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total \"wow\" reactions to posts.</td>\n</tr>\n<tr>\n<td><code>page_content_activity</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Content activity on the page.</td>\n</tr>\n<tr>\n<td><code>page_posts_impressions_paid</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Paid post impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_video_views_organic</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Organic video views on the page.</td>\n</tr>\n<tr>\n<td><code>page_impressions_paid</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Paid impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_impressions_viral_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique viral impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_views_logged_in_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique logged in users viewing the page.</td>\n</tr>\n<tr>\n<td><code>page_post_engagements</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Page post engagements.</td>\n</tr>\n<tr>\n<td><code>page_get_directions_clicks_logged_in_count</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of logged in users clicking to get directions.</td>\n</tr>\n<tr>\n<td><code>page_impressions_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_actions_post_reactions_anger_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total \"anger\" reactions to posts.</td>\n</tr>\n<tr>\n<td><code>page_video_views_paid</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Paid video views on the page.</td>\n</tr>\n<tr>\n<td><code>page_call_phone_clicks_logged_in_count</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of logged in users clicking the phone link.</td>\n</tr>\n<tr>\n<td><code>page:unfollow:count</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of users who unfollowed the page.</td>\n</tr>\n<tr>\n<td><code>page_posts_impressions_viral</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Viral post impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_posts_impressions</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total post impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_actions_post_reactions_sorry_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total \"sorry\" reactions to posts.</td>\n</tr>\n<tr>\n<td><code>page:directions:click</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of users who clicked for directions.</td>\n</tr>\n<tr>\n<td><code>page_impressions_paid_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique paid impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_actions_post_reactions_love_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total \"love\" reactions to posts.</td>\n</tr>\n<tr>\n<td><code>page:views</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total page views.</td>\n</tr>\n<tr>\n<td><code>page_impressions</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_video_views</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total video views on the page.</td>\n</tr>\n<tr>\n<td><code>page_posts_impressions_organic</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Organic post impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_impressions_organic_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique organic impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page:phone:click</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of users who clicked the phone link.</td>\n</tr>\n<tr>\n<td><code>page_posts_impressions_organic_unique</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Unique organic post impressions on the page.</td>\n</tr>\n<tr>\n<td><code>page_actions_post_reactions_haha_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total \"haha\" reactions to posts.</td>\n</tr>\n<tr>\n<td><code>page:website:click</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of users who clicked the website link.</td>\n</tr>\n<tr>\n<td><code>page_negative_feedback</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Count of negative feedback on the page.</td>\n</tr>\n<tr>\n<td><code>page_places_checkin_total</code></td>\n<td><code>metrics.metrics</code></td>\n<td>integer</td>\n<td>Total check-ins at the place associated with the page.</td>\n</tr>\n<tr>\n<td><code>paging</code></td>\n<td>-</td>\n<td>object</td>\n<td>Pagination details for the metrics data.</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td><code>paging</code></td>\n<td>integer</td>\n<td>Current offset for pagination.</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td><code>paging</code></td>\n<td>integer</td>\n<td>Maximum number of results to be returned.</td>\n</tr>\n<tr>\n<td><code>next</code></td>\n<td><code>paging</code></td>\n<td>string</td>\n<td>URL for the next set of results.</td>\n</tr>\n<tr>\n<td><code>dateRange</code></td>\n<td>-</td>\n<td>object</td>\n<td>Information about the date range of the metrics.</td>\n</tr>\n<tr>\n<td><code>range</code></td>\n<td><code>dateRange</code></td>\n<td>string</td>\n<td>The type of date range (e.g., \"LifeToDate\").</td>\n</tr>\n<tr>\n<td><code>from</code></td>\n<td><code>dateRange</code></td>\n<td>string</td>\n<td>Start date of the metrics in ISO format.</td>\n</tr>\n<tr>\n<td><code>to</code></td>\n<td><code>dateRange</code></td>\n<td>string</td>\n<td>End date of the metrics in ISO format.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["page-metrics"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Sets the starting point of the data retrieved by specifying the number of initial records to skip. Max offset is 10k.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 page metric objects, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Indicates the start date for fetching metrics. The date must be in ISO format.</p>\n","type":"text/plain"},"key":"from","value":"<string>"},{"disabled":true,"description":{"content":"<p>Indicates the end date for fetching metrics. The date must be in ISO format.</p>\n","type":"text/plain"},"key":"to","value":"<string>"},{"disabled":true,"description":{"content":"<p>Specifies the predefined date range for fetching metrics. Valid values:</p>\n<p>\"Today\"\"Yesterday\"\"ThisWeek\"\"PreviousWeek\"\"ThisMonth\"\"PreviousMonth\"\"ThisQuarter\"\"PreviousQuarter\"\"ThisYear\"\"PreviousYear\"\"YearToDate\"\"LifeToDate\"\"Last7Days\"\"Last30Days\"\"Last60Days\"\"Last90Days\"\"Last6Months\"\"Last1Year\"\"Last2Years\"\"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Filters the metrics based on specific sources. The IDs should be comma-separated. ex - \"FACEBOOK,TWITTER\"</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Filters the metrics based on specific locations. The IDs should be comma-separated. Ex - \"LOC123,LOC456\"</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Determines the type of metrics fetched. Multiple types can be comma-separated. The default fetches all available metric types. </p>\n<p>Valid values: </p>\n<p>\"page:insights\"\"page:insights:age\"\"page:insights:driving\"\"page:insights:gender\"\"page:insights:phone\"</p>\n","type":"text/plain"},"key":"type","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Specifies the frequency or granularity of the data. Multiple intervals can be comma-separated. </p>\n<p>Valid values: \"Day\"\"Hour\"\"Week\"\"Lifetime\"</p>\n","type":"text/plain"},"key":"interval","value":"<string array>"}],"variable":[]}},"response":[{"id":"33720982-ab2d-4835-9135-39e67aa09d0f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"7424cd2a39ebe2a0ca8baa6ecab726a0"}],"url":{"raw":"https://api.reputation.com/v3/page-metrics?limit=2","protocol":"https","host":["api","reputation","com"],"path":["v3","page-metrics"],"query":[{"key":"offset","value":"45530734","disabled":true},{"key":"limit","value":"2"},{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek","disabled":true},{"key":"sourceIDs","value":"dolor ut","disabled":true},{"key":"locationIDs","value":"dolor ut","disabled":true},{"key":"type","value":"page:insights:age","disabled":true},{"key":"interval","value":"Hour","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"3282"},{"key":"etag","value":"W/\"cd2-TBP+Dx/j7mhjnwQJqfa4CIO6A2Y\""},{"key":"date","value":"Wed, 04 Oct 2023 16:50:32 GMT"},{"key":"x-envoy-upstream-service-time","value":"143"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"metrics\": [\n        {\n            \"id\": \"737495_FACEBOOK_page:insights_Day_2023-10-04\",\n            \"locationID\": \"DW\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-04T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 0,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 0,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 1,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 1,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 0,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 1,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 1,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 0,\n                \"page_impressions\": 1,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 1,\n                \"page_impressions_organic_unique\": 1,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 1,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        },\n        {\n            \"id\": \"737489_FACEBOOK_page:insights_Day_2023-10-04\",\n            \"locationID\": \"AAA Waterbury\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-04T00:00:00\",\n            \"type\": \"page:insights\",\n            \"interval\": \"Day\",\n            \"metrics\": {\n                \"page_views_logged_in_total\": 4,\n                \"page_video_views_unique\": 0,\n                \"page_posts_impressions_paid_unique\": 0,\n                \"page_likes_lifetime\": 1,\n                \"page_actions_post_reactions_like_total\": 0,\n                \"page_posts_impressions_unique\": 2,\n                \"page_engaged_users\": 0,\n                \"page_fan_adds_unique\": 0,\n                \"page_total_actions\": 0,\n                \"page_impressions_organic\": 3,\n                \"page_website_clicks_logged_in_count\": 0,\n                \"page_impressions_viral\": 0,\n                \"page_consumptions\": 0,\n                \"page_actions_post_reactions_wow_total\": 0,\n                \"page_content_activity\": 0,\n                \"page_posts_impressions_paid\": 0,\n                \"page_video_views_organic\": 0,\n                \"page_impressions_paid\": 0,\n                \"page_impressions_viral_unique\": 0,\n                \"page_views_logged_in_unique\": 1,\n                \"page_post_engagements\": 0,\n                \"page_get_directions_clicks_logged_in_count\": 0,\n                \"page_impressions_unique\": 2,\n                \"page_actions_post_reactions_anger_total\": 0,\n                \"page_video_views_paid\": 0,\n                \"page_call_phone_clicks_logged_in_count\": 0,\n                \"page:unfollow:count\": 0,\n                \"page_posts_impressions_viral\": 0,\n                \"page_posts_impressions\": 3,\n                \"page_actions_post_reactions_sorry_total\": 0,\n                \"page:directions:click\": 0,\n                \"page_impressions_paid_unique\": 0,\n                \"page_actions_post_reactions_love_total\": 0,\n                \"page:views\": 6,\n                \"page_impressions\": 5,\n                \"page_video_views\": 0,\n                \"page_posts_impressions_organic\": 3,\n                \"page_impressions_organic_unique\": 2,\n                \"page:phone:click\": 0,\n                \"page_posts_impressions_organic_unique\": 2,\n                \"page_actions_post_reactions_haha_total\": 0,\n                \"page:website:click\": 0,\n                \"page_negative_feedback\": 0,\n                \"page_places_checkin_total\": 0\n            }\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 2,\n        \"next\": \"https://api.reputation.com/v3/page-metrics?offset=2&limit=2\"\n    },\n    \"dateRange\": {\n        \"range\": \"LifeToDate\",\n        \"from\": \"-\",\n        \"to\": \"2023-10-04T23:59:59\"\n    }\n}"}],"_postman_id":"93d775dd-db0a-4ab0-ac48-c9db12fce944"},{"name":"Get Post Metrics","id":"6993bd7c-0077-4f56-b628-4635f6118ad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/post-metrics","description":"<p>This endpoint retrieves post metrics from the Reputation platform. It provides detailed insights based on various filtering criteria such as date range, source, location, type, and interval.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr\">JavaScript XHR</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/post-metrics?limit=2&amp;sourceIDs=FACEBOOK', true);\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>metrics</td>\n<td>-</td>\n<td>Object</td>\n<td>Object containing post all response details.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>metrics</td>\n<td>String</td>\n<td>Unique identifier. Example: \"737473_FACEBOOK_post:insights_Lifetime_660643843964020_704916364990195\"</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>metrics</td>\n<td>String</td>\n<td>Location identifier. Example: \"CH\"</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>metrics</td>\n<td>String</td>\n<td>Source of the data. Example: \"FACEBOOK\"</td>\n</tr>\n<tr>\n<td>date</td>\n<td>metrics</td>\n<td>String</td>\n<td>Date of the metric. Example: \"2023-10-05T06:05:29\"</td>\n</tr>\n<tr>\n<td>type</td>\n<td>metrics</td>\n<td>String</td>\n<td>Type of the insight. Example: \"post:insights\"</td>\n</tr>\n<tr>\n<td>interval</td>\n<td>metrics</td>\n<td>String</td>\n<td>Time period of the metric. Example: \"Lifetime\"</td>\n</tr>\n<tr>\n<td>metrics</td>\n<td>metrics</td>\n<td>Object</td>\n<td>Object containing an array of metrics and values.</td>\n</tr>\n<tr>\n<td>post:other:clicks</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of other clicks on the post. Example: 0</td>\n</tr>\n<tr>\n<td>post:link:clicks</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of link clicks on the post. Example: 0</td>\n</tr>\n<tr>\n<td>post:photo:clicks</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of photo clicks on the post. Example: 0</td>\n</tr>\n<tr>\n<td>post:comments</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of comments on the post. Example: 0</td>\n</tr>\n<tr>\n<td>post:totalReactions</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Total reactions on the post. Example: 0</td>\n</tr>\n<tr>\n<td>post:impressions</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of times the post was displayed. Example: 2</td>\n</tr>\n<tr>\n<td>post:reach</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of unique users who saw the post. Example: 2</td>\n</tr>\n<tr>\n<td>post:reach:organic</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of unique users who saw the post organically. Example: 2</td>\n</tr>\n<tr>\n<td>post:impressions:organic</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of times the post was displayed organically. Example: 2</td>\n</tr>\n<tr>\n<td>post:likes</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of likes on the post. Example: 3</td>\n</tr>\n<tr>\n<td>post:engagement</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of engagements on the post. Example: 1</td>\n</tr>\n<tr>\n<td>post:storytellers</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of people who talked about the post. Example: 1</td>\n</tr>\n<tr>\n<td>post:clicks</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of clicks on the post. Example: 1</td>\n</tr>\n<tr>\n<td>post:saved</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of times the post was saved. Example: 0</td>\n</tr>\n<tr>\n<td>post:shares</td>\n<td>metrics</td>\n<td>Integer</td>\n<td>Number of times the post was shared. Example: 0</td>\n</tr>\n<tr>\n<td>campaignID</td>\n<td>metrics</td>\n<td>String</td>\n<td>The post's campaign id.</td>\n</tr>\n<tr>\n<td>campaignName</td>\n<td>metrics</td>\n<td>String</td>\n<td>The post's campaign name.</td>\n</tr>\n<tr>\n<td>campaignType</td>\n<td>metrics</td>\n<td>String</td>\n<td>The post's campaign type.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Object</td>\n<td>Object containing pagination details.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>Integer</td>\n<td>Specifies the starting point for the result set, useful for pagination. The maximum allowable offset is 10,000.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>Integer</td>\n<td>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 post metrics, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>String</td>\n<td>The URL for the next page.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["post-metrics"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specifies the starting point for the result set, useful for pagination. The maximum allowable offset is 10,000.</p>\n","type":"text/plain"},"key":"offset","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 post metric objects, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>The start date for the metrics, given in ISO format.</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>The end date for the metrics, given in ISO format.</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies the time range for the metrics. Valid Values: Today, Yesterday, ThisWeek, PreviousWeek, ThisMonth, PreviousMonth, ThisQuarter, PreviousQuarter, ThisYear, PreviousYear, YearToDate, LifeToDate, Last7Days, Last30Days, Last60Days, Last90Days, Last6Months, Last1Year, Last2Years, Last3Years.</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Filters the metrics based on specific source IDs. Multiple source IDs can be provided, separated by commas. Ex. FACEBOOK</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Filters the metrics based on specific location IDs. Multiple location IDs can be provided, separated by commas. Ex. SA</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Specifies the type of metrics to retrieve. Valid Value: post:insights</p>\n","type":"text/plain"},"key":"type","value":"<string>"},{"disabled":true,"description":{"content":"<p>Defines the interval for which the metrics should be aggregated. Valid Values: Day, Hour, Week, Lifetime.</p>\n","type":"text/plain"},"key":"interval","value":"<string array>"}],"variable":[]}},"response":[{"id":"af3681ee-07dc-4170-9216-1fa9a1f3f41c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/post-metrics?limit=2&sourceIDs=FACEBOOK","protocol":"https","host":["api","reputation","com"],"path":["v3","post-metrics"],"query":[{"key":"offset","value":"45530734","disabled":true},{"key":"limit","value":"2"},{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek","disabled":true},{"key":"sourceIDs","value":"FACEBOOK"},{"key":"locationIDs","value":"dolor ut","disabled":true},{"key":"type","value":"post:insights","disabled":true},{"key":"interval","value":"Hour","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"832"},{"key":"etag","value":"W/\"340-Qo5MyxHvuoC39uRg4cNw8mjWAIw\""},{"key":"date","value":"Tue, 10 Oct 2023 11:31:43 GMT"},{"key":"x-envoy-upstream-service-time","value":"227"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"metrics\": [\n        {\n            \"id\": \"737473_FACEBOOK_post:insights_Lifetime_660643843964020_704916364990195\",\n            \"locationID\": \"CH\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-05T06:05:29\",\n            \"type\": \"post:insights\",\n            \"interval\": \"Lifetime\",\n            \"metrics\": {\n                \"post:other:clicks\": 0,\n                \"post:link:clicks\": 0,\n                \"post:photo:clicks\": 0,\n                \"post:comments\": 0,\n                \"post:totalReactions\": 0\n            }\n        },\n        {\n            \"id\": \"737476_FACEBOOK_post:insights_Lifetime_105071211455388_760656512740536\",\n            \"locationID\": \"SA\",\n            \"sourceID\": \"FACEBOOK\",\n            \"date\": \"2023-10-05T06:05:26\",\n            \"type\": \"post:insights\",\n            \"interval\": \"Lifetime\",\n            \"metrics\": {\n                \"post:other:clicks\": 0,\n                \"post:link:clicks\": 0,\n                \"post:photo:clicks\": 0,\n                \"post:comments\": 0,\n                \"post:totalReactions\": 0\n            }\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 2,\n        \"next\": \"https://api.reputation.com/v3/post-metrics?offset=2&limit=2&sourceIDs=FACEBOOK\"\n    },\n    \"dateRange\": {\n        \"range\": \"LifeToDate\",\n        \"from\": \"-\",\n        \"to\": \"2023-10-10T23:59:59\"\n    }\n}"}],"_postman_id":"6993bd7c-0077-4f56-b628-4635f6118ad3"},{"name":"Get Aggregate Page Metrics","id":"3c708b21-86bf-4012-9277-8fb615107879","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/aggregate-page-metrics","description":"<p>This endpoint retrieves aggregate metrics related to pages on various platforms. The metrics offer insights on page reach, views, clicks, and more, providing a comprehensive understanding of a page's performance over different sources and time frames.</p>\n<p>For example:</p>\n<ol>\n<li>If you want to know the total number of page views from all sources for a specific location over the past month, the endpoint would \"aggregate\" or sum up all the individual views from each source to provide a total count.</li>\n<li>If you choose to group data by \"Date,\" the endpoint might provide daily totals of a specific metric across all chosen sources and locations.</li>\n<li>If you group by \"Source,\" you might get totals for each platform (like FACEBOOK, INSTAGRAM, etc.) over the specified time frame.</li>\n</ol>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr\">JavaScript XHR</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/aggregate-page-metrics?range=PreviousWeek', true);\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td>-</td>\n<td>string</td>\n<td>The date of the metric, in ISO format. e.g. \"2023-01-01T00:00:00.000-0800\"</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>-</td>\n<td>string</td>\n<td>The ID representing the source of the metric. e.g. \"INSTAGRAM\"</td>\n</tr>\n<tr>\n<td>m.page:reach</td>\n<td>-</td>\n<td>number</td>\n<td>Number of page reaches. e.g. 41</td>\n</tr>\n<tr>\n<td>m.page:website:click</td>\n<td>-</td>\n<td>number</td>\n<td>Number of clicks to the website from the page. e.g. 0</td>\n</tr>\n<tr>\n<td>m.page:views</td>\n<td>-</td>\n<td>number</td>\n<td>Number of page views. e.g. 9</td>\n</tr>\n<tr>\n<td>dim.pID</td>\n<td>-</td>\n<td>number</td>\n<td>Page count. e.g. 103</td>\n</tr>\n<tr>\n<td>m.page:phone:click</td>\n<td>-</td>\n<td>number</td>\n<td>Number of phone clicks from the page. e.g. 0</td>\n</tr>\n<tr>\n<td>m.page:directions:click</td>\n<td>-</td>\n<td>number</td>\n<td>Number of clicks for directions from the page. e.g. 0</td>\n</tr>\n<tr>\n<td>locationId</td>\n<td>-</td>\n<td>string</td>\n<td>The ID representing the location of the metric. e.g. \"BP\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["aggregate-page-metrics"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specifies the start date for the metrics in ISO Date format.</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies the end date for the metrics in ISO Date format.</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies the date range for the metrics. Valid values include: \"Today\"\"Yesterday\"\"ThisWeek\"\"PreviousWeek\"\"ThisMonth\"\"PreviousMonth\"\"ThisQuarter\"\"PreviousQuarter\"\"ThisYear\"\"PreviousYear\"\"YearToDate\"\"LifeToDate\"\"Last7Days\"\"Last30Days\"\"Last60Days\"\"Last90Days\"\"Last6Months\"\"Last1Year\"\"Last2Years\"\"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Types to filter by, with the default being all types. Valid value is: \"page:insights\"</p>\n","type":"text/plain"},"key":"type","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated location IDs to filter metrics by.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Comma-separated source IDs to filter metrics by.</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Specifies how to group the summary data. Valid values include: \"Location\"\n\"Date\" \"Source\"</p>\n","type":"text/plain"},"key":"groupBy","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated intervals to filter metrics by. Valid values are: \"Month\"\n\"Year\"</p>\n","type":"text/plain"},"key":"interval","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated metric properties to retrieve. Default is to retrieve all metrics. Valid metrics include: \"m.page:views\"\n\"m.page:reach\" \"m.page:website:click\" \"m.page:phone:click\" \"m.page:directions:click\" \"dim.pID\"</p>\n","type":"text/plain"},"key":"metrics","value":"<string array>"}],"variable":[]}},"response":[{"id":"e7501b5d-4f83-4b14-ae7b-8e3f24f78650","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/aggregate-page-metrics?range=PreviousWeek","protocol":"https","host":["api","reputation","com"],"path":["v3","aggregate-page-metrics"],"query":[{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek"},{"key":"type","value":"page:insights","disabled":true},{"key":"locationIDs","value":"dolor ut","disabled":true},{"key":"sourceIDs","value":"dolor ut","disabled":true},{"key":"groupBy","value":"Date","disabled":true},{"key":"interval","value":"Year","disabled":true},{"key":"metrics","value":"m.page:views","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"821"},{"key":"etag","value":"W/\"335-InaozytKe8/rQ0sdMvYZNjy69kA\""},{"key":"date","value":"Tue, 10 Oct 2023 12:12:16 GMT"},{"key":"x-envoy-upstream-service-time","value":"658"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"date\": \"2023-10-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"m.page:reach\": 0,\n        \"m.page:website:click\": 0,\n        \"m.page:views\": 0,\n        \"dim.pID\": 7,\n        \"m.page:phone:click\": 0,\n        \"m.page:directions:click\": 0,\n        \"locationId\": \"DW\"\n    },\n    {\n        \"date\": \"2023-10-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"m.page:reach\": 0,\n        \"m.page:website:click\": 0,\n        \"m.page:views\": 2,\n        \"dim.pID\": 7,\n        \"m.page:phone:click\": 0,\n        \"m.page:directions:click\": 0,\n        \"locationId\": \"CH\"\n    },\n    {\n        \"date\": \"2023-10-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"m.page:reach\": 0,\n        \"m.page:website:click\": 0,\n        \"m.page:views\": 12,\n        \"dim.pID\": 7,\n        \"m.page:phone:click\": 0,\n        \"m.page:directions:click\": 0,\n        \"locationId\": \"AAA Waterbury\"\n    },\n    {\n        \"date\": \"2023-10-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"m.page:reach\": 0,\n        \"m.page:website:click\": 0,\n        \"m.page:views\": 0,\n        \"dim.pID\": 7,\n        \"m.page:phone:click\": 0,\n        \"m.page:directions:click\": 0,\n        \"locationId\": \"SA\"\n    }\n]"}],"_postman_id":"3c708b21-86bf-4012-9277-8fb615107879"},{"name":"Get Aggregate Post Metrics","id":"3b9d3191-eacf-432e-8514-89013ee69c94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/aggregate-post-metrics","description":"<p>This endpoint retrieves aggregate metrics pertaining to posts from various sources. These metrics provide insights on aspects like post impressions, organic reach, and other related dimensions for a given period and set of filtering criteria.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-sample\">JavaScript XHR Sample</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/aggregate-post-metrics?locationIDs=SA&amp;sourceIDs=FACEBOOK', true);\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>Date of the metric - ex.  <br />\"2023-10-01T00:00:00.000-0700\"</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>string</td>\n<td>ID of the source - ex. \"FACEBOOK\"</td>\n</tr>\n<tr>\n<td>dim.pID</td>\n<td>number</td>\n<td>Page count - ex. 2</td>\n</tr>\n<tr>\n<td>m.post:impressions</td>\n<td>number</td>\n<td>Number of post impressions - ex. 0</td>\n</tr>\n<tr>\n<td>m.post:reach:organic</td>\n<td>number</td>\n<td>Number of organic post reaches - ex. 0</td>\n</tr>\n<tr>\n<td>locationId</td>\n<td>string</td>\n<td>ID of the location - \"SA\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["aggregate-post-metrics"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specifies the starting date for which to fetch post metrics. It must be in ISO Date format, e.g., \"2023-01-01T00:00:00.000-0800\"</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies the end date for which to fetch post metrics. It must be in ISO Date format, e.g., \"2023-12-31T00:00:00.000-0800\"</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Determines the date range for which to fetch the metrics. Valid values include:\n\"Today\", \"Yesterday\", \"ThisWeek\", \"PreviousWeek\", \"ThisMonth\", \"PreviousMonth\", \"ThisQuarter\", \"PreviousQuarter\", \"ThisYear\", \"PreviousYear\", \"YearToDate\", \"LifeToDate\", \"Last7Days\", \"Last30Days\", \"Last60Days\", \"Last90Days\", \"Last6Months\", \"Last1Year\", \"Last2Years\", \"Last3Years\".</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>A comma-separated list of types to filter by. The default value includes all types. Currently, the valid type is \"post:insights\".</p>\n","type":"text/plain"},"key":"type","value":"<string array>"},{"disabled":true,"description":{"content":"<p>A comma-separated list of location IDs to filter the results by, which refers to specific locations or branches.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>A comma-separated list of source IDs to filter by. These source IDs represent various platforms or channels, e.g., \"FACEBOOK\".</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Determines how the summary should be grouped. Valid options include:</p>\n<p>\"Location\", \"Date\", \"Source\". By default, it groups by all these criteria.</p>\n","type":"text/plain"},"key":"groupBy","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Defines the intervals to filter the results by. Valid values include \"Month\" and \"Year\".</p>\n","type":"text/plain"},"key":"interval","value":"<string array>"},{"disabled":true,"description":{"content":"<p>A comma-separated list of metric properties to retrieve. The default value fetches all available metrics. Some examples are: \"m.post:impressions\", \"m.post:reach:organic\", \"dim.pID\".</p>\n","type":"text/plain"},"key":"metrics","value":"<string array>"}],"variable":[]}},"response":[{"id":"0b9520b7-7e56-4ee9-bcd1-5e257ea96630","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/aggregate-post-metrics?locationIDs=SA&sourceIDs=FACEBOOK","protocol":"https","host":["api","reputation","com"],"path":["v3","aggregate-post-metrics"],"query":[{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek","disabled":true},{"key":"type","value":"post:insights","disabled":true},{"key":"locationIDs","value":"SA"},{"key":"groupBy","value":"Date","disabled":true},{"key":"interval","value":"Year","disabled":true},{"key":"metrics","value":"dim.pID","disabled":true},{"key":"sourceIDs","value":"FACEBOOK"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1374"},{"key":"etag","value":"W/\"55e-d4Q2TV45nO007SZAYQE0B/oRLRg\""},{"key":"date","value":"Tue, 10 Oct 2023 12:54:36 GMT"},{"key":"x-envoy-upstream-service-time","value":"338"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"date\": \"2023-10-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 2,\n        \"m.post:impressions\": 0,\n        \"m.post:reach:organic\": 0,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-09-01T00:00:00.000-0700\",\n        \"dim.pID\": 0,\n        \"m.post:impressions\": 0,\n        \"m.post:reach:organic\": 0\n    },\n    {\n        \"date\": \"2023-08-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 9,\n        \"m.post:impressions\": 41,\n        \"m.post:reach:organic\": 39,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-07-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 3,\n        \"m.post:impressions\": 8,\n        \"m.post:reach:organic\": 8,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-06-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 2,\n        \"m.post:impressions\": 15,\n        \"m.post:reach:organic\": 13,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-05-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 2,\n        \"m.post:impressions\": 8,\n        \"m.post:reach:organic\": 8,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-04-01T00:00:00.000-0700\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 6,\n        \"m.post:impressions\": 26,\n        \"m.post:reach:organic\": 26,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-03-01T00:00:00.000-0800\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 32,\n        \"m.post:impressions\": 94,\n        \"m.post:reach:organic\": 93,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-02-01T00:00:00.000-0800\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 8,\n        \"m.post:impressions\": 10,\n        \"m.post:reach:organic\": 10,\n        \"locationId\": \"SA\"\n    },\n    {\n        \"date\": \"2023-01-01T00:00:00.000-0800\",\n        \"sourceID\": \"FACEBOOK\",\n        \"dim.pID\": 8,\n        \"m.post:impressions\": 29,\n        \"m.post:reach:organic\": 29,\n        \"locationId\": \"SA\"\n    }\n]"}],"_postman_id":"3b9d3191-eacf-432e-8514-89013ee69c94"}],"id":"b3c4f32e-30ba-4d42-9953-30175eceb2e6","description":"<p>The <strong>Metrics</strong> API collection provides a comprehensive suite of endpoints designed to manage, track, and analyze metrics crucial to your profiles. Use the following endpoints to track Business Listings, Social Post and Page metrics.</p>\n","_postman_id":"b3c4f32e-30ba-4d42-9953-30175eceb2e6"},{"name":"/Reports","item":[{"name":"Run Report","id":"1594b78b-10d9-48ea-991a-3842767a07db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"configuration\": {\n    \"runAsLocale\": \"string\",\n    \"runDate\": \"integer\",\n    \"overrideConfigurations\": {\n      \"__report_config__\": {\n        \"filters\": [],\n        \"parameters\": {\n          \"period\": \"string\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/reports/:reportID/export","description":"<p>Execute a specific report within the Reputation platform. By sending a PUT request to this endpoint, you can define how and when the report is exported, with the capability to override its configurations, specify the locale, and select a user context. This ensures that the generated report caters to the precise analytical needs for a given scenario.</p>\n<h2 id=\"finding-the-report-id\">Finding the Report ID</h2>\n<p><a href=\"https://support.reputation.com/s/article/How-do-I-find-a-Report-ID-in-the-Reputation-platform?language=en_US\">See this article</a> to learn how to find the report ID for the report you wish to export.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"PUT\", \"https://api.reputation.com/v3/reports/report-reviews-sentiment-over-time/export\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.setRequestHeader(\"Content-Type\", \"application/json;charset=UTF-8\");\nxhr.onreadystatechange = function () {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nvar data = JSON.stringify({\n    \"configuration\": {\n        \"runAsLocale\": \"en_US\",\n        \"runDate\": 1684752000000,\n        \"overrideConfigurations\": {\n            \"__report_config__\": {\n                \"filters\": [],\n                \"parameters\": {\n                    \"period\": \"month_last_1_year\"\n                }\n            }\n        }\n    }\n});\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>runAsLocale</td>\n<td>configuration</td>\n<td>String</td>\n<td>Locale to run report as. Valid values: de_CH, de_DE, es_ES, es_MX, en_GB, en_US, fr_CA, fr_FR. Defaults to en_US.</td>\n</tr>\n<tr>\n<td>runDate</td>\n<td>configuration</td>\n<td>Integer</td>\n<td>Date to run report on. For example: <strong>1684752000000</strong> represents June 20, 2023.</td>\n</tr>\n<tr>\n<td>runAsUserId</td>\n<td>configuration</td>\n<td>String</td>\n<td>User to run report as.</td>\n</tr>\n<tr>\n<td>overrideConfigurations</td>\n<td>configuration</td>\n<td>Object</td>\n<td>Report Configurations to override.</td>\n</tr>\n<tr>\n<td>report_config</td>\n<td>overrideConfigurations</td>\n<td>Object</td>\n<td>Contains report configurations.</td>\n</tr>\n<tr>\n<td>filters</td>\n<td>report_config</td>\n<td>String Array</td>\n<td>An array of filters for the report. Can be provided as an empty array if no filters are used.</td>\n</tr>\n<tr>\n<td>parameters</td>\n<td>report_config</td>\n<td>Object</td>\n<td>Contains parameters for the report.</td>\n</tr>\n<tr>\n<td>period</td>\n<td>parameters</td>\n<td>String</td>\n<td>Defines the report period. Valid value: \"month_last_1_year\".</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"data-returned\">Data Returned</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Data</td>\n<td>Object</td>\n<td>Report data</td>\n</tr>\n</tbody>\n</table>\n</div><p>The specific response parameters and data structure returned by the API largely depend on the type of report being fetched. For instance, when accessing the <strong>Review Sentiment Trend</strong> report, the response encapsulates monthly sentiment trends, detailing the number of positive, neutral, and negative reviews for each month. Each data point provides a breakdown for a specific period, such as <strong>May 2022</strong> or <strong>Jun 2022</strong>, and enumerates the total reviews alongside the sentiment categories. Different reports may return varied structures and metrics tailored to their unique purposes.</p>\n<h2 id=\"period-parameter-values\">Period Parameter Values</h2>\n<p>Possible values for the <strong>period</strong> parameter.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>(leave blank)</td>\n<td>All time data</td>\n</tr>\n<tr>\n<td>month_last_1_year</td>\n<td>Data from the last year</td>\n</tr>\n<tr>\n<td>this_year</td>\n<td>Data from the current year</td>\n</tr>\n<tr>\n<td>previous_year</td>\n<td>Data from the previous year</td>\n</tr>\n<tr>\n<td>previous_2_years</td>\n<td>Data from two years ago</td>\n</tr>\n<tr>\n<td>previous_3_years</td>\n<td>Data from three years ago</td>\n</tr>\n<tr>\n<td>ago_2_years</td>\n<td>Calendar year (CY) 2022</td>\n</tr>\n<tr>\n<td>ago_3_years</td>\n<td>CY 2021</td>\n</tr>\n<tr>\n<td>this_quarter</td>\n<td>Data from the current quarter</td>\n</tr>\n<tr>\n<td>previous_quarter</td>\n<td>Data from the previous quarter</td>\n</tr>\n<tr>\n<td>this_month</td>\n<td>Data from the current month</td>\n</tr>\n<tr>\n<td>previous_month</td>\n<td>Data from the previous month</td>\n</tr>\n<tr>\n<td>previous_2_months</td>\n<td>Data from two months ago</td>\n</tr>\n<tr>\n<td>previous_3_months</td>\n<td>Data from three months ago</td>\n</tr>\n<tr>\n<td>previous_6_months</td>\n<td>Data from six months ago</td>\n</tr>\n<tr>\n<td>previous_12_months</td>\n<td>Data from the last twelve months</td>\n</tr>\n<tr>\n<td>this_week</td>\n<td>Data from the current week</td>\n</tr>\n<tr>\n<td>previous_week</td>\n<td>Data from the previous week</td>\n</tr>\n<tr>\n<td>today</td>\n<td>Data from today</td>\n</tr>\n<tr>\n<td>yesterday</td>\n<td>Data from yesterday</td>\n</tr>\n<tr>\n<td>day_last_7_days</td>\n<td>Data from the past seven days</td>\n</tr>\n<tr>\n<td>day_last_30_days</td>\n<td>Data from the past thirty days</td>\n</tr>\n<tr>\n<td>day_last_60_days</td>\n<td>Data from the past sixty days</td>\n</tr>\n<tr>\n<td>day_last_90_days</td>\n<td>Data from the past ninety days</td>\n</tr>\n<tr>\n<td>month_last_6_months</td>\n<td>Data from the past six months</td>\n</tr>\n<tr>\n<td>month_last_2_years</td>\n<td>Data from the past two years</td>\n</tr>\n<tr>\n<td>month_last_3_years</td>\n<td>Data from the past three years</td>\n</tr>\n<tr>\n<td>MM/DD/YYYY 00:00</td>\n<td>Custom start date and time (format: MM/DD/YYYY)</td>\n</tr>\n<tr>\n<td>MM/DD/YYYY 23:59:59</td>\n<td>Custom end date and time (format: MM/DD/YYYY)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["reports",":reportID","export"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) The unique identifier associated with the report you wish to run.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"reportID"}]}},"response":[{"id":"71b6c177-1d97-46f1-9424-61535b7b4cc5","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"configuration\": {\n    \"runAsLocale\": \"en_US\",\n    \"runDate\": 1684752000000,\n    \"overrideConfigurations\": {\n      \"__report_config__\": {\n        \"filters\": [],\n        \"parameters\": {\n          \"period\": \"month_last_1_year\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.reputation.com/v3/reports/:reportID/run","protocol":"https","host":["api","reputation","com"],"path":["v3","reports",":reportID","run"],"variable":[{"key":"reportID","value":"report-reviews-sentiment-over-time"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1273"},{"key":"etag","value":"W/\"4f9-HlHOZ2XQnCnaI2viHEnSkZ9yk/4\""},{"key":"date","value":"Wed, 11 Oct 2023 04:58:03 GMT"},{"key":"x-envoy-upstream-service-time","value":"516"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"Current Period\": \"May 2022\",\n            \"Total Reviews\": \"49\",\n            \"Positive\": \"42\",\n            \"Neutral\": \"2\",\n            \"Negative\": \"5\"\n        },\n        {\n            \"Current Period\": \"Jun 2022\",\n            \"Total Reviews\": \"120\",\n            \"Positive\": \"101\",\n            \"Neutral\": \"7\",\n            \"Negative\": \"12\"\n        },\n        {\n            \"Current Period\": \"Jul 2022\",\n            \"Total Reviews\": \"124\",\n            \"Positive\": \"108\",\n            \"Neutral\": \"5\",\n            \"Negative\": \"11\"\n        },\n        {\n            \"Current Period\": \"Aug 2022\",\n            \"Total Reviews\": \"126\",\n            \"Positive\": \"112\",\n            \"Neutral\": \"3\",\n            \"Negative\": \"11\"\n        },\n        {\n            \"Current Period\": \"Sep 2022\",\n            \"Total Reviews\": \"122\",\n            \"Positive\": \"101\",\n            \"Neutral\": \"5\",\n            \"Negative\": \"16\"\n        },\n        {\n            \"Current Period\": \"Oct 2022\",\n            \"Total Reviews\": \"112\",\n            \"Positive\": \"94\",\n            \"Neutral\": \"7\",\n            \"Negative\": \"11\"\n        },\n        {\n            \"Current Period\": \"Nov 2022\",\n            \"Total Reviews\": \"106\",\n            \"Positive\": \"92\",\n            \"Neutral\": \"5\",\n            \"Negative\": \"9\"\n        },\n        {\n            \"Current Period\": \"Dec 2022\",\n            \"Total Reviews\": \"71\",\n            \"Positive\": \"55\",\n            \"Neutral\": \"9\",\n            \"Negative\": \"7\"\n        },\n        {\n            \"Current Period\": \"Jan 2023\",\n            \"Total Reviews\": \"76\",\n            \"Positive\": \"68\",\n            \"Neutral\": \"4\",\n            \"Negative\": \"4\"\n        },\n        {\n            \"Current Period\": \"Feb 2023\",\n            \"Total Reviews\": \"59\",\n            \"Positive\": \"55\",\n            \"Neutral\": \"1\",\n            \"Negative\": \"3\"\n        },\n        {\n            \"Current Period\": \"Mar 2023\",\n            \"Total Reviews\": \"61\",\n            \"Positive\": \"50\",\n            \"Neutral\": \"2\",\n            \"Negative\": \"9\"\n        },\n        {\n            \"Current Period\": \"Apr 2023\",\n            \"Total Reviews\": \"88\",\n            \"Positive\": \"80\",\n            \"Neutral\": \"4\",\n            \"Negative\": \"4\"\n        },\n        {\n            \"Current Period\": \"May 2023\",\n            \"Total Reviews\": \"48\",\n            \"Positive\": \"44\",\n            \"Neutral\": \"1\",\n            \"Negative\": \"3\"\n        }\n    ]\n}"}],"_postman_id":"1594b78b-10d9-48ea-991a-3842767a07db"}],"id":"cf446459-2d3c-40ab-bf48-9ac94004122f","description":"<p>Use this collection to configure and interpret reports on the Reputation platform.</p>\n","_postman_id":"cf446459-2d3c-40ab-bf48-9ac94004122f"},{"name":"/Request-URLs (Deprecated Collection)","item":[{"name":"Get Request URLs (Deprecated)","id":"c2ee1cb9-8dcd-4592-845a-7de7f5080e48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/request-urls","description":"<p>Retrieve specific request URLs associated with given parameters. This endpoint allows users to fetch URLs based on specified location IDs, source IDs and optional template names, and source IDs.</p>\n<p>A \"request URL\" refers to a specific web address (or URL) associated with a certain platform, source, or service where reviews, feedback, or other user-generated content related to a business or entity can be found or requested.</p>\n<p><strong>Note</strong>: This endpoint is now deprecated, and support for it has been discontinued.</p>\n<h2 id=\"sample-request\">Sample Request</h2>\n<h4 id=\"javascript-xhr\">JavaScript XHR</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/request-urls?locationID=SA&amp;sourceIDs=FACEBOOK', true);\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sourceID</td>\n<td>String</td>\n<td>Request URL source ID - ex. \"FACEBOOK\"</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Request URL - ex. \"<a href=\"https://www.facebook.com/business-name\">https://www.facebook.com/business-name\"</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["request-urls"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>(Required) Location id of request urls.</p>\n","type":"text/plain"},"key":"locationID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Template name to use.</p>\n","type":"text/plain"},"key":"templateName","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma separated source ids of request urls.</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string>"}],"variable":[]}},"response":[{"id":"ae5b1bea-2e98-4803-9b20-9007392bcc1e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/request-urls?locationID=SA&sourceIDs=FACEBOOK","protocol":"https","host":["api","reputation","com"],"path":["v3","request-urls"],"query":[{"key":"locationID","value":"SA"},{"key":"templateName","value":"","disabled":true},{"key":"sourceIDs","value":"FACEBOOK"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"sourceID\": \"FACEBOOK\",\n    \"url\": \"https://www.facebook.com/business-name\"\n  }\n]"}],"_postman_id":"c2ee1cb9-8dcd-4592-845a-7de7f5080e48"}],"id":"73797b4d-425c-4f5c-bc0f-6da5878472ff","description":"<p>The <strong>Request URLs</strong> offers a set of endpoints aimed at managing and retrieving the URLs associated with various sources and locations on the Reputation platform.</p>\n","_postman_id":"73797b4d-425c-4f5c-bc0f-6da5878472ff"},{"name":"/Requests","item":[{"name":"Get Metrics","id":"dc09b373-371d-4e22-8c99-02c311d3f2bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/requests/metrics","description":"<p>Retrieve key metrics related to the request processes within the Reputation platform. This endpoint offers insight into request analytics segmented by various criteria such as mode, location, or requester role. It's tailored to provide a comprehensive view of request-related activities, ensuring users have the data needed to optimize their strategies and ensure effective engagement.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/requests/metrics?range=Last30Days&amp;mode=Email&amp;groupBy=LocationID', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    // If the request completed successfully, handle the response\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locationID</td>\n<td>String</td>\n<td>The identifier for the location, which can be any combination of letters and numbers. e.g., \"CH\", \"SA\", \"WW 124\"\"</td>\n</tr>\n<tr>\n<td>mode</td>\n<td>String</td>\n<td>The mode of the request when grouping by mode.</td>\n</tr>\n<tr>\n<td>requester</td>\n<td>String</td>\n<td>The role/type of the requester when grouped by requester - e.g. \"Admin\"</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td>String</td>\n<td>The name of the template when grouped by template name.</td>\n</tr>\n<tr>\n<td>received</td>\n<td>String</td>\n<td>Total number of requests received.</td>\n</tr>\n<tr>\n<td>sent</td>\n<td>String</td>\n<td>Total number of requests sent.</td>\n</tr>\n<tr>\n<td>delivered</td>\n<td>String</td>\n<td>Total number of requests successfully delivered.</td>\n</tr>\n<tr>\n<td>uniqueOpened</td>\n<td>String</td>\n<td>Number of requests opened by unique users.</td>\n</tr>\n<tr>\n<td>opened</td>\n<td>String</td>\n<td>Total number of requests opened.</td>\n</tr>\n<tr>\n<td>uniqueClicked</td>\n<td>String</td>\n<td>Number of requests uniquely clicked on.</td>\n</tr>\n<tr>\n<td>clicked</td>\n<td>String</td>\n<td>Total number of requests clicked on.</td>\n</tr>\n<tr>\n<td>deduped</td>\n<td>String</td>\n<td>Total number of requests deduplicated and not sent.</td>\n</tr>\n<tr>\n<td>unsubscribes</td>\n<td>String</td>\n<td>Total number of users who clicked unsubscribe but did not complete the process.</td>\n</tr>\n<tr>\n<td>failures</td>\n<td>String</td>\n<td>Total number of requests that failed to send.</td>\n</tr>\n<tr>\n<td>dropped</td>\n<td>String</td>\n<td>Total number of requests dropped.</td>\n</tr>\n<tr>\n<td>bounced</td>\n<td>String</td>\n<td>Total number of requests that bounced back.</td>\n</tr>\n<tr>\n<td>spammed</td>\n<td>String</td>\n<td>Total number of requests marked as spam.</td>\n</tr>\n<tr>\n<td>unsubscribed</td>\n<td>String</td>\n<td>Total number of users who successfully unsubscribed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","metrics"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Define the timeframe for which you want to fetch the metrics. Available values include: \"LifeToDate\", \"Last7Days\", \"Last30Days\", \"Last90Days\", \"Last6Months\", and \"Last1Year\". The default value, if not specified, is \"Last90Days\".</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>(Required) Filter the metrics by the mode of the request. Valid values are: \"SMS\", \"Email\", \"Kiosk\", and \"All\". You can specify multiple modes using comma separation.</p>\n","type":"text/plain"},"key":"mode","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Determine which specific metrics you want to retrieve. Available metrics are: \"bounced\", \"clicked\", \"deduped\", \"delivered\", \"dropped\", \"failures\", \"opened\", \"received\", \"sent\", \"spammed\", \"uniqueClicked\", \"uniqueOpened\", \"unsubscribed\", and \"unsubscribes\". If not defined, all metrics will be returned by default. Filter multiple metrics using comma seperation.</p>\n","type":"text/plain"},"key":"metrics","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Define the criteria by which you want to group the returned metrics. Options are: \"LocationID\", \"Mode\", \"Requester\", \"TemplateName\", \"Day\", \"Week\", \"Month\", and \"Quarter\". Note that you can only specify one among \"Day\", \"Week\", \"Month\", or \"Quarter\". Tenant-specific filter names can also be used. The default grouping is by \"Month\" and \"LocationID\". Filter multiple groups using comma seperation.</p>\n","type":"text/plain"},"key":"groupBy","value":"<string array>"},{"disabled":true,"description":{"content":"<p>When grouping by \"Requester\", you must specify the role IDs for which you want to fetch the metrics using comma separation. </p>\n","type":"text/plain"},"key":"requesterRoleIds","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Filter the metrics by specific location IDs. List multiple IDs using comma separation.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"}],"variable":[]}},"response":[{"id":"a101faf3-54cf-4ff2-b54b-ee5d0e1305f8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/requests/metrics?range=Last30Days&mode=Email&groupBy=LocationID","protocol":"https","host":["api","reputation","com"],"path":["v3","requests","metrics"],"query":[{"key":"range","value":"Last30Days"},{"key":"mode","value":"Email"},{"key":"metrics","value":"","disabled":true},{"key":"groupBy","value":"LocationID"},{"key":"requesterRoleIds","value":"dolor ut","disabled":true},{"key":"locationIDs","value":"dolor ut","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"640"},{"key":"etag","value":"W/\"280-GmOnkP/Mhu33XVKyzkeGtDWtFJ4\""},{"key":"date","value":"Mon, 16 Oct 2023 08:07:02 GMT"},{"key":"x-envoy-upstream-service-time","value":"97"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"failures\": 0,\n        \"unsubscribes\": 0,\n        \"dropped\": 0,\n        \"delivered\": 1,\n        \"opened\": 2,\n        \"received\": 1,\n        \"uniqueOpened\": 1,\n        \"bounced\": 0,\n        \"clicked\": 0,\n        \"sent\": 1,\n        \"unsubscribed\": 0,\n        \"spammed\": 0,\n        \"uniqueClicked\": 0,\n        \"deduped\": 0,\n        \"locationID\": \"CH\"\n    },\n    {\n        \"failures\": 0,\n        \"unsubscribes\": 0,\n        \"dropped\": 0,\n        \"delivered\": 2,\n        \"opened\": 4,\n        \"received\": 2,\n        \"uniqueOpened\": 2,\n        \"bounced\": 0,\n        \"clicked\": 0,\n        \"sent\": 2,\n        \"unsubscribed\": 0,\n        \"spammed\": 0,\n        \"uniqueClicked\": 0,\n        \"deduped\": 0,\n        \"locationID\": \"SA\"\n    },\n    {\n        \"failures\": 0,\n        \"unsubscribes\": 0,\n        \"dropped\": 0,\n        \"delivered\": 102,\n        \"opened\": 52,\n        \"received\": 102,\n        \"uniqueOpened\": 48,\n        \"bounced\": 0,\n        \"clicked\": 0,\n        \"sent\": 102,\n        \"unsubscribed\": 0,\n        \"spammed\": 0,\n        \"uniqueClicked\": 0,\n        \"deduped\": 0,\n        \"locationID\": \"costco\"\n    }\n]"}],"_postman_id":"dc09b373-371d-4e22-8c99-02c311d3f2bf"},{"name":"Get Request Urls","id":"cb60ac6d-d463-4e77-b325-e1313df5f1dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":"{{baseUrl}}/requests/request-urls","description":"<p>Retrieve specific request URLs associated with given parameters. This endpoint allows users to fetch URLs based on specified location IDs, optional template names, and source ID</p>\n<p>A <strong>Request URL</strong> refers to a specific web address (or URL) associated with a certain platform, source, or service where reviews, feedback, or other user-generated content related to a business or entity can be found or requested.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/requests/request-urls?locationID=SA&amp;sourceIDs=FACEBOOK', true);\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.setRequestHeader('x-api-key', 'Your API key');\n\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sourceID</td>\n<td>String</td>\n<td>Request URL source ID - ex. \"FACEBOOK\"</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Request URL - ex. \"<a href=\"https://www.facebook.com/business-name\">https://www.facebook.com/business-name\"</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","request-urls"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>(Required) Location id of request urls</p>\n","type":"text/plain"},"key":"locationID","value":"SA"},{"disabled":true,"description":{"content":"<p>Template name to use. One of templateName or sourceIDs is required.</p>\n","type":"text/plain"},"key":"templateName","value":"Test_Template"},{"disabled":true,"description":{"content":"<p>Comma separated source ids of request urls. One of templateName or sourceIDs is required.</p>\n","type":"text/plain"},"key":"sourceIDs","value":"FACEBOOK"}],"variable":[]}},"response":[{"id":"73cd48f7-4d33-4f81-8459-03a17966b068","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"{{baseUrl}}/requests/request-urls?locationID=SA&sourceIDs=FACEBOOK","host":["{{baseUrl}}"],"path":["requests","request-urls"],"query":[{"key":"locationID","value":"SA","description":"(Required) Location id of request urls"},{"key":"templateName","value":"Test_Template","description":"Template name to use. One of templateName or sourceIDs is required.","disabled":true},{"key":"sourceIDs","value":"FACEBOOK","description":"Comma separated source ids of request urls. One of templateName or sourceIDs is required."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"183"},{"key":"etag","value":"W/\"b7-aYucZtdWhugx312iRVFoqquRpvw\""},{"key":"date","value":"Mon, 16 Oct 2023 08:42:49 GMT"},{"key":"x-envoy-upstream-service-time","value":"50"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"sourceID\": \"FACEBOOK\",\n        \"url\": \"https://service.reputation.com/r?metrics=%7B%22lC%22%3A%22SA%22%7D&u=https%3A%2F%2Fwww.facebook.com%2F845842458799728&tk=f631eb0f561&sid=FACEBOOK&n=y\"\n    }\n]"}],"_postman_id":"cb60ac6d-d463-4e77-b325-e1313df5f1dc"},{"name":"Send Email","id":"46f4ab8e-a96a-4b05-bde9-f0e1cde33cc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"String\",\n  \"templateName\": \"String\",\n  \"from\": {\n    \"name\": \"String\",\n    \"email\": \"String\"\n  },\n  \"to\": {\n    \"name\": \"String\",\n    \"email\": \"String\",\n    \"phone\": \"String\"\n  },\n  \"bcc\": {\n    \"name\": \"String\",\n    \"email\": \"String\",\n    \"phone\": \"String\"\n  },\n  \"subject\": \"String\",\n  \"sourceSelection\": \"String\",\n  \"sourceIDs\": [\"String Array\"],\n  \"excludedSourceIDs\": [\"String Array\"],\n  \"locationID\": \"String\",\n  \"variables\": [\n    {\n      \"name\": \"String\",\n      \"value\": \"String\"\n    }\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/requests/send-email","description":"<p>Facilitates the sending of email requests, leveraging customizable templates and personalization through variables. The emails can be tailored based on location, sources, and other criteria.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('POST', 'https://api.reputation.com/v3/requests/send-email', true);\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var jsonResponse = JSON.parse(xhr.responseText);\n        console.log(jsonResponse);\n    }\n};\nvar data = JSON.stringify({\n    \"templateName\": \"Basic Template 1\",\n    \"locationID\": \"SA\",\n    \"from\": {\n        \"name\": \"Jane Smith\",\n        \"email\": \"janesmith@reputation.com\"\n    },\n    \"to\": {\n        \"name\": \"John Doe\",\n        \"email\": \"johndoe@customer.com\",\n        \"phone\": \"6501235678\"\n    },\n    \"sourceIDs\": [\"FACEBOOK\"],\n    \"variables\": [\n        {\n            \"name\": \"recipient-name\",\n            \"value\": \"John\"\n        },\n        {\n            \"name\": \"recipient-last\",\n            \"value\": \"Doe\"\n        }\n    ]\n});\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<p>Below are descriptions for parameters included in the request body, accompanied by a sample of the raw JSON structure in the <strong>Body</strong> section below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n<td>Unique id for request.</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td></td>\n<td>String</td>\n<td>Required. Request Template Name to use. Example: \"Basic Template 1\".</td>\n</tr>\n<tr>\n<td>from</td>\n<td></td>\n<td>Object</td>\n<td>Details of the person sending the request.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>from</td>\n<td>String</td>\n<td>Name of the person sending request. Example: \"Jane Smith\".</td>\n</tr>\n<tr>\n<td>email</td>\n<td>from</td>\n<td>String</td>\n<td>Email address of the person sending request. Example: \"<a href=\"https://mailto:janesmith@gmail.com\">janesmith@gmail.com</a>\".</td>\n</tr>\n<tr>\n<td>to</td>\n<td></td>\n<td>Object</td>\n<td>Required. Details of the person to whom the request is being sent.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>to</td>\n<td>String</td>\n<td>Name of the person receiving the request. Example: \"John Doe\".</td>\n</tr>\n<tr>\n<td>email</td>\n<td>to</td>\n<td>String</td>\n<td>Required. Email of the person receiving request. Example: \"<a href=\"https://mailto:johndoe@gmail.com\">johndoe@gmail.com</a>\".</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>to</td>\n<td>String</td>\n<td>Phone of the person receiving request. Example: \"6501235678\".</td>\n</tr>\n<tr>\n<td>bcc</td>\n<td></td>\n<td>Object</td>\n<td>Details of the person to receive a blind copy of the request.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>bcc</td>\n<td>String</td>\n<td>Name of the person receiving the request.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>bcc</td>\n<td>String</td>\n<td>Required. Email of the person receiving the blind copy.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>bcc</td>\n<td>String</td>\n<td>Phone of the person receiving the blind copy.</td>\n</tr>\n<tr>\n<td>subject</td>\n<td></td>\n<td>String</td>\n<td>Subject of the email.</td>\n</tr>\n<tr>\n<td>sourceSelection</td>\n<td></td>\n<td>String</td>\n<td>Options: \"Auto\", \"Manual\", \"Template\". Defines which sources to include. Default is \"Template\".</td>\n</tr>\n<tr>\n<td>sourceIDs</td>\n<td></td>\n<td>String</td>\n<td>Source IDs to include in the request. Example: [\"FACEBOOK\"].</td>\n</tr>\n<tr>\n<td>excludedSourceIDs</td>\n<td></td>\n<td>String</td>\n<td>Source IDs to exclude from the request.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td></td>\n<td>String</td>\n<td>Required. Location ID of request. Example: \"346345\".</td>\n</tr>\n<tr>\n<td>variables</td>\n<td></td>\n<td>Array</td>\n<td>Custom variables for the request.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>variables</td>\n<td>String</td>\n<td>Required. Name of the variable. Example: \"recipient-name\".</td>\n</tr>\n<tr>\n<td>value</td>\n<td>variables</td>\n<td>String</td>\n<td>Required. Value of the variable. Example: \"John\".</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n<td>Unique id for request. Example: \"b0c6a1c1-8ddc-4cc4-b552-7d29fd991e66\".</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n<td>Denotes the request type. Example: \"Email\".</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td></td>\n<td>String</td>\n<td>Name of the request template used. Example: \"Basic Template 1\".</td>\n</tr>\n<tr>\n<td>from</td>\n<td></td>\n<td>Object</td>\n<td>Details about the sender.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>from</td>\n<td>String</td>\n<td>Name of the person sending the request. Example: \"Jane Smith\".</td>\n</tr>\n<tr>\n<td>email</td>\n<td>from</td>\n<td>String</td>\n<td>Email of the person sending the request. Example: \"<a href=\"https://mailto:janesmith@reputation.com\">janesmith@reputation.com</a>\".</td>\n</tr>\n<tr>\n<td>to</td>\n<td></td>\n<td>Object</td>\n<td>Details about the receiver.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>to</td>\n<td>String</td>\n<td>Name of the person receiving the request. Example: \"j**\".</td>\n</tr>\n<tr>\n<td>email</td>\n<td>to</td>\n<td>String</td>\n<td>Email of the person receiving the request. Example: \"j**\".</td>\n</tr>\n<tr>\n<td>subject</td>\n<td></td>\n<td>String</td>\n<td>Subject of the email. Example: \"Reviewing Simple Art\".</td>\n</tr>\n<tr>\n<td>sourceSelection</td>\n<td></td>\n<td>String</td>\n<td>Source selection method. Example: \"Auto\".</td>\n</tr>\n<tr>\n<td>sourceIDs</td>\n<td></td>\n<td>Array</td>\n<td>Array of source IDs to include in the request. Example: [\"FACEBOOK\"].</td>\n</tr>\n<tr>\n<td>excludedSourceIDs</td>\n<td></td>\n<td>Array</td>\n<td>Array of source IDs to exclude from the request. Example: null.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td></td>\n<td>String</td>\n<td>Location ID associated with the request. Example: \"SA\".</td>\n</tr>\n<tr>\n<td>variables</td>\n<td></td>\n<td>Object</td>\n<td>Custom variables associated with the request.</td>\n</tr>\n<tr>\n<td>[Variable Name]</td>\n<td>variables</td>\n<td>String</td>\n<td>The name and corresponding value of the variable. Examples: \"recipient-name\": \"John\", \"recipient-last\": \"Doe\".</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","send-email"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"154a4fe6-2efd-4cd3-a2c0-4fad73d54c29","name":"Send Email","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"templateName\": \"Basic Template 1\",\n  \"locationID\": \"SA\",\n  \"from\": {\n    \"name\": \"Jane Smith\",\n    \"email\": \"janesmith@reputation.com\"\n  },\n  \"to\": {\n    \"name\": \"John Doe\",\n    \"email\": \"johndoe@customer.com\",\n    \"phone\": \"6501235678\"\n  },\n  \"sourceIDs\": [\n    \"FACEBOOK\"\n  ],\n  \"variables\": [\n    {\n      \"name\": \"recipient-name\",\n      \"value\": \"John\"\n    },\n    {\n      \"name\": \"recipient-last\",\n      \"value\": \"Doe\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.reputation.com/v3/requests/send-email","protocol":"https","host":["api","reputation","com"],"path":["v3","requests","send-email"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"403"},{"key":"etag","value":"W/\"193-o37RF5aLqYdOQ1ibmaYQzaEAmyI\""},{"key":"date","value":"Mon, 16 Oct 2023 08:54:24 GMT"},{"key":"x-envoy-upstream-service-time","value":"148"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b0c6a1c1-8ddc-4cc4-b552-7d29fd991e66\",\n    \"type\": \"Email\",\n    \"templateName\": \"Basic Template 1\",\n    \"from\": {\n        \"name\": \"Jane Smith\",\n        \"email\": \"janesmith@reputation.com\"\n    },\n    \"to\": {\n        \"name\": \"j**************\",\n        \"email\": \"j**************\"\n    },\n    \"subject\": \"Reviewing Simple Art\",\n    \"sourceSelection\": \"Auto\",\n    \"sourceIDs\": [\n        \"FACEBOOK\"\n    ],\n    \"excludedSourceIDs\": null,\n    \"locationID\": \"SA\",\n    \"variables\": {\n        \"recipient-last\": \"Doe\",\n        \"recipient-name\": \"John\"\n    }\n}"}],"_postman_id":"46f4ab8e-a96a-4b05-bde9-f0e1cde33cc0"},{"name":"Send SMS","id":"b8217aa2-b325-4d24-b0a0-579ffd93d325","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"String\",\n  \"templateName\": \"String\",\n  \"to\": {\n    \"name\": \"String\",\n    \"email\": \"String\",\n    \"phone\": \"String\"\n  },\n  \"sourceSelection\": \"String\",\n  \"sourceIDs\": [\"String Array\"],\n  \"excludedSourceIDs\": [\"String Array\"],\n  \"locationID\": \"String\",\n  \"variables\": [\n    {\n      \"name\": \"String\",\n      \"value\": \"String\"\n    }\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/requests/send-sms","description":"<p>Send an SMS request to a client. By using specific templates and defining the recipient, you can send tailored SMS messages to your desired audience.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('POST', 'https://api.reputation.com/v3/requests/send-sms', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.onreadystatechange = function() {\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    var response = JSON.parse(xhr.responseText);\n    console.log(response);\n  }\n};\nvar data = JSON.stringify({\n  \"templateName\": \"Basic Template 1\",\n  \"locationID\": \"SA\",\n  \"to\": {\n    \"name\": \"John Doe\",\n    \"email\": \"johndoe@customer.com\",\n    \"phone\": \"78553863263\"\n  },\n  \"sourceIDs\": [\"FACEBOOK\"],\n  \"variables\": [\n    {\n      \"name\": \"recipient-name\",\n      \"value\": \"John\"\n    },\n    {\n      \"name\": \"recipient-last\",\n      \"value\": \"Doe\"\n    }\n  ]\n});\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<p>Below are descriptions for parameters included in the request body, accompanied by a sample of the raw JSON structure in the <strong>Body</strong> section below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n<td>A unique identifier for the request.</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td></td>\n<td>String</td>\n<td>The name of the request template to be used. For instance, if the template is overridden at the Tenant or Location level, that specific template will be utilized. Example: \"Basic Template 1\".</td>\n</tr>\n<tr>\n<td>to</td>\n<td></td>\n<td>Object</td>\n<td>Specifies the recipient's details.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>to</td>\n<td>String</td>\n<td>The name of the individual receiving the request. Example: \"John Doe\".</td>\n</tr>\n<tr>\n<td>email</td>\n<td>to</td>\n<td>String</td>\n<td>The email address of the individual receiving the request. Example: \"<a href=\"https://mailto:johndoe@gmail.com\">johndoe@gmail.com</a>\".</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>to</td>\n<td>String</td>\n<td>The phone number where the SMS will be sent. It's a required field. Example: \"6501235678\".</td>\n</tr>\n<tr>\n<td>sourceSelection</td>\n<td></td>\n<td>String</td>\n<td>Method to determine which sources to include. Options are \"Auto\", \"Manual\", and \"Template\". The default selection is \"Template\".</td>\n</tr>\n<tr>\n<td>sourceIDs</td>\n<td></td>\n<td>Array</td>\n<td>A list of source IDs to be included in the request. Example: [\"FACEBOOK\"].</td>\n</tr>\n<tr>\n<td>excludedSourceIDs</td>\n<td></td>\n<td>Array</td>\n<td>A list of source IDs to be excluded from the request.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td></td>\n<td>String</td>\n<td>The location ID associated with the request. Example: \"346345\".</td>\n</tr>\n<tr>\n<td>variables</td>\n<td></td>\n<td>Object</td>\n<td>Defines custom variables for the request.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>variables</td>\n<td>String</td>\n<td>The specific name of the custom variable. Example: \"recipient-name\".</td>\n</tr>\n<tr>\n<td>value</td>\n<td>variables</td>\n<td>String</td>\n<td>The corresponding value of the custom variable. Example: \"John\".</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td></td>\n<td>String</td>\n<td>Unique id for request. Example: \"75634d4e-9b5b-449f-83f5-da3b3283764d\"</td>\n</tr>\n<tr>\n<td>type</td>\n<td></td>\n<td>String</td>\n<td>Denotes the request type. Example: \"SMS\"</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td></td>\n<td>String</td>\n<td>Request Template Name to use. Example: \"Basic Template 1\"</td>\n</tr>\n<tr>\n<td>to</td>\n<td></td>\n<td>Object</td>\n<td>Object containing recipient's details</td>\n</tr>\n<tr>\n<td>name</td>\n<td>to</td>\n<td>String</td>\n<td>Name of the person receiving request. Example: \"j**\"</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>to</td>\n<td>String</td>\n<td>Phone number of the person receiving request. Example: \"+**\"</td>\n</tr>\n<tr>\n<td>sourceSelection</td>\n<td></td>\n<td>String</td>\n<td>Which sources to include? Example: \"Auto\"</td>\n</tr>\n<tr>\n<td>sourceIDs</td>\n<td></td>\n<td>Array</td>\n<td>List of Source IDs to include in the request. Example: [\"FACEBOOK\"]</td>\n</tr>\n<tr>\n<td>excludedSourceIDs</td>\n<td></td>\n<td>Array</td>\n<td>List of Source IDs to exclude from the request. Can be null.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td></td>\n<td>String</td>\n<td>Location ID of the request. Example: \"SA\"</td>\n</tr>\n<tr>\n<td>variables</td>\n<td></td>\n<td>Object</td>\n<td>Custom variables for the request. Example: {\"recipient-name\": \"John\", \"recipient-last\": \"Doe\"}</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","send-sms"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"eaeca224-fe7b-4487-beef-9429c378e22d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"templateName\": \"Basic Template 1\",\n  \"locationID\": \"SA\",\n  \"to\": {\n    \"name\": \"John Doe\",\n    \"email\": \"johndoe@customer.com\",\n    \"phone\": \"78553863263\"\n  },\n  \"sourceIDs\": [\n    \"FACEBOOK\"\n  ],\n  \"variables\": [\n    {\n      \"name\": \"recipient-name\",\n      \"value\": \"John\"\n    },\n    {\n      \"name\": \"recipient-last\",\n      \"value\": \"Doe\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/requests/send-sms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"304"},{"key":"etag","value":"W/\"130-tGOVKonueR+hPsgGz28t6QEKsKg\""},{"key":"date","value":"Mon, 16 Oct 2023 09:36:52 GMT"},{"key":"x-envoy-upstream-service-time","value":"254"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"75634d4e-9b5b-449f-83f5-da3b3283764d\",\n    \"type\": \"SMS\",\n    \"templateName\": \"Basic Template 1\",\n    \"to\": {\n        \"name\": \"j**************\",\n        \"phone\": \"+**************\"\n    },\n    \"sourceSelection\": \"Auto\",\n    \"sourceIDs\": [\n        \"FACEBOOK\"\n    ],\n    \"excludedSourceIDs\": null,\n    \"locationID\": \"SA\",\n    \"variables\": {\n        \"recipient-last\": \"Doe\",\n        \"recipient-name\": \"John\"\n    }\n}"}],"_postman_id":"b8217aa2-b325-4d24-b0a0-579ffd93d325"},{"name":"Unsubscribe Email","id":"32557391-1859-4d2c-8b24-6fbd785b20f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"String\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/requests/unsubscribe-email","description":"<p>Unsubscribe a client's email from your marketing. Once requested the email address will no longer recieve emails.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"POST\", \"https://api.reputation.com/v3/requests/unsubscribe-email\", true);\nxhr.setRequestHeader(\"Content-Type\", \"application/json;charset=UTF-8\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function() {\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    console.log(xhr.responseText);\n  }\n};\nvar data = {\n  email: \"john@doe.com\"\n};\nxhr.send(JSON.stringify(data));\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<p>Below are descriptions for parameters included in the request body, accompanied by a sample of the raw JSON structure in the <strong>Body</strong> section below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>The email address to be unsubscribed. Example: \"<a href=\"https://mailto:john@doe.com\">john@doe.com</a>\"</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>The email address unsubscribed. Example: \"<a href=\"https://mailto:john@doe.com\">john@doe.com</a>\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","unsubscribe-email"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a3008574-947d-4e83-9149-5cce7227ad04","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"john@doe.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/requests/unsubscribe-email"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"24"},{"key":"etag","value":"W/\"18-I9hRbkB/t441uui5lOoEdDAb8dA\""},{"key":"date","value":"Mon, 16 Oct 2023 10:01:57 GMT"},{"key":"x-envoy-upstream-service-time","value":"124"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"email\": \"john@doe.com\"\n}"}],"_postman_id":"32557391-1859-4d2c-8b24-6fbd785b20f4"},{"name":"Unsubscribe Phone","id":"4b6ef9de-7ab1-4919-bd0d-ffcbe3ac9738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"String\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/requests/unsubscribe-phone","description":"<p>Unsubscribe a client's phone number from your marketing. Once requested the phone number will no longer recieve SMSs.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"POST\", \"https://api.reputation.com/v3/requests/unsubscribe-phone\", true);\nxhr.setRequestHeader(\"Content-Type\", \"application/json;charset=UTF-8\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function() {\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    console.log(xhr.responseText);\n  }\n};\nvar data = {\n  phone: \"+16501237890\"\n};\nxhr.send(JSON.stringify(data));\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<p>Below are descriptions for parameters included in the request body, accompanied by a sample of the raw JSON structure in the <strong>Body</strong> section below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>phone</td>\n<td>String</td>\n<td>The phone number to be unsubscribed in E.164 format. Example: \"+16501237890\"</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>The phone number that was unsubscribed. Example: \"+16501237890\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","unsubscribe-phone"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f2aa3575-8548-40ba-8613-146b0dcc11ed","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"+16501237890\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/requests/unsubscribe-phone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"24"},{"key":"etag","value":"W/\"18-dlO7A/7p+dbJTu7eepND0xpH+J0\""},{"key":"date","value":"Mon, 16 Oct 2023 10:16:27 GMT"},{"key":"x-envoy-upstream-service-time","value":"192"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"phone\": \"+16501237890\"\n}"}],"_postman_id":"4b6ef9de-7ab1-4919-bd0d-ffcbe3ac9738"},{"name":"Get Unsubscribes","id":"63e8429c-d55b-45de-9fe6-2d9266e71f59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":"{{baseUrl}}/requests/unsubscribes","description":"<p>Retrieve a list of unsubscribes based on a specified date range and pagination constraints. This endpoint is useful for monitoring customers who have opted out of communications, whether via email or phone.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/requests/unsubscribes?offset=0&amp;limit=20', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var jsonResponse = JSON.parse(xhr.responseText);\n        console.log(jsonResponse);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>unsubscribes</td>\n<td>-</td>\n<td>Object</td>\n<td>An array containing details of unsubscribed entities.</td>\n</tr>\n<tr>\n<td>customerID</td>\n<td>unsubscribes</td>\n<td>String</td>\n<td>Unique identifier for the customer. Can be null. Example: null</td>\n</tr>\n<tr>\n<td>email</td>\n<td>unsubscribes</td>\n<td>String</td>\n<td>Email address that was unsubscribed. Can be null. Example: \"<a href=\"https://mailto:john@doe.com\">john@doe.com</a>\" or null</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>unsubscribes</td>\n<td>String</td>\n<td>Phone number that was unsubscribed. Can be null. Example: \"+16501237890\" or null</td>\n</tr>\n<tr>\n<td>date</td>\n<td>unsubscribes</td>\n<td>String</td>\n<td>Date when the unsubscribe action occurred in Datetime ISO 8601 format. Example: \"2023-10-16T03:16:27\"</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Object</td>\n<td>Contains details about the pagination of the result. Example: { \"offset\": 0, \"limit\": 20 }</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>Integer</td>\n<td>This offsets the start of each page by the number specified. Example: 0</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>Integer</td>\n<td>Maximum number of objects returned for the query. Example: 20</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","unsubscribes"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specifies the date range for which unsubscribes will be retrieved.\nValid Values: \"Today\", \"Yesterday\", \"ThisWeek\", \"PreviousWeek\", \"ThisMonth\", \"PreviousMonth\", \"ThisQuarter\", \"PreviousQuarter\", \"ThisYear\", \"PreviousYear\", \"YearToDate\", \"LifeToDate\", \"Last7Days\", \"Last30Days\", \"Last60Days\", \"Last90Days\", \"Last6Months\", \"Last1Year\", \"Last2Years\", \"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Offsets the start of each page by the specified number. This is useful for paginating through larger datasets. The maximum allowed offset is 100k.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Limits the number of results that may be returned. Though the query may return fewer results due to filtering, the default limit is set to 20, with a maximum permissible limit of 2000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"}],"variable":[]}},"response":[{"id":"80971ea1-e570-4a3a-8838-bf084d0759ff","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/requests/unsubscribes?offset=0&limit=20","protocol":"https","host":["api","reputation","com"],"path":["v3","requests","unsubscribes"],"query":[{"key":"range","value":"<string>","description":"Specifies the date range for which unsubscribes will be retrieved.\nValid Values: \"Today\", \"Yesterday\", \"ThisWeek\", \"PreviousWeek\", \"ThisMonth\", \"PreviousMonth\", \"ThisQuarter\", \"PreviousQuarter\", \"ThisYear\", \"PreviousYear\", \"YearToDate\", \"LifeToDate\", \"Last7Days\", \"Last30Days\", \"Last60Days\", \"Last90Days\", \"Last6Months\", \"Last1Year\", \"Last2Years\", \"Last3Years\"","disabled":true},{"key":"offset","value":"0","description":"Offsets the start of each page by the specified number. This is useful for paginating through larger datasets. The maximum allowed offset is 100k."},{"key":"limit","value":"20","description":"Limits the number of results that may be returned. Though the query may return fewer results due to filtering, the default limit is set to 20, with a maximum permissible limit of 2000."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"221"},{"key":"etag","value":"W/\"dd-1FnRQPeYQb4b/H9hRaEoNiy24us\""},{"key":"date","value":"Mon, 16 Oct 2023 10:33:28 GMT"},{"key":"x-envoy-upstream-service-time","value":"67"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"unsubscribes\": [\n        {\n            \"customerID\": null,\n            \"email\": null,\n            \"phone\": \"+16501237890\",\n            \"date\": \"2023-10-16T03:16:27\"\n        },\n        {\n            \"customerID\": null,\n            \"email\": \"john@doe.com\",\n            \"phone\": null,\n            \"date\": \"2023-10-16T03:01:57\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 20\n    }\n}"}],"_postman_id":"63e8429c-d55b-45de-9fe6-2d9266e71f59"},{"name":"Get Request Templates","id":"fe34da1a-fda2-48c1-b065-c6c4b7c9d23b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/requests/templates","description":"<p>This endpoint allows you to retrieve a list of available request templates based on the specified template type. The request templates define preset formats and structures for various types of requests such as Kiosk, Request Review, or SMS. By passing the appropriate <strong>templateType</strong> parameter, you can filter out the templates that match the desired type.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\n\nxhr.open('GET', 'https://api.reputation.com/v3/requests/templates?templateType=3', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\n\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\"><strong>Response Parameters</strong></h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>requestTemplates</td>\n<td>-</td>\n<td>Object</td>\n<td>Object containing template information.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>requestTemplates</td>\n<td>String  <br />(hexadecimal)</td>\n<td>System-generated ID representing the Request template. For example, \"5ba908637b7b4704d80f2f2f\".</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td>requestTemplates</td>\n<td>String</td>\n<td>Name of the Request Template. For example, \"BRP Appointment Reminder\".</td>\n</tr>\n<tr>\n<td>templateType</td>\n<td>requestTemplates</td>\n<td>String</td>\n<td>Type of the request template, such as SMS, Email, or Kiosk. For instance, \"SMS\".</td>\n</tr>\n<tr>\n<td>templateLevel</td>\n<td>requestTemplates</td>\n<td>String</td>\n<td>Level of the request template, which can be System, Tenant, or Location. Example: \"Tenant\".</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>requestTemplates</td>\n<td>Integer (int64)</td>\n<td>Date in milliseconds when the Request template was created. Example: 0 denotes the Unix epoch.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["requests","templates"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Template type of Request Template to retrieve. Options are '1' for Kiosk, '2' for Request Review, and '3' for SMS. For example, '2' corresponds to \"Request Review\".</p>\n","type":"text/plain"},"key":" templateType","value":"<string (hexadecimal)>"}],"variable":[]}},"response":[{"id":"ab850564-1e88-4969-b66a-28a96b400a1f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/requests/templates?templateType=3","protocol":"https","host":["api","reputation","com"],"path":["v3","requests","templates"],"query":[{"key":"templateType","value":"3","description":"Template type of Request Template to retrieve. Valid valuues: \"'1' for Kiosk\"\"'2' for Request Review\"\"'3' for SMS\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"5138"},{"key":"etag","value":"W/\"1412-8x0+zn1ejvWx7W9FIc5REGGhw+c\""},{"key":"date","value":"Mon, 16 Oct 2023 10:54:21 GMT"},{"key":"x-envoy-upstream-service-time","value":"108"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"requestTemplates\": [\n        {\n            \"id\": \"5ba908637b7b4704d80f2f2f\",\n            \"templateName\": \"BRP Appointment Reminder\",\n            \"templateType\": \"SMS\",\n            \"createdDate\": 0,\n            \"templateLevel\": \"Tenant\"\n        },\n        {\n            \"id\": \"60592439671227085d4dc6dc\",\n            \"templateName\": \"Conversational Request\",\n            \"templateType\": \"SMS\",\n            \"createdDate\": 0,\n            \"templateLevel\": \"System\"\n        }\n    ]\n}\n"}],"_postman_id":"fe34da1a-fda2-48c1-b065-c6c4b7c9d23b"}],"id":"c72ddb2c-ea62-4a74-a34d-3f26dfa59ec2","description":"<p>The Requests API collection offers a suite of endpoints designed to handle various communication requests. It facilitates the process of sending tailored communications, such as emails and SMS messages, while also providing the ability to manage user preferences, like unsubscribing from email communications. Key functionalities include <strong>Send Email</strong>, <strong>Send SMS</strong>, and <strong>Unsubscribe Email</strong>, ensuring that businesses can effectively engage with their audience while respecting their communication preferences.</p>\n","_postman_id":"c72ddb2c-ea62-4a74-a34d-3f26dfa59ec2"},{"name":"/Reviews","item":[{"name":"Get Reviews","id":"3d49e7e1-2b16-45f2-8211-22d0cbb0082d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":"{{baseUrl}}/reviews","description":"<p>Retrieves a list of reviews based on various filter criteria. This endpoint allows for a wide range of parameters to narrow down and organize the list of reviews, providing flexibility to retrieve reviews from different time periods, sources, locations, and more.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/reviews?range=PreviousWeek&amp;offset=0&amp;limit=3', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    // If the request is complete\n    if (xhr.readyState == 4) {\n        // If the request was successful\n        if (xhr.status == 200) {\n            console.log(xhr.responseText);\n        } else {\n            console.error('Request failed with status:', xhr.status);\n        }\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reviews</td>\n<td>-</td>\n<td>object</td>\n<td>Array of reviews.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>reviews</td>\n<td>string</td>\n<td>Unique identifier for the review.</td>\n</tr>\n<tr>\n<td>tenantID</td>\n<td>reviews</td>\n<td>string</td>\n<td>Tenant identifier. Modifiable only when creating a location.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>reviews</td>\n<td>string</td>\n<td>Identifier for the location.</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>reviews</td>\n<td>string</td>\n<td>Identifier for the source.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>reviews</td>\n<td>string</td>\n<td>URL of the review.</td>\n</tr>\n<tr>\n<td>date</td>\n<td>reviews</td>\n<td>string</td>\n<td>Date of the review in ISO 8601 format.</td>\n</tr>\n<tr>\n<td>reviewer</td>\n<td>reviews</td>\n<td>object</td>\n<td>Details of the reviewer.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>reviewer</td>\n<td>string</td>\n<td>Name of the reviewer.</td>\n</tr>\n<tr>\n<td>rating</td>\n<td>reviews</td>\n<td>number</td>\n<td>Rating given by the reviewer on the review site.</td>\n</tr>\n<tr>\n<td>normalizedRating</td>\n<td>reviews</td>\n<td>number</td>\n<td>Rating normalized to a scale of 1.</td>\n</tr>\n<tr>\n<td>sentiment</td>\n<td>reviews</td>\n<td>string</td>\n<td>Review sentiment. Values: Positive, Negative, Neutral, None.</td>\n</tr>\n<tr>\n<td>commentTitle</td>\n<td>reviews</td>\n<td>string</td>\n<td>Title of the review comment.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>reviews</td>\n<td>string</td>\n<td>Body of the review comment.</td>\n</tr>\n<tr>\n<td>published</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if the review is published.</td>\n</tr>\n<tr>\n<td>canRespond</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if a response can be made to the review.</td>\n</tr>\n<tr>\n<td>hasResponses</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if the review already has responses.</td>\n</tr>\n<tr>\n<td>responseUrl</td>\n<td>reviews</td>\n<td>string</td>\n<td>URL for responding to the review. Exists only if a response can be made.</td>\n</tr>\n<tr>\n<td>reviewUrl</td>\n<td>reviews</td>\n<td>string</td>\n<td>URL to read the full review.</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>reviews</td>\n<td>string array</td>\n<td>Categories associated with the review.</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if the review has been updated.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Paging</td>\n<td>Pagination details.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer</td>\n<td>The starting point of the page based on the offset value.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer</td>\n<td>Maximum number of objects returned. Can be fewer due to filtering.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint returning the previous page of data. Absent if this is the first page.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint returning the next page of data. Absent if this is the last page.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["reviews"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specifies the starting date for the review search. The date should be in ISO 8601 format.</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies the ending date for the review search. The date should be in ISO 8601 format.</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies a predefined date range for retrieving reviews. Valid Values:\n\"Today\", \"Yesterday\", \"ThisWeek\", \"PreviousWeek\", \"ThisMonth\", \"PreviousMonth\", \"ThisQuarter\", \"PreviousQuarter\", \"ThisYear\", \"PreviousYear\", \"YearToDate\", \"LifeToDate\", \"Last7Days\", \"Last30Days\", \"Last60Days\", \"Last90Days\", \"Last6Months\", \"Last1Year\", \"Last2Years\", \"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of source IDs to filter the reviews by.</p>\n","type":"text/plain"},"key":"sourceID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of location IDs to filter the reviews by.</p>\n","type":"text/plain"},"key":"locationID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Offsets the start of each page by the number specified, useful for pagination. Maximum offset value is 100,000.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Determines the maximum number of review objects that may be returned in the response. The actual number of returned reviews may be less than this value due to filtering. The default value is 20, and the maximum allowed limit is 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Specifies the fields by which the results should be sorted. Multiple fields can be separated by commas, and the sort order for each field is designated by appending the field name with a colon and the order (ASC or DESC).\nExample: \"date:ASC\"</p>\n","type":"text/plain"},"key":"sort","value":"<string>"}],"variable":[]}},"response":[{"id":"86859c7d-884c-4d8d-a799-87bb79e9f749","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/reviews?range=PreviousWeek&offset=0&limit=3","protocol":"https","host":["api","reputation","com"],"path":["v3","reviews"],"query":[{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek"},{"key":"sourceID","value":"FACEBOOK","disabled":true},{"key":"locationID","value":"SA","disabled":true},{"key":"offset","value":"0"},{"key":"limit","value":"3"},{"key":"sort","value":"dolor ut","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"3483"},{"key":"etag","value":"W/\"d9b-37bff5zhv8ol8VXVq6i9eSur2XI\""},{"key":"date","value":"Mon, 16 Oct 2023 11:30:50 GMT"},{"key":"x-envoy-upstream-service-time","value":"579"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"reviews\": [\n        {\n            \"id\": \"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749\",\n            \"tenantID\": \"TXR123\",\n            \"locationID\": \"WF\",\n            \"locationName\": \"AutoNation Toyota Spokane Valley\",\n            \"sourceID\": \"DEALER_RATER\",\n            \"url\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/\",\n            \"date\": \"2023-10-14T00:00:00\",\n            \"reviewer\": {\n                \"name\": \"aemami\"\n            },\n            \"rating\": 1,\n            \"normalizedRating\": 0.2,\n            \"sentiment\": \"Negative\",\n            \"commentTitle\": \"Disappointed with the Appointment Process\",\n            \"comment\": \"I scheduled an appointment to buy the car. However, shortly before my visit, they informed me that someone else had reserved the car. It felt like they used my interest to pressure someone else to purchase. Very unprofessional. I won't be returning.\",\n            \"published\": false,\n            \"canRespond\": true,\n            \"hasResponses\": false,\n            \"responseUrl\": null,\n            \"reviewUrl\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/#link\",\n            \"categories\": [\n                \"Customer Service\",\n                \"Sales\",\n                \"Salesperson\"\n            ],\n            \"attributions\": null,\n            \"updated\": false\n        },\n        {\n            \"id\": \"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11333510\",\n            \"tenantID\": \"TXR124\",\n            \"locationID\": \"WF\",\n            \"locationName\": \"AutoNation Toyota Spokane Valley\",\n            \"sourceID\": \"DEALER_RATER\",\n            \"url\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/\",\n            \"date\": \"2023-10-14T00:00:00\",\n            \"reviewer\": {\n                \"name\": \"Craigf68\"\n            },\n            \"rating\": 5,\n            \"normalizedRating\": 1,\n            \"sentiment\": \"Positive\",\n            \"commentTitle\": \"Exceptional Salesperson Experience\",\n            \"comment\": \"Our experience was highlighted by our salesperson, Sawyer. He was knowledgeable, sincere, and truly looked out for our best interests. He made the car buying process smooth and memorable. I highly recommend them.\",\n            \"published\": false,\n            \"canRespond\": true,\n            \"hasResponses\": false,\n            \"responseUrl\": null,\n            \"reviewUrl\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/#link\",\n            \"categories\": [\n                \"Customer Service\",\n                \"Sales\",\n                \"Salesperson\"\n            ],\n            \"attributions\": null,\n            \"updated\": false\n        },\n        {\n            \"id\": \"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11333362\",\n            \"tenantID\": \"TXR125\",\n            \"locationID\": \"WF\",\n            \"locationName\": \"AutoNation Toyota Spokane Valley\",\n            \"sourceID\": \"DEALER_RATER\",\n            \"url\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/\",\n            \"date\": \"2023-10-14T00:00:00\",\n            \"reviewer\": {\n                \"name\": \"Debbiedooda\"\n            },\n            \"rating\": 5,\n            \"normalizedRating\": 1,\n            \"sentiment\": \"Positive\",\n            \"commentTitle\": \"Efficient and Transparent Service\",\n            \"comment\": \"Adam was our point of contact and he kept us in the loop throughout the entire process. His professionalism and straightforward approach made our transaction very smooth. Highly satisfied.\",\n            \"published\": false,\n            \"canRespond\": true,\n            \"hasResponses\": false,\n            \"responseUrl\": null,\n            \"reviewUrl\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/#link\",\n            \"categories\": [\n                \"Customer Service\",\n                \"Sales\",\n                \"Salesperson\"\n            ],\n            \"attributions\": null,\n            \"updated\": false\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 3,\n        \"next\": \"https://api.reputation.com/v3/reviews?offset=3&limit=3&range=PreviousWeek\"\n    },\n    \"dateRange\": {\n        \"range\": \"PreviousWeek\",\n        \"from\": \"2023-10-08T00:00:00\",\n        \"to\": \"2023-10-14T23:59:59\"\n    }\n}\n"}],"_postman_id":"3d49e7e1-2b16-45f2-8211-22d0cbb0082d"},{"name":"Get Review Responses","id":"db37a8b0-cd84-4342-92cd-0f6885434565","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/reviews/:reviewID/responses","description":"<p>This endpoint retrieves responses associated with a specific review from the Reputation.com API. Each review in the system has a unique identifier known as a <strong>reviewID</strong>. By providing this ID in the endpoint, you can fetch the associated responses given to that review, whether they are public comments or private messages. The data returned includes the name of the responder, their comment, the type of response (public or private), and the date of the response.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/reviews/DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749/responses?offset=0&amp;limit=25', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>responses</td>\n<td>-</td>\n<td>Object</td>\n<td>Responses related to a particular review.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>responses</td>\n<td>string</td>\n<td>Name of the individual or entity who responded.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>responses</td>\n<td>string</td>\n<td>Message or comment given as a response to a review.</td>\n</tr>\n<tr>\n<td>privateMsg</td>\n<td>responses</td>\n<td>boolean</td>\n<td>Indicates if the response is private or can be viewed by the public.</td>\n</tr>\n<tr>\n<td>responseDate</td>\n<td>responses</td>\n<td>string</td>\n<td>The date and time when the response was made, formatted in ISO 8601 standard.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Object</td>\n<td>Provides pagination details for the list of responses.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer</td>\n<td>Specifies the starting point from which the results are displayed.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer</td>\n<td>The maximum number of response objects that can be returned. It may return fewer due to filtering or limited data.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint that will return the previous page of data. Not included if it's the first page.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint that will return the next page of data. Not included if it's the last page.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["reviews",":reviewID","responses"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Offsets the start of each page by the number specified, useful for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Determines the maximum number of review objects that may be returned in the response.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"disabled":true,"key":"","value":""},{"disabled":true,"key":"","value":""}],"variable":[{"description":{"content":"<p>(Required) A unique identifier for each review in the system. It serves as a reference to fetch specific review details or associated responses.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"reviewID"}]}},"response":[{"id":"c71251d8-a7e6-4e2d-92f6-2635b6dff36f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/reviews/:reviewID/responses?offset=0&limit=25","protocol":"https","host":["api","reputation","com"],"path":["v3","reviews",":reviewID","responses"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"25"}],"variable":[{"key":"reviewID","value":"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749","description":"(Required) Review id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"responses\": [\n    {\n      \"name\": \"Jessica Adams\",\n      \"comment\": \"Hello! We're delighted to hear that you had a positive experience with us. Your feedback is greatly appreciated. Please let us know if there's anything else we can do for you!\",\n      \"privateMsg\": false,\n      \"responseDate\": \"2023-04-10T09:47:32\"\n    },\n    {\n      \"name\": \"John D'Costa\",\n      \"comment\": \"Thank you for taking the time to share your experience. We value every piece of feedback and work on making our services even better. Hope to see you again soon!\",\n      \"privateMsg\": true,\n      \"responseDate\": \"2023-06-15T12:21:45\"\n    },\n    {\n      \"name\": \"Linda White\",\n      \"comment\": \"We apologize for any inconvenience you might have faced. Please reach out to our support team for further assistance. Your satisfaction is our top priority.\",\n      \"privateMsg\": false,\n      \"responseDate\": \"2023-07-05T14:30:01\"\n    }\n  ],\n  \"paging\": {\n    \"offset\": 0,\n    \"limit\": 25,\n    \"previous\": \"https://api.reputation.com/v3/{resource}?limit=25&offset=0\",\n    \"next\": \"https://api.reputation.com/v3/{resource}?limit=25&offset=50\"\n  }\n}\n"}],"_postman_id":"db37a8b0-cd84-4342-92cd-0f6885434565"},{"name":"Respond To Review","id":"dcc01ca9-c4a9-43ef-8d7d-48e4e5ce95aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"comment\": \"string\",\n  \"privateMsg\": \"boolean\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/reviews/:reviewID/respond","description":"<p>This endpoint allows you to respond to a specific review on the Reputation platform. By specifying the review's unique identifier <strong>reviewID</strong> in the path parameter, you can craft and send a response directly to that review. This is particularly useful for businesses looking to engage with their customers by addressing their reviews, whether they're positive, negative, or neutral.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('POST', 'https://api.reputation.com/v3/reviews/DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749/respond', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nvar data = {\n    \"name\": \"Mike Harrison, General Manager at Harrison Auto Dealership\",\n    \"comment\": \"Hello! We're thrilled to hear about your experience at Harrison Auto Dealership. Every member of our team strives to ensure our customers drive away satisfied. If you have any further questions about your vehicle or need assistance in the future, please don't hesitate to visit or call us. Safe travels and thank you for choosing us!\",\n    \"privateMsg\": false\n};\nxhr.send(JSON.stringify(data));\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Required. Responder name.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>Required. Response message.</td>\n</tr>\n<tr>\n<td>privateMsg</td>\n<td>boolean</td>\n<td>Optional. Whether the response is private. Defaults to <strong>false</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the responder.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>The response message provided by the responder.</td>\n</tr>\n<tr>\n<td>responseDate</td>\n<td>string</td>\n<td>Datetime in ISO 8601 format, indicating when the response was made.</td>\n</tr>\n<tr>\n<td>privateMsg</td>\n<td>boolean</td>\n<td>Indicates whether the response is private. A value of <strong>true</strong> means the response is private, <strong>false</strong> indicates public.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["reviews",":reviewID","respond"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) The unique identifier for the review you intend to respond to. This is required to ensure the response gets linked to the appropriate review.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"reviewID"}]}},"response":[{"id":"df61b16f-7ef0-4cb6-b902-dc04aaa88f1c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Mike Harrison, General Manager at Harrison Auto Dealership\",\n  \"comment\": \"Hello! We're thrilled to hear about your experience at Harrison Auto Dealership. Every member of our team strives to ensure our customers drive away satisfied. If you have any further questions about your vehicle or need assistance in the future, please don't hesitate to visit or call us. Safe travels and thank you for choosing us!\",\n  \"privateMsg\": false\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.reputation.com/v3/reviews/:reviewID/respond","protocol":"https","host":["api","reputation","com"],"path":["v3","reviews",":reviewID","respond"],"variable":[{"key":"reviewID","value":"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749","description":"(Required) Review id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"471"},{"key":"etag","value":"W/\"1d7-nhQK37jgMGGgn243K9Rhd6/pBMI\""},{"key":"date","value":"Tue, 17 Oct 2023 22:09:20 GMT"},{"key":"x-envoy-upstream-service-time","value":"685"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Mike Harrison, General Manager at Harrison Auto Dealership\",\n    \"comment\": \"Hello! We're thrilled to hear about your experience at Harrison Auto Dealership. Every member of our team strives to ensure our customers drive away satisfied. If you have any further questions about your vehicle or need assistance in the future, please don't hesitate to visit or call us. Safe travels and thank you for choosing us!\",\n    \"responseDate\": \"2023-10-17T15:09:20\",\n    \"privateMsg\": false\n}"}],"_postman_id":"dcc01ca9-c4a9-43ef-8d7d-48e4e5ce95aa"}],"id":"66ed906a-7881-4ad5-9088-52d02132cd6c","_postman_id":"66ed906a-7881-4ad5-9088-52d02132cd6c","description":""},{"name":"/Reviews3","item":[{"name":"Get Reviews3","id":"28d94ac1-7a58-4dff-a34d-a4362ecb87ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":"{{baseUrl}}/reviews3","description":"<p>Retrieves a list of reviews based on various filter criteria. This endpoint allows for a wide range of parameters to narrow down and organize the list of reviews, providing flexibility to retrieve reviews from different time periods, sources, locations, and more.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/reviews3?range=PreviousWeek&amp;offset=0&amp;limit=3', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    // If the request is complete\n    if (xhr.readyState == 4) {\n        // If the request was successful\n        if (xhr.status == 200) {\n            console.log(xhr.responseText);\n        } else {\n            console.error('Request failed with status:', xhr.status);\n        }\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reviews</td>\n<td>-</td>\n<td>object</td>\n<td>Array of reviews.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>reviews</td>\n<td>string</td>\n<td>Unique identifier for the review.</td>\n</tr>\n<tr>\n<td>tenantID</td>\n<td>reviews</td>\n<td>string</td>\n<td>Tenant identifier. Modifiable only when creating a location.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>reviews</td>\n<td>string</td>\n<td>Identifier for the location.</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>reviews</td>\n<td>string</td>\n<td>Identifier for the source.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>reviews</td>\n<td>string</td>\n<td>URL of the review.</td>\n</tr>\n<tr>\n<td>date</td>\n<td>reviews</td>\n<td>string</td>\n<td>Date of the review in ISO 8601 format.</td>\n</tr>\n<tr>\n<td>reviewer</td>\n<td>reviews</td>\n<td>object</td>\n<td>Details of the reviewer.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>reviewer</td>\n<td>string</td>\n<td>Name of the reviewer.</td>\n</tr>\n<tr>\n<td>rating</td>\n<td>reviews</td>\n<td>number</td>\n<td>Rating given by the reviewer on the review site.</td>\n</tr>\n<tr>\n<td>normalizedRating</td>\n<td>reviews</td>\n<td>number</td>\n<td>Rating normalized to a scale of 1.</td>\n</tr>\n<tr>\n<td>sentiment</td>\n<td>reviews</td>\n<td>string</td>\n<td>Review sentiment. Values: Positive, Negative, Neutral, None.</td>\n</tr>\n<tr>\n<td>commentTitle</td>\n<td>reviews</td>\n<td>string</td>\n<td>Title of the review comment.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>reviews</td>\n<td>string</td>\n<td>Body of the review comment.</td>\n</tr>\n<tr>\n<td>published</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if the review is published.</td>\n</tr>\n<tr>\n<td>canRespond</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if a response can be made to the review.</td>\n</tr>\n<tr>\n<td>hasResponses</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if the review already has responses.</td>\n</tr>\n<tr>\n<td>responseUrl</td>\n<td>reviews</td>\n<td>string</td>\n<td>URL for responding to the review. Exists only if a response can be made.</td>\n</tr>\n<tr>\n<td>reviewUrl</td>\n<td>reviews</td>\n<td>string</td>\n<td>URL to read the full review.</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>reviews</td>\n<td>string array</td>\n<td>Categories associated with the review.</td>\n</tr>\n<tr>\n<td>attributions</td>\n<td>reviews</td>\n<td>object array</td>\n<td>User attributions for the review</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>reviews</td>\n<td>boolean</td>\n<td>Indicates if the review has been updated.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Paging</td>\n<td>Pagination details.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer</td>\n<td>The starting point of the page based on the offset value.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer</td>\n<td>Maximum number of objects returned. Can be fewer due to filtering.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint returning the previous page of data. Absent if this is the first page.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint returning the next page of data. Absent if this is the last page.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["reviews3"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specifies the starting date for the review search. The date should be in ISO 8601 format.</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies the ending date for the review search. The date should be in ISO 8601 format.</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specifies a predefined date range for retrieving reviews. Valid Values:\n\"Today\", \"Yesterday\", \"ThisWeek\", \"PreviousWeek\", \"ThisMonth\", \"PreviousMonth\", \"ThisQuarter\", \"PreviousQuarter\", \"ThisYear\", \"PreviousYear\", \"YearToDate\", \"LifeToDate\", \"Last7Days\", \"Last30Days\", \"Last60Days\", \"Last90Days\", \"Last6Months\", \"Last1Year\", \"Last2Years\", \"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of source IDs to filter the reviews by.</p>\n","type":"text/plain"},"key":"sourceID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of location IDs to filter the reviews by.</p>\n","type":"text/plain"},"key":"locationID","value":"<string>"},{"disabled":true,"description":{"content":"<p>Offsets the start of each page by the number specified, useful for pagination. Maximum offset value is 100,000.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Determines the maximum number of review objects that may be returned in the response. The actual number of returned reviews may be less than this value due to filtering. The default value is 20, and the maximum allowed limit is 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Specifies the fields by which the results should be sorted. Multiple fields can be separated by commas, and the sort order for each field is designated by appending the field name with a colon and the order (ASC or DESC).\nExample: \"date:ASC\"</p>\n","type":"text/plain"},"key":"sort","value":"<string>"}],"variable":[]}},"response":[{"id":"8fde5b95-d2af-4253-abd7-e253d5a63cd8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/reviews3?range=PreviousWeek&offset=0&limit=3","protocol":"https","host":["api","reputation","com"],"path":["v3","reviews3"],"query":[{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek"},{"key":"sourceID","value":"FACEBOOK","disabled":true},{"key":"locationID","value":"SA","disabled":true},{"key":"offset","value":"0"},{"key":"limit","value":"3"},{"key":"sort","value":"dolor ut","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"3483"},{"key":"etag","value":"W/\"d9b-37bff5zhv8ol8VXVq6i9eSur2XI\""},{"key":"date","value":"Mon, 16 Oct 2023 11:30:50 GMT"},{"key":"x-envoy-upstream-service-time","value":"579"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"reviews\": [\n        {\n            \"id\": \"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749\",\n            \"tenantID\": \"TXR123\",\n            \"locationID\": \"WF\",\n            \"locationName\": \"AutoNation Toyota Spokane Valley\",\n            \"sourceID\": \"DEALER_RATER\",\n            \"url\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/\",\n            \"date\": \"2023-10-14T00:00:00\",\n            \"reviewer\": {\n                \"name\": \"aemami\"\n            },\n            \"rating\": 1,\n            \"normalizedRating\": 0.2,\n            \"sentiment\": \"Negative\",\n            \"commentTitle\": \"Disappointed with the Appointment Process\",\n            \"comment\": \"I scheduled an appointment to buy the car. However, shortly before my visit, they informed me that someone else had reserved the car. It felt like they used my interest to pressure someone else to purchase. Very unprofessional. I won't be returning.\",\n            \"published\": false,\n            \"canRespond\": true,\n            \"hasResponses\": false,\n            \"responseUrl\": null,\n            \"reviewUrl\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/#link\",\n            \"categories\": [\n                \"Customer Service\",\n                \"Sales\",\n                \"Salesperson\"\n            ],\n            \"attributions\": [\n                {\n                    \"type\": \"Manual\",\n                    \"user_id\": \"123456789\",\n                    \"visible\": true\n                }\n            ],\n            \"updated\": false\n        },\n        {\n            \"id\": \"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11333510\",\n            \"tenantID\": \"TXR124\",\n            \"locationID\": \"WF\",\n            \"locationName\": \"AutoNation Toyota Spokane Valley\",\n            \"sourceID\": \"DEALER_RATER\",\n            \"url\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/\",\n            \"date\": \"2023-10-14T00:00:00\",\n            \"reviewer\": {\n                \"name\": \"Craigf68\"\n            },\n            \"rating\": 5,\n            \"normalizedRating\": 1,\n            \"sentiment\": \"Positive\",\n            \"commentTitle\": \"Exceptional Salesperson Experience\",\n            \"comment\": \"Our experience was highlighted by our salesperson, Sawyer. He was knowledgeable, sincere, and truly looked out for our best interests. He made the car buying process smooth and memorable. I highly recommend them.\",\n            \"published\": false,\n            \"canRespond\": true,\n            \"hasResponses\": false,\n            \"responseUrl\": null,\n            \"reviewUrl\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/#link\",\n            \"categories\": [\n                \"Customer Service\",\n                \"Sales\",\n                \"Salesperson\"\n            ],\n            \"attributions\": null,\n            \"updated\": false\n        },\n        {\n            \"id\": \"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11333362\",\n            \"tenantID\": \"TXR125\",\n            \"locationID\": \"WF\",\n            \"locationName\": \"AutoNation Toyota Spokane Valley\",\n            \"sourceID\": \"DEALER_RATER\",\n            \"url\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/\",\n            \"date\": \"2023-10-14T00:00:00\",\n            \"reviewer\": {\n                \"name\": \"Debbiedooda\"\n            },\n            \"rating\": 5,\n            \"normalizedRating\": 1,\n            \"sentiment\": \"Positive\",\n            \"commentTitle\": \"Efficient and Transparent Service\",\n            \"comment\": \"Adam was our point of contact and he kept us in the loop throughout the entire process. His professionalism and straightforward approach made our transaction very smooth. Highly satisfied.\",\n            \"published\": false,\n            \"canRespond\": true,\n            \"hasResponses\": false,\n            \"responseUrl\": null,\n            \"reviewUrl\": \"http://www.dealerrater.com/dealer/AutoNation-Toyota-Spokane-Valley-Service-Center-review-875/#link\",\n            \"categories\": [\n                \"Customer Service\",\n                \"Sales\",\n                \"Salesperson\"\n            ],\n            \"attributions\": null,\n            \"updated\": false\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 3,\n        \"next\": \"https://api.reputation.com/v3/reviews?offset=3&limit=3&range=PreviousWeek\"\n    },\n    \"dateRange\": {\n        \"range\": \"PreviousWeek\",\n        \"from\": \"2023-10-08T00:00:00\",\n        \"to\": \"2023-10-14T23:59:59\"\n    }\n}\n"}],"_postman_id":"28d94ac1-7a58-4dff-a34d-a4362ecb87ed"},{"name":"Get Reviews3 Responses","id":"51ec178d-7979-4ea2-bfab-25b9c80b113b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/reviews3/:reviewID/responses","description":"<p>This endpoint retrieves responses associated with a specific review from the Reputation.com API. Each review in the system has a unique identifier known as a <strong>reviewID</strong>. By providing this ID in the endpoint, you can fetch the associated responses given to that review, whether they are public comments or private messages. The data returned includes the name of the responder, their comment, the type of response (public or private), and the date of the response.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/reviews3/DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749/responses?offset=0&amp;limit=25', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>The following is a table describing the data returned by this endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Parent</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>responses</td>\n<td>-</td>\n<td>Object</td>\n<td>Responses related to a particular review.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>responses</td>\n<td>string</td>\n<td>Name of the individual or entity who responded.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>responses</td>\n<td>string</td>\n<td>Message or comment given as a response to a review.</td>\n</tr>\n<tr>\n<td>responseDate</td>\n<td>responses</td>\n<td>string</td>\n<td>The date and time when the response was made, formatted in ISO 8601 standard.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Object</td>\n<td>Provides pagination details for the list of responses.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer</td>\n<td>Specifies the starting point from which the results are displayed.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer</td>\n<td>The maximum number of response objects that can be returned. It may return fewer due to filtering or limited data.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint that will return the previous page of data. Not included if it's the first page.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>API endpoint that will return the next page of data. Not included if it's the last page.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["reviews3",":reviewID","responses"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Offsets the start of each page by the number specified, useful for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Determines the maximum number of review objects that may be returned in the response.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"disabled":true,"key":"","value":""},{"disabled":true,"key":"","value":""}],"variable":[{"description":{"content":"<p>(Required) A unique identifier for each review in the system. It serves as a reference to fetch specific review details or associated responses.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"reviewID"}]}},"response":[{"id":"667439f5-c372-4a62-b49a-10222b1c71d8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Mike Harrison, General Manager at Harrison Auto Dealership\",\n  \"comment\": \"Hello! We're thrilled to hear about your experience at Harrison Auto Dealership. Every member of our team strives to ensure our customers drive away satisfied. If you have any further questions about your vehicle or need assistance in the future, please don't hesitate to visit or call us. Safe travels and thank you for choosing us!\"\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.reputation.com/v3/reviews3/:reviewID/respond","protocol":"https","host":["api","reputation","com"],"path":["v3","reviews3",":reviewID","respond"],"variable":[{"key":"reviewID","value":"DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749","description":"(Required) Review id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"471"},{"key":"etag","value":"W/\"1d7-nhQK37jgMGGgn243K9Rhd6/pBMI\""},{"key":"date","value":"Tue, 17 Oct 2023 22:09:20 GMT"},{"key":"x-envoy-upstream-service-time","value":"685"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Mike Harrison, General Manager at Harrison Auto Dealership\",\n    \"comment\": \"Hello! We're thrilled to hear about your experience at Harrison Auto Dealership. Every member of our team strives to ensure our customers drive away satisfied. If you have any further questions about your vehicle or need assistance in the future, please don't hesitate to visit or call us. Safe travels and thank you for choosing us!\",\n    \"responseDate\": \"2023-10-17T15:09:20\"\n}"}],"_postman_id":"51ec178d-7979-4ea2-bfab-25b9c80b113b"},{"name":"Respond to Review","id":"652c8938-50ed-4eed-8285-dce221a03c7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"x-api-key","value":"<your api key>","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"comment\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/reviews3/:reviewID/respond","description":"<p>This endpoint allows you to respond to a specific review on the Reputation platform. By specifying the review's unique identifier <strong>reviewID</strong> in the path parameter, you can craft and send a response directly to that review. This is particularly useful for businesses looking to engage with their customers by addressing their reviews, whether they're positive, negative, or neutral.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('POST', 'https://api.reputation.com/v3/reviews3/DEALER_RATER.TmWnT_Usk12NtV4Axr2rMA.11331749/respond', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nvar data = {\n    \"name\": \"Mike Harrison, General Manager at Harrison Auto Dealership\",\n    \"comment\": \"Hello! We're thrilled to hear about your experience at Harrison Auto Dealership. Every member of our team strives to ensure our customers drive away satisfied. If you have any further questions about your vehicle or need assistance in the future, please don't hesitate to visit or call us. Safe travels and thank you for choosing us!\",\n};\nxhr.send(JSON.stringify(data));\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Required. Responder name.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>Required. Response message.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the responder.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>The response message provided by the responder.</td>\n</tr>\n<tr>\n<td>responseDate</td>\n<td>string</td>\n<td>Datetime in ISO 8601 format, indicating when the response was made.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["reviews3",":reviewID","respond"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) The unique identifier for the review you intend to respond to. This is required to ensure the response gets linked to the appropriate review.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"reviewID"}]}},"response":[{"id":"d06fc954-06dd-4766-ac2b-b176803c164f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"x-api-key","value":"<your api key>","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"comment\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/reviews3/:reviewID/respond","host":["{{baseUrl}}"],"path":["reviews3",":reviewID","respond"],"variable":[{"key":"reviewID","value":"<string>","description":"(Required) The unique identifier for the review you intend to respond to. This is required to ensure the response gets linked to the appropriate review."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Mike Harrison, General Manager at Harrison Auto Dealership\",\n    \"comment\": \"Hello! We're thrilled to hear about your experience at Harrison Auto Dealership. Every member of our team strives to ensure our customers drive away satisfied. If you have any further questions about your vehicle or need assistance in the future, please don't hesitate to visit or call us. Safe travels and thank you for choosing us!\",\n    \"responseDate\": \"2023-10-17T15:09:20z\",\n}"}],"_postman_id":"652c8938-50ed-4eed-8285-dce221a03c7d"}],"id":"46999f6a-d5c4-4053-a91e-225016d40eae","_postman_id":"46999f6a-d5c4-4053-a91e-225016d40eae","description":""},{"name":"/Rich-Content","item":[{"name":"Get FAQs","id":"ab23176c-af89-42f2-a13e-5a7ef2e697e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":"{{baseUrl}}/rich-content/faqs","description":"<p>This endpoint retrieves a list of FAQs (Frequently Asked Questions) associated with specific locations. The FAQ content can be filtered based on location IDs and/or source IDs. The returned data provides comprehensive details about each FAQ, including the FAQ's unique identifier, display name, associated business location, publishing source, and detailed FAQ content organized into sections.</p>\n<p><strong>Sample Use Case:</strong></p>\n<p>If you have an organization with multiple business locations, you can use this endpoint to fetch FAQs associated with your selected locations from specified sources like GOOGLE_PLACES. This ensures you provide relevant and up-to-date information to your customers.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/rich-content/faqs?locationIDs=STORE_3729,STORE_4852,STORE_7391&amp;sourceIDs=GOOGLE_PLACES', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>-</td>\n<td>string</td>\n<td>Unique identifier of the FAQ object</td>\n</tr>\n<tr>\n<td>name</td>\n<td>-</td>\n<td>string</td>\n<td>The public name of the FAQ displayed on various websites</td>\n</tr>\n<tr>\n<td>url</td>\n<td>-</td>\n<td>string</td>\n<td>Source URL of the FAQ, if one exists</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the business location associated with the FAQ</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the source or website where the FAQ will be published, e.g., GOOGLE_PLACES</td>\n</tr>\n<tr>\n<td>sections</td>\n<td>-</td>\n<td>object</td>\n<td>A list of FAQ sections. Each section can have one or multiple FAQ items</td>\n</tr>\n<tr>\n<td>name</td>\n<td>sections</td>\n<td>string</td>\n<td>Name of the FAQ section</td>\n</tr>\n<tr>\n<td>faqItems</td>\n<td>sections</td>\n<td>object</td>\n<td>List of FAQ items within the section</td>\n</tr>\n<tr>\n<td>ID</td>\n<td>faqItems</td>\n<td>string</td>\n<td>Unique Identifier of the FAQ item</td>\n</tr>\n<tr>\n<td>name</td>\n<td>faqItems</td>\n<td>string</td>\n<td>Name of the FAQ</td>\n</tr>\n<tr>\n<td>url</td>\n<td>faqItems</td>\n<td>string</td>\n<td>URL or link of the FAQ, if one exists</td>\n</tr>\n<tr>\n<td>questionsAnswers</td>\n<td>faqItems</td>\n<td>object</td>\n<td>List of question-answer pairs associated with the FAQ item</td>\n</tr>\n<tr>\n<td>question</td>\n<td>questionsAnswers</td>\n<td>object</td>\n<td>Object representing the question</td>\n</tr>\n<tr>\n<td>text</td>\n<td>question</td>\n<td>string</td>\n<td>Text content of the question</td>\n</tr>\n<tr>\n<td>answer</td>\n<td>questionsAnswers</td>\n<td>object</td>\n<td>Object representing the answer</td>\n</tr>\n<tr>\n<td>text</td>\n<td>answer</td>\n<td>string</td>\n<td>Text content of the answer</td>\n</tr>\n<tr>\n<td>languageCode</td>\n<td>questionsAnswers</td>\n<td>string</td>\n<td>Language code of the FAQ content, e.g., \"eng\" for English</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>faqItems</td>\n<td>string</td>\n<td>Creation datetime of the FAQ item</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>faqItems</td>\n<td>string</td>\n<td>Latest update datetime of the FAQ item, updated whenever the FAQ item is modified</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["rich-content","faqs"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of location IDs. This will be the list of locations for which you want to retrieve the FAQs</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of source IDs. This will be the list of sources and publishers for which you want to retrieve the FAQs</p>\n","type":"text/plain"},"key":"sourceIDs","value":"<string array>"}],"variable":[]}},"response":[{"id":"81b1d97b-8a80-4453-8e43-03dea9a01e86","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/rich-content/faqs?locationIDs=STORE_3729,STORE_4852,STORE_7391&sourceIDs=GOOGLE_PLACES","protocol":"https","host":["api","reputation","com"],"path":["v3","rich-content","faqs"],"query":[{"key":"locationIDs","value":"STORE_3729,STORE_4852,STORE_7391"},{"key":"sourceIDs","value":"GOOGLE_PLACES"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3505"},{"key":"etag","value":"W/\"db1-I+hm3kXv//cA1xbAKavCF3CZFTY\""},{"key":"date","value":"Tue, 17 Oct 2023 22:34:54 GMT"},{"key":"x-envoy-upstream-service-time","value":"90"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"60261049d043f800069d13e7_GOOGLE_PLACES_737493\",\n        \"name\": \"FAQ for Location STORE_3729\",\n        \"url\": null,\n        \"locationID\": \"STORE_3729\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"sections\": []\n    },\n    {\n        \"id\": \"60261049d043f800069d13e7_GOOGLE_PLACES_737487\",\n        \"name\": \"General Product Care FAQ\",\n        \"url\": \"https://example.com/faq/general-product-care\",\n        \"locationID\": \"STORE_4852\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"sections\": [\n            {\n                \"name\": \"Electronics Care\",\n                \"faqItems\": [\n                    {\n                        \"id\": \"619e13d694b8580836434f5a\",\n                        \"name\": \"How do I clean my electronic devices?\",\n                        \"url\": null,\n                        \"questionsAnswers\": [\n                            {\n                                \"question\": {\n                                    \"text\": \"How do I clean my electronic devices?\"\n                                },\n                                \"answer\": {\n                                    \"text\": \"Use a soft, slightly damp, lint-free cloth. Avoid getting moisture in any openings and don't use aerosol sprays, solvents, or abrasives.\"\n                                },\n                                \"languageCode\": \"eng\"\n                            }\n                        ],\n                        \"createdDate\": \"2021-11-24T02:28:38\",\n                        \"updatedDate\": \"2021-11-24T02:28:38\"\n                    }\n                ]\n            }\n        ]\n    },\n    {\n        \"id\": \"60261049d043f800069d13e7_GOOGLE_PLACES_737495\",\n        \"name\": \"FAQ for Location STORE_7391\",\n        \"url\": null,\n        \"locationID\": \"STORE_7391\",\n        \"sourceID\": \"GOOGLE_PLACES\",\n        \"sections\": []\n    }\n]\n"}],"_postman_id":"ab23176c-af89-42f2-a13e-5a7ef2e697e1"},{"name":"Get FAQ","id":"e9ec6ae0-68b2-43a1-8c29-a2941bd6a7b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/rich-content/faqs/:faqId","description":"<p>Access the detailed information of a specific FAQ using its unique identifier with this endpoint. It provides comprehensive data about the FAQ, including multiple sections which themselves may contain multiple items, allowing businesses to understand and manage their FAQs in depth.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\n\nxhr.open('GET', 'https://api.reputation.com/v3/rich-content/faqs/60261049d043f800069d13e7_GOOGLE_PLACES_737489', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\n\nxhr.onreadystatechange = function() {\n\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    var response = JSON.parse(xhr.responseText);\n    console.log(response);\n  }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-paramters\">Response Paramters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>-</td>\n<td>String</td>\n<td>The unique identifier for the FAQ.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>-</td>\n<td>String</td>\n<td>The name/title of the FAQ.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>-</td>\n<td>String</td>\n<td>The URL that points to the FAQ page.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>String</td>\n<td>The identifier for the business location associated with the FAQ.</td>\n</tr>\n<tr>\n<td>sourceID</td>\n<td>-</td>\n<td>String</td>\n<td>The source from which the FAQ was fetched (e.g., GOOGLE_PLACES).</td>\n</tr>\n<tr>\n<td>sections</td>\n<td>-</td>\n<td>Array</td>\n<td>An array of sections that the FAQ is divided into.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>sections</td>\n<td>String</td>\n<td>The name/title of the section.</td>\n</tr>\n<tr>\n<td>faqItems</td>\n<td>sections</td>\n<td>Array</td>\n<td>An array of FAQ items that belong to a specific section.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>faqItems</td>\n<td>String</td>\n<td>The unique identifier for the FAQ item.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>faqItems</td>\n<td>String</td>\n<td>The name/title of the FAQ item.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>faqItems</td>\n<td>String</td>\n<td>The URL that points to the FAQ item page.</td>\n</tr>\n<tr>\n<td>questionsAnswers</td>\n<td>faqItems</td>\n<td>Array</td>\n<td>An array containing pairs of questions and their answers.</td>\n</tr>\n<tr>\n<td>question</td>\n<td>questionsAnswers</td>\n<td>Object</td>\n<td>The object containing text of the question.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>question</td>\n<td>String</td>\n<td>The actual text of the question.</td>\n</tr>\n<tr>\n<td>answer</td>\n<td>questionsAnswers</td>\n<td>Object</td>\n<td>The object containing text of the answer.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>answer</td>\n<td>String</td>\n<td>The actual text of the answer.</td>\n</tr>\n<tr>\n<td>languageCode</td>\n<td>questionsAnswers</td>\n<td>String</td>\n<td>The language code in which the question and answer are written.</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>faqItems</td>\n<td>String</td>\n<td>The date and time when the FAQ item was created.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>faqItems</td>\n<td>String</td>\n<td>The date and time when the FAQ item was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["rich-content","faqs",":faqId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) A unique identifier representing the specific FAQ you want to retrieve. This ID ensures you get precise details about the desired FAQ amongst potentially many stored in the database. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"faqId"}]}},"response":[{"id":"5b89abb6-8462-4000-b14a-775e8e1a9f4c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/rich-content/faqs/:faqId","protocol":"https","host":["api","reputation","com"],"path":["v3","rich-content","faqs",":faqId"],"variable":[{"key":"faqId","value":"60261049d043f800069d13e7_GOOGLE_PLACES_737489"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"60261049d043f800069d13e7_GOOGLE_PLACES_737489\",\n    \"name\": \"Warranty FAQ\",\n    \"url\": \"https://harrisonautodealership.com/faqs/warranty\",\n    \"locationID\": \"STORE_4852\",\n    \"sourceID\": \"GOOGLE_PLACES\",\n    \"sections\": [\n        {\n            \"name\": \"Basic Warranty\",\n            \"faqItems\": [\n                {\n                    \"id\": \"619e13d694b8580836434f5a\",\n                    \"name\": \"What does the basic warranty cover?\",\n                    \"url\": \"https://harrisonautodealership.com/faqs/warranty/basic\",\n                    \"questionsAnswers\": [\n                        {\n                            \"question\": {\n                                \"text\": \"How long does the basic warranty last?\"\n                            },\n                            \"answer\": {\n                                \"text\": \"The basic warranty covers the first three years or 36,000 miles, whichever comes first.\"\n                            },\n                            \"languageCode\": \"eng\"\n                        }\n                    ],\n                    \"createdDate\": \"2022-01-24T02:28:38\",\n                    \"updatedDate\": \"2022-05-15T12:29:42\"\n                },\n                {\n                    \"id\": \"619e141675b37d1497058727\",\n                    \"name\": \"Transferability of basic warranty\",\n                    \"url\": \"https://harrisonautodealership.com/faqs/warranty/transfer\",\n                    \"questionsAnswers\": [\n                        {\n                            \"question\": {\n                                \"text\": \"Can I transfer my warranty to another person?\"\n                            },\n                            \"answer\": {\n                                \"text\": \"Yes, our basic warranty is fully transferable to a subsequent owner.\"\n                            },\n                            \"languageCode\": \"eng\"\n                        }\n                    ],\n                    \"createdDate\": \"2022-01-24T02:29:42\",\n                    \"updatedDate\": \"2022-04-14T12:30:16\"\n                }\n            ]\n        },\n        {\n            \"name\": \"Extended Warranty\",\n            \"faqItems\": [\n                {\n                    \"id\": \"619e143894b8580836434f5b\",\n                    \"name\": \"Benefits of extended warranty\",\n                    \"url\": \"https://harrisonautodealership.com/faqs/warranty/extended\",\n                    \"questionsAnswers\": [\n                        {\n                            \"question\": {\n                                \"text\": \"Why should I consider an extended warranty?\"\n                            },\n                            \"answer\": {\n                                \"text\": \"An extended warranty offers peace of mind by covering potential costly repairs beyond the basic warranty period. It also includes added benefits like roadside assistance.\"\n                            },\n                            \"languageCode\": \"eng\"\n                        }\n                    ],\n                    \"createdDate\": \"2022-02-20T02:30:16\",\n                    \"updatedDate\": \"2022-06-10T14:30:20\"\n                }\n            ]\n        }\n    ]\n}\n"}],"_postman_id":"e9ec6ae0-68b2-43a1-8c29-a2941bd6a7b9"},{"name":"Get Menus","id":"99ec4b2e-be2d-4729-90f1-7b91764b0bf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/rich-content/menus","description":"<p>Retrieves the list of food menus associated with one or several business locations. The response can range from an empty array to an array with multiple menus, depending on the available menus for the specified locations.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/rich-content/menus?locationIDs=REST_5678,REST_8901\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\n\nxhr.onreadystatechange = function() {\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n    var response = JSON.parse(xhr.responseText);\n    console.log(response);\n  }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>-</td>\n<td>string</td>\n<td>The public name of the menu displayed across various platforms (e.g., \"Lunch Menu\" or \"Christmas Menu\").</td>\n</tr>\n<tr>\n<td>url</td>\n<td>-</td>\n<td>string</td>\n<td>Source URL directing to the detailed menu, if available.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>string</td>\n<td>The ID of the business location that the menu is associated with.</td>\n</tr>\n<tr>\n<td>sourceIDs</td>\n<td>-</td>\n<td>string</td>\n<td>A comma-separated list of sources indicating where the menu is published, such as GOOGLE_PLACES.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>sections</td>\n<td>string</td>\n<td>Name of the menu section. Menus can have multiple sections like \"appetizers,\" \"entrees,\" and \"desserts.\"</td>\n</tr>\n<tr>\n<td>name</td>\n<td>menuItems</td>\n<td>string</td>\n<td>Public name of the dish or menu item as displayed on various platforms.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>menuItems</td>\n<td>string</td>\n<td>Detailed description of the dish or menu item, highlighting special aspects, ingredients, cooking methods, or its history.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>price</td>\n<td>string</td>\n<td>Represents the currency in which the price is given (e.g., \"USD\").</td>\n</tr>\n<tr>\n<td>units</td>\n<td>price</td>\n<td>number</td>\n<td>Numeric value indicating the actual price of the menu item.</td>\n</tr>\n<tr>\n<td>diet</td>\n<td>menuItems</td>\n<td>string</td>\n<td>Dietary restrictions related to the dish, provided as a comma-separated list, Valid values: \"Unspecified\" \"Halal\" \"Kosher\" \"Organic\" \"Vegan\" \"Vegetarian\"</td>\n</tr>\n<tr>\n<td>ingredients</td>\n<td>menuItems</td>\n<td>string</td>\n<td>A comma-separated list highlighting the main ingredients used in the dish.</td>\n</tr>\n<tr>\n<td>cuisine</td>\n<td>menuItems</td>\n<td>string</td>\n<td>Specifies the dish's culinary style or region of origin, - Valid values: \"Unspecified\" \"American\" \"Asian\" \"Brazilian\" \"Breakfast\" \"Brunch\" \"Chicken\" \"Chinese\" \"FamilyStyleCuisine\" \"FastFood\" \"French\" \"Greek\" \"German\" \"Hamburger\" \"Indian\" \"Indonesian\" \"Italian\"\"Japanese\"\"Korean\" \"LatinAmerican\" \"Mediterranean\" \"Mexican\" \"Pakistani\" \"Pizza\" \"SeaFood\" \"Spanish\" \"Sushi\" \"Thai\" \"Turkish\" \"Vegetarian\" \"Vietnamese\" \"Other\"</td>\n</tr>\n<tr>\n<td>allergens</td>\n<td>menuItems</td>\n<td>string</td>\n<td>List of potential allergens present in the dish, provided as a comma-separated list, valid values: \"Unspecified\" \"Dairy\" \"Egg\" \"Fish\" \"Peanut\" \"Shellfish\" \"Soy\" \"TreeNut\" \"Wheat\"</td>\n</tr>\n<tr>\n<td>spiciness</td>\n<td>menuItems</td>\n<td>string</td>\n<td>Indicates the dish's spice level - valid values: \"Unspecified\" \"Mild\" \"Medium\" \"Hot\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["rich-content","menus"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>A comma-separated string of location ids. This parameter allows filtering by location(s) to retrieve the associated menus.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"}],"variable":[{"type":"any","value":"346345","key":"locationIDs"}]}},"response":[{"id":"5a8bc6de-f383-4777-95cc-4f0ece33bdb8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/rich-content/menus?locationIDs=REST_5678,REST_8901","protocol":"https","host":["api","reputation","com"],"path":["v3","rich-content","menus"],"query":[{"key":"locationIDs","value":"REST_5678,REST_8901"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"Lunch Menu\",\n    \"url\": \"https://restaurantexample.com/lunch-menu\",\n    \"locationID\": \"REST_5678\",\n    \"sourceIDs\": \"GOOGLE_PLACES,YELP\",\n    \"sections\": [\n      {\n        \"name\": \"Appetizers\",\n        \"menuItems\": [\n          {\n            \"name\": \"Bruschetta\",\n            \"description\": \"Toasted bread topped with fresh tomatoes, garlic, basil, and a drizzle of olive oil.\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 6.99\n            },\n            \"diet\": \"Vegetarian\",\n            \"ingredients\": \"Bread, Tomatoes, Garlic, Basil, Olive Oil\",\n            \"cuisine\": \"Italian\",\n            \"allergens\": \"Wheat\",\n            \"spiciness\": \"Mild\"\n          },\n          {\n            \"name\": \"Chicken Wings\",\n            \"description\": \"Crispy chicken wings served with a side of blue cheese dressing.\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 8.99\n            },\n            \"diet\": \"Unspecified\",\n            \"ingredients\": \"Chicken, Blue Cheese, Hot Sauce\",\n            \"cuisine\": \"American\",\n            \"allergens\": \"Dairy\",\n            \"spiciness\": \"Medium\"\n          }\n        ]\n      },\n      {\n        \"name\": \"Entrees\",\n        \"menuItems\": [\n          {\n            \"name\": \"Spaghetti Carbonara\",\n            \"description\": \"Classic Italian pasta dish made with eggs, cheese, pancetta, and pepper.\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 13.99\n            },\n            \"diet\": \"Unspecified\",\n            \"ingredients\": \"Spaghetti, Eggs, Pancetta, Parmesan Cheese, Black Pepper\",\n            \"cuisine\": \"Italian\",\n            \"allergens\": \"Egg, Wheat, Dairy\",\n            \"spiciness\": \"Mild\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"name\": \"Brunch Menu\",\n    \"url\": \"https://restaurantexample.com/brunch-menu\",\n    \"locationID\": \"REST_8901\",\n    \"sourceIDs\": \"GOOGLE_PLACES\",\n    \"sections\": [\n      {\n        \"name\": \"Eggs & More\",\n        \"menuItems\": [\n          {\n            \"name\": \"Classic Benedict\",\n            \"description\": \"English muffin, Canadian bacon, poached eggs, and hollandaise sauce.\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 10.99\n            },\n            \"diet\": \"Unspecified\",\n            \"ingredients\": \"English muffin, Canadian bacon, Eggs, Hollandaise sauce\",\n            \"cuisine\": \"Breakfast\",\n            \"allergens\": \"Egg, Wheat\",\n            \"spiciness\": \"Mild\"\n          }\n        ]\n      }\n    ]\n  }\n]\n"}],"_postman_id":"99ec4b2e-be2d-4729-90f1-7b91764b0bf2"},{"name":"Get Products","id":"f983e181-13d8-4384-8a0b-e2076b114fb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":"{{baseUrl}}/rich-content/products","description":"<p>This endpoint allows users to retrieve a list of products associated with business locations. While it's optional, users can provide one or multiple location IDs to narrow down the results, fetching an array of products that may range from none to several entries.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/rich-content/products?locationIDs=STORE_1209,STORE_5812', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>-</td>\n<td>string</td>\n<td>The public name of the product as displayed on various websites.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>-</td>\n<td>string</td>\n<td>Source URL of the product, if applicable.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the business location linked with the product.</td>\n</tr>\n<tr>\n<td>sourceIDs</td>\n<td>-</td>\n<td>string</td>\n<td>Comma-separated list of websites where the product will be published, such as GOOGLE_PLACES.</td>\n</tr>\n<tr>\n<td>sections</td>\n<td>-</td>\n<td>object</td>\n<td>List of product sections, organizing the product assortment.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>sections</td>\n<td>string</td>\n<td>Name of the product section. Used for better organization and display.</td>\n</tr>\n<tr>\n<td>productItems</td>\n<td>sections</td>\n<td>object</td>\n<td>List of individual products or items within a given section.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>productItems</td>\n<td>string</td>\n<td>Name of the product or item, as it will appear on platforms like Google and other websites.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>productItems</td>\n<td>object</td>\n<td>Price object containing <code>currencyCode</code> and <code>units</code> for the product item.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td>price</td>\n<td>string</td>\n<td>The currency code representing the type of currency (e.g., USD, EUR).</td>\n</tr>\n<tr>\n<td>units</td>\n<td>price</td>\n<td>long</td>\n<td>Numeric value representing the cost of the product.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>productItems</td>\n<td>string</td>\n<td>Detailed description of the product, offering insights and specifics, displayed on platforms like Google and associated websites.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["rich-content","products"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>A parameter comprising comma-separated location IDs, determining the business locations for which product details should be fetched.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"}],"variable":[{"type":"any","value":"346345","key":"locationIDs"}]}},"response":[{"id":"c2ce7947-4033-4af9-877c-03ced83b2d13","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/rich-content/products?locationIDs=STORE_1209,STORE_5812","protocol":"https","host":["api","reputation","com"],"path":["v3","rich-content","products"],"query":[{"key":"locationIDs","value":"STORE_1209,STORE_5812"}],"variable":[{"key":"locationIDs","value":"346345","description":"(Required) Comma separated location ids to filter by. This will be the list of locations for which we want to retrieve the products"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"Electronics\",\n    \"url\": \"https://store-1209.example.com/electronics\",\n    \"locationID\": \"STORE_1209\",\n    \"sourceIDs\": \"GOOGLE_PLACES,STORE_WEBSITE\",\n    \"sections\": [\n      {\n        \"name\": \"Laptops\",\n        \"productItems\": [\n          {\n            \"name\": \"ProBook 450\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 799\n            },\n            \"description\": \"15.6-inch laptop with Intel i5, 8GB RAM, and 256GB SSD.\"\n          },\n          {\n            \"name\": \"Inspiron 15\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 649\n            },\n            \"description\": \"15-inch laptop with Intel i3, 4GB RAM, and 128GB SSD.\"\n          }\n        ]\n      },\n      {\n        \"name\": \"Mobile Phones\",\n        \"productItems\": [\n          {\n            \"name\": \"Galaxy S21\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 999\n            },\n            \"description\": \"Latest Samsung flagship with 6.2-inch display and triple rear cameras.\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"name\": \"Fashion\",\n    \"url\": \"https://store-5812.example.com/fashion\",\n    \"locationID\": \"STORE_5812\",\n    \"sourceIDs\": \"GOOGLE_PLACES,STORE_WEBSITE\",\n    \"sections\": [\n      {\n        \"name\": \"Men's Clothing\",\n        \"productItems\": [\n          {\n            \"name\": \"Slim Fit Jeans\",\n            \"price\": {\n              \"currencyCode\": \"USD\",\n              \"units\": 59\n            },\n            \"description\": \"Comfortable and stylish denim jeans with a slim fit design.\"\n          }\n        ]\n      }\n    ]\n  }\n]\n"}],"_postman_id":"f983e181-13d8-4384-8a0b-e2076b114fb2"}],"id":"5d9f113d-5cc0-4d7f-8691-e483517b46d7","description":"<p>The <strong>Rich-Content</strong> collection provides APIs to access detailed business-related content, such as FAQs, menus, and products. Tailored for businesses needing to manage and display information across platforms, it ensures customers receive accurate and up-to-date details for various services and products.</p>\n","_postman_id":"5d9f113d-5cc0-4d7f-8691-e483517b46d7"},{"name":"/Summary","item":[{"name":"Get Summary","id":"7cc67e3a-dd59-4388-9c84-775ee49955a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/summary","description":"<p>This endpoint provides a comprehensive summary of reviews and associated metrics for your business. You can filter results by specific date ranges, locations, and group the summary by overall metrics, location, or source. The provided metrics include review count by sentiment, average ratings, reputation score, and various score signals detailing aspects like review recency, review distribution across platforms, and social engagement, and more.</p>\n<h2 id=\"samples\">Samples</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/summary', true);\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h4 id=\"javascript-xhr-request-with-optional-parameter\">JavaScript XHR Request with Optional Parameter</h4>\n<p>The following is a request including the <strong>groupBy</strong> query param.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open('GET', 'https://api.reputation.com/v3/summary?groupBy=Location', true);\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.onreadystatechange = function() {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        var response = JSON.parse(xhr.responseText);\n        console.log(response);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h4 id=\"groupby-location-response\">groupBy Location Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"summary\": {\n        \"locations\": [\n            {\n                \"id\": \"LOC_001_Waterbury\",\n                \"name\": \"AAA Waterbury\",\n                \"count\": 474,\n                \"sentimentCount\": {\n                    \"positive\": 322,\n                    \"neutral\": 37,\n                    \"negative\": 67\n                },\n                \"rating\": 4.1,\n                \"responseCount\": 92\n            },\n            {\n                \"id\": \"LOC_002_Archstone\",\n                \"name\": \"AG-Archstone-Ballston-Square\",\n                \"count\": 61,\n                \"sentimentCount\": {\n                    \"positive\": 29,\n                    \"neutral\": 5,\n                    \"negative\": 14\n                },\n                \"rating\": 3.5,\n                \"responseCount\": 2\n            }\n        ]\n    }\n}\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Descriptions of data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>summary</td>\n<td>-</td>\n<td>object</td>\n<td>Overall summary</td>\n</tr>\n<tr>\n<td>overall</td>\n<td>summary</td>\n<td>object</td>\n<td>Comprehensive summary</td>\n</tr>\n<tr>\n<td>count</td>\n<td>overall</td>\n<td>integer</td>\n<td>Count of Reviews</td>\n</tr>\n<tr>\n<td>sentimentCount</td>\n<td>overall</td>\n<td>object</td>\n<td>Count of Reviews by Sentiment</td>\n</tr>\n<tr>\n<td>positive</td>\n<td>sentimentCount</td>\n<td>integer</td>\n<td>Positive Review count</td>\n</tr>\n<tr>\n<td>neutral</td>\n<td>sentimentCount</td>\n<td>integer</td>\n<td>Neutral Review count</td>\n</tr>\n<tr>\n<td>negative</td>\n<td>sentimentCount</td>\n<td>integer</td>\n<td>Negative Review count</td>\n</tr>\n<tr>\n<td>rating</td>\n<td>overall</td>\n<td>number</td>\n<td>Average Rating</td>\n</tr>\n<tr>\n<td>score</td>\n<td>overall</td>\n<td>integer</td>\n<td>Reputation Score</td>\n</tr>\n<tr>\n<td>scoreSignals</td>\n<td>overall</td>\n<td>object</td>\n<td>Metrics defining the reputation score</td>\n</tr>\n<tr>\n<td>starAverage</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Overall average rating across platforms</td>\n</tr>\n<tr>\n<td>reviewVolume</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Total number of reviews for a given location</td>\n</tr>\n<tr>\n<td>reviewRecency</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Recency of reviews across various sites</td>\n</tr>\n<tr>\n<td>reviewLength</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Percentage of reviews considered long</td>\n</tr>\n<tr>\n<td>reviewSpread</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Distribution of reviews across major sites</td>\n</tr>\n<tr>\n<td>reviewResponse</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Percentage of responded reviews versus non-responded ones</td>\n</tr>\n<tr>\n<td>searchImpression</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Ranking on the first page of search results</td>\n</tr>\n<tr>\n<td>listingAccuracy</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Accuracy of business listings across major sites</td>\n</tr>\n<tr>\n<td>socialEngagement</td>\n<td>scoreSignals</td>\n<td>integer</td>\n<td>Engagement on Facebook (views, fans, likes, engaged users)</td>\n</tr>\n<tr>\n<td>responseCount</td>\n<td>overall</td>\n<td>integer</td>\n<td>Count of Review Responses</td>\n</tr>\n<tr>\n<td>locations</td>\n<td>summary</td>\n<td>object</td>\n<td>List of Location Summaries</td>\n</tr>\n<tr>\n<td>count</td>\n<td>locations</td>\n<td>integer</td>\n<td>Count of Reviews for specific locations</td>\n</tr>\n<tr>\n<td>... <em>(same fields as in 'overall', but specific to 'locations')</em> ...</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>sources</td>\n<td>summary</td>\n<td>object</td>\n<td>List of Source Summaries</td>\n</tr>\n<tr>\n<td>count</td>\n<td>sources</td>\n<td>integer</td>\n<td>Count of Reviews from specific sources</td>\n</tr>\n<tr>\n<td>... <em>(similar fields as in 'overall', but specific to 'sources')</em> ...</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>dateRange</td>\n<td>-</td>\n<td>object</td>\n<td>Information about the date range used for the summary</td>\n</tr>\n<tr>\n<td>range</td>\n<td>dateRange</td>\n<td>string</td>\n<td>Specific predefined date range</td>\n</tr>\n<tr>\n<td>from</td>\n<td>dateRange</td>\n<td>string</td>\n<td>Computed starting date</td>\n</tr>\n<tr>\n<td>to</td>\n<td>dateRange</td>\n<td>string</td>\n<td>Computed ending date</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["summary"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Starting date for the summary in ISO format.</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Ending date for the summary in ISO format.</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Specific predefined date range for the summary. Valid values: \"Today\" \"Yesterday\" \"ThisWeek\" \"PreviousWeek\" \"ThisMonth\" \"PreviousMonth\" \"ThisQuarter\" \"PreviousQuarter\" \"ThisYear\" \"PreviousYear\" \"YearToDate\" \"LifeToDate\" \"Last7Days\" \"Last30Days\" \"Last60Days\" \"Last90Days\" \"Last6Months\" \"Last1Year\" \"Last2Years\" \"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Comma-separated list of location IDs to filter the summary by.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Parameter to group the summary by. Valid values: \"None\" \"Location\" \"Source\"</p>\n","type":"text/plain"},"key":"groupBy","value":"<string>"},{"disabled":true,"key":null,"value":""}],"variable":[]}},"response":[{"id":"6bdfa163-9b0d-4ec1-8424-872346567051","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/summary","protocol":"https","host":["api","reputation","com"],"path":["v3","summary"],"query":[{"key":"from","value":"2001-06-17T15:40:12.790Z","description":"From Date. ISO Date","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","description":"To date. ISO Date","disabled":true},{"key":"range","value":"PreviousWeek","description":"Date Range","disabled":true},{"key":"locationIDs","value":"346345","description":"Comma separated location ids to filter by","disabled":true},{"key":"groupBy","value":"Source","description":"Group summary by Overall, Location or Source","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"415"},{"key":"etag","value":"W/\"19f-nRQdS1kJR7CzHUtxK6DU2dL53YU\""},{"key":"date","value":"Wed, 18 Oct 2023 04:55:34 GMT"},{"key":"x-envoy-upstream-service-time","value":"2268"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"summary\": {\n        \"overall\": {\n            \"count\": 15051,\n            \"sentimentCount\": {\n                \"positive\": 13235,\n                \"neutral\": 725,\n                \"negative\": 973\n            },\n            \"rating\": 4.5,\n            \"score\": 380,\n            \"scoreSignals\": {\n                \"starAverage\": 58,\n                \"reviewVolume\": 27,\n                \"reviewRecency\": 16,\n                \"reviewLength\": 32,\n                \"reviewSpread\": 38,\n                \"reviewResponse\": 50,\n                \"searchImpression\": 62,\n                \"listingAccuracy\": 57,\n                \"socialEngagement\": 53\n            },\n            \"responseCount\": 3690\n        }\n    },\n    \"dateRange\": {\n        \"range\": \"LifeToDate\",\n        \"from\": \"-\",\n        \"to\": \"2023-10-17T23:59:59\"\n    }\n}"},{"id":"95edd090-b576-46e2-baf3-03e500e235d1","name":"Success (grouped by location)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"f92258876c49c9d2e0ba7953cd0eedaf"}],"url":{"raw":"https://api.reputation.com/v3/summary?groupBy=Location","protocol":"https","host":["api","reputation","com"],"path":["v3","summary"],"query":[{"key":"from","value":"2001-06-17T15:40:12.790Z","description":"From Date. ISO Date","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","description":"To date. ISO Date","disabled":true},{"key":"range","value":"PreviousWeek","description":"Date Range","disabled":true},{"key":"locationIDs","value":"346345","description":"Comma separated location ids to filter by","disabled":true},{"key":"groupBy","value":"Location","description":"Group summary by Overall, Location or Source"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"6434"},{"key":"etag","value":"W/\"1922-O4SOZvrglbcOjInkVjuVpIB0pYw\""},{"key":"date","value":"Wed, 18 Oct 2023 05:14:12 GMT"},{"key":"x-envoy-upstream-service-time","value":"1455"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"summary\": {\n        \"locations\": [\n            {\n                \"id\": \"AAA Waterbury\",\n                \"name\": \"AAA Waterbury\",\n                \"count\": 474,\n                \"sentimentCount\": {\n                    \"positive\": 322,\n                    \"neutral\": 37,\n                    \"negative\": 67\n                },\n                \"rating\": 4.1,\n                \"responseCount\": 92\n            },\n            {\n                \"id\": \"AG-Archstone-Ballston-Square\",\n                \"name\": \"AG-Archstone-Ballston-Square\",\n                \"count\": 61,\n                \"sentimentCount\": {\n                    \"positive\": 29,\n                    \"neutral\": 5,\n                    \"negative\": 14\n                },\n                \"rating\": 3.5,\n                \"responseCount\": 2\n            },\n            {\n                \"id\": \"BP\",\n                \"name\": \"Bay Plumbing & test (BP)\",\n                \"count\": 813,\n                \"sentimentCount\": {\n                    \"positive\": 686,\n                    \"neutral\": 28,\n                    \"negative\": 96\n                },\n                \"rating\": 4.4,\n                \"responseCount\": 328,\n                \"score\": 688,\n                \"scoreSignals\": {\n                    \"starAverage\": 72,\n                    \"reviewVolume\": 56,\n                    \"reviewRecency\": 100,\n                    \"reviewLength\": 51,\n                    \"reviewSpread\": 56,\n                    \"reviewResponse\": 65,\n                    \"searchImpression\": 74,\n                    \"listingAccuracy\": 65,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"CH\",\n                \"name\": \"ChiPotLe\",\n                \"count\": 972,\n                \"sentimentCount\": {\n                    \"positive\": 870,\n                    \"neutral\": 25,\n                    \"negative\": 75\n                },\n                \"rating\": 4.6,\n                \"responseCount\": 550,\n                \"score\": 240,\n                \"scoreSignals\": {\n                    \"starAverage\": 43,\n                    \"reviewVolume\": 10,\n                    \"reviewRecency\": 19,\n                    \"reviewLength\": 32,\n                    \"reviewSpread\": 33,\n                    \"reviewResponse\": 69,\n                    \"searchImpression\": 60,\n                    \"listingAccuracy\": 3,\n                    \"socialEngagement\": 14\n                }\n            },\n            {\n                \"id\": \"costco\",\n                \"name\": \"Costco\",\n                \"count\": 52,\n                \"sentimentCount\": {\n                    \"positive\": 28,\n                    \"neutral\": 4,\n                    \"negative\": 8\n                },\n                \"rating\": 3.8,\n                \"responseCount\": 15,\n                \"score\": 144,\n                \"scoreSignals\": {\n                    \"starAverage\": 33,\n                    \"reviewVolume\": 7,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 0,\n                    \"reviewSpread\": 28,\n                    \"reviewResponse\": 65,\n                    \"searchImpression\": 52,\n                    \"listingAccuracy\": 65,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"DW\",\n                \"name\": \"Donut wheel\",\n                \"count\": 122,\n                \"sentimentCount\": {\n                    \"positive\": 70,\n                    \"neutral\": 25,\n                    \"negative\": 15\n                },\n                \"rating\": 3.8,\n                \"responseCount\": 5,\n                \"score\": 111,\n                \"scoreSignals\": {\n                    \"starAverage\": 3,\n                    \"reviewVolume\": 0,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 26,\n                    \"reviewSpread\": 0,\n                    \"reviewResponse\": 65,\n                    \"searchImpression\": 62,\n                    \"listingAccuracy\": 0,\n                    \"socialEngagement\": 4\n                }\n            },\n            {\n                \"id\": \"qa-test-7-25-1034\",\n                \"name\": \"Dwellings (qa-test-7-25-1034)\"\n            },\n            {\n                \"id\": \"949634\",\n                \"name\": \"Jason Test Location For Social Posting\"\n            },\n            {\n                \"id\": \"101\",\n                \"name\": \"Jim's Catering\",\n                \"count\": 5,\n                \"sentimentCount\": {\n                    \"positive\": 0,\n                    \"neutral\": 0,\n                    \"negative\": 0\n                },\n                \"rating\": -1,\n                \"responseCount\": 0\n            },\n            {\n                \"id\": \"80\",\n                \"name\": \"Len Stoler Ford (00008)\",\n                \"count\": 1341,\n                \"sentimentCount\": {\n                    \"positive\": 1155,\n                    \"neutral\": 35,\n                    \"negative\": 151\n                },\n                \"rating\": 4.4,\n                \"responseCount\": 722,\n                \"score\": 372,\n                \"scoreSignals\": {\n                    \"starAverage\": 31,\n                    \"reviewVolume\": 56,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 41,\n                    \"reviewSpread\": 56,\n                    \"reviewResponse\": 0,\n                    \"searchImpression\": 57,\n                    \"listingAccuracy\": 85,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"LVO\",\n                \"name\": \"Leone & Vaughn Orthodontics\",\n                \"count\": 332,\n                \"sentimentCount\": {\n                    \"positive\": 318,\n                    \"neutral\": 6,\n                    \"negative\": 8\n                },\n                \"rating\": 4.9,\n                \"responseCount\": 31,\n                \"score\": 644,\n                \"scoreSignals\": {\n                    \"starAverage\": 98,\n                    \"reviewVolume\": 38,\n                    \"reviewRecency\": 17,\n                    \"reviewLength\": 35,\n                    \"reviewSpread\": 34,\n                    \"reviewResponse\": 40,\n                    \"searchImpression\": 25,\n                    \"listingAccuracy\": 60,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"36\",\n                \"name\": \"Location for Jake\"\n            },\n            {\n                \"id\": \"12345\",\n                \"name\": \"McD\",\n                \"count\": 7,\n                \"sentimentCount\": {\n                    \"positive\": 2,\n                    \"neutral\": 0,\n                    \"negative\": 0\n                },\n                \"rating\": 4,\n                \"responseCount\": 0\n            },\n            {\n                \"id\": \"Nat\",\n                \"name\": \"Nature Valley\",\n                \"count\": 12,\n                \"sentimentCount\": {\n                    \"positive\": 7,\n                    \"neutral\": 0,\n                    \"negative\": 4\n                },\n                \"rating\": 3.5,\n                \"responseCount\": 2,\n                \"score\": 158,\n                \"scoreSignals\": {\n                    \"starAverage\": 100,\n                    \"reviewVolume\": 0,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 67,\n                    \"reviewSpread\": 0,\n                    \"reviewResponse\": 65,\n                    \"searchImpression\": 34,\n                    \"listingAccuracy\": 47,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"NS\",\n                \"name\": \"NoSource\",\n                \"count\": 4,\n                \"sentimentCount\": {\n                    \"positive\": 1,\n                    \"neutral\": 0,\n                    \"negative\": 0\n                },\n                \"rating\": 5,\n                \"responseCount\": 0\n            },\n            {\n                \"id\": \"PatJoe\",\n                \"name\": \"Pat Scott test for social posting\"\n            },\n            {\n                \"id\": \"N/A\",\n                \"name\": \"Patrick Scott_Test_20211203\"\n            },\n            {\n                \"id\": \"PF107\",\n                \"name\": \"Plaza Ford (00107)\",\n                \"count\": 708,\n                \"sentimentCount\": {\n                    \"positive\": 667,\n                    \"neutral\": 8,\n                    \"negative\": 33\n                },\n                \"rating\": 4.7,\n                \"responseCount\": 203,\n                \"score\": 190,\n                \"scoreSignals\": {\n                    \"starAverage\": 55,\n                    \"reviewVolume\": 2,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 70,\n                    \"reviewSpread\": 27,\n                    \"reviewResponse\": 40,\n                    \"searchImpression\": 78,\n                    \"listingAccuracy\": 31,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"rainbow\",\n                \"name\": \"Rainbow Montessori\"\n            },\n            {\n                \"id\": \"SA\",\n                \"name\": \"Simple Art\",\n                \"count\": 3891,\n                \"sentimentCount\": {\n                    \"positive\": 3664,\n                    \"neutral\": 146,\n                    \"negative\": 69\n                },\n                \"rating\": 4.7,\n                \"responseCount\": 70,\n                \"score\": 388,\n                \"scoreSignals\": {\n                    \"starAverage\": 92,\n                    \"reviewVolume\": 6,\n                    \"reviewRecency\": 1,\n                    \"reviewLength\": 37,\n                    \"reviewSpread\": 66,\n                    \"reviewResponse\": 40,\n                    \"searchImpression\": 54,\n                    \"listingAccuracy\": 75,\n                    \"socialEngagement\": 3\n                }\n            },\n            {\n                \"id\": \"SANAHG\",\n                \"name\": \"Simple Art (SANAHG)\"\n            },\n            {\n                \"id\": \"ST_MV\",\n                \"name\": \"Sweet Tomatoes\",\n                \"count\": 957,\n                \"sentimentCount\": {\n                    \"positive\": 807,\n                    \"neutral\": 92,\n                    \"negative\": 58\n                },\n                \"rating\": 4.3,\n                \"responseCount\": 27,\n                \"score\": 159,\n                \"scoreSignals\": {\n                    \"starAverage\": 43,\n                    \"reviewVolume\": 1,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 19,\n                    \"reviewSpread\": 56,\n                    \"reviewResponse\": 65,\n                    \"searchImpression\": 61,\n                    \"listingAccuracy\": 60,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"T\",\n                \"name\": \"T\",\n                \"count\": 128,\n                \"sentimentCount\": {\n                    \"positive\": 127,\n                    \"neutral\": 0,\n                    \"negative\": 0\n                },\n                \"rating\": 5,\n                \"responseCount\": 112,\n                \"score\": 729,\n                \"scoreSignals\": {\n                    \"starAverage\": 100,\n                    \"reviewVolume\": 56,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 20,\n                    \"reviewSpread\": 56,\n                    \"reviewResponse\": 65,\n                    \"searchImpression\": 55,\n                    \"listingAccuracy\": 65,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"09\",\n                \"name\": \"Temecula\"\n            },\n            {\n                \"id\": \"123664654561\",\n                \"name\": \"Test Pandora 1 (123664654561)\"\n            },\n            {\n                \"id\": \"TCF\",\n                \"name\": \"The Cheesecake Factory\",\n                \"count\": 1547,\n                \"sentimentCount\": {\n                    \"positive\": 1164,\n                    \"neutral\": 186,\n                    \"negative\": 197\n                },\n                \"rating\": 4.1,\n                \"responseCount\": 722,\n                \"score\": 588,\n                \"scoreSignals\": {\n                    \"starAverage\": 50,\n                    \"reviewVolume\": 56,\n                    \"reviewRecency\": 43,\n                    \"reviewLength\": 21,\n                    \"reviewSpread\": 56,\n                    \"reviewResponse\": 100,\n                    \"searchImpression\": 90,\n                    \"listingAccuracy\": 85,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"TG\",\n                \"name\": \"The Grove\",\n                \"count\": 1804,\n                \"sentimentCount\": {\n                    \"positive\": 1682,\n                    \"neutral\": 64,\n                    \"negative\": 58\n                },\n                \"rating\": 4.6,\n                \"responseCount\": 62,\n                \"score\": 578,\n                \"scoreSignals\": {\n                    \"starAverage\": 76,\n                    \"reviewVolume\": 56,\n                    \"reviewRecency\": 14,\n                    \"reviewLength\": 17,\n                    \"reviewSpread\": 56,\n                    \"reviewResponse\": 0,\n                    \"searchImpression\": 53,\n                    \"listingAccuracy\": 65,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"WF\",\n                \"name\": \"WinCo Foods\",\n                \"count\": 764,\n                \"sentimentCount\": {\n                    \"positive\": 681,\n                    \"neutral\": 27,\n                    \"negative\": 55\n                },\n                \"rating\": 4.6,\n                \"responseCount\": 728,\n                \"score\": 121,\n                \"scoreSignals\": {\n                    \"starAverage\": 10,\n                    \"reviewVolume\": 0,\n                    \"reviewRecency\": 0,\n                    \"reviewLength\": 25,\n                    \"reviewSpread\": 0,\n                    \"reviewResponse\": 65,\n                    \"searchImpression\": 85,\n                    \"listingAccuracy\": 88,\n                    \"socialEngagement\": 65\n                }\n            },\n            {\n                \"id\": \"WW\",\n                \"name\": \"World Wraps\",\n                \"count\": 1057,\n                \"sentimentCount\": {\n                    \"positive\": 955,\n                    \"neutral\": 37,\n                    \"negative\": 65\n                },\n                \"rating\": 4.6,\n                \"responseCount\": 19,\n                \"score\": 586,\n                \"scoreSignals\": {\n                    \"starAverage\": 65,\n                    \"reviewVolume\": 56,\n                    \"reviewRecency\": 43,\n                    \"reviewLength\": 25,\n                    \"reviewSpread\": 56,\n                    \"reviewResponse\": 10,\n                    \"searchImpression\": 93,\n                    \"listingAccuracy\": 64,\n                    \"socialEngagement\": 65\n                }\n            }\n        ]\n    },\n    \"dateRange\": {\n        \"range\": \"LifeToDate\",\n        \"from\": \"-\",\n        \"to\": \"2023-10-17T23:59:59\"\n    }\n}"}],"_postman_id":"7cc67e3a-dd59-4388-9c84-775ee49955a4"}],"id":"f7f37498-f32f-4d0a-a3e1-143c469e4662","description":"<p>The <strong>Summary</strong> collection gives you an aggregated overview of reviews and sentiments across various business locations or sources. Within this collection, the <strong>Get Summary</strong> endpoint offers you a detailed breakdown of review metrics, including counts, sentiment distributions, average ratings, and more. By using this endpoint, you can gain insights into your business's reputation performance across different dimensions, whether by location, time frame, or source.</p>\n","_postman_id":"f7f37498-f32f-4d0a-a3e1-143c469e4662"},{"name":"/Surveys","item":[{"name":"Get Survey Results","id":"26ee9244-397a-409a-b4ab-086ae9d8844a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/survey-results","description":"<p>The <strong>Get Survey Results</strong> endpoint allows you to fetch the results of surveys submitted by customers or respondents, providing a comprehensive insight into their feedback and perceptions regarding your services or products. This endpoint is instrumental for businesses aiming to evaluate and enhance customer satisfaction, and make data-driven decisions to improve overall customer experience.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.onreadystatechange = function () {\n    if (xhr.readyState == 4 &amp;&amp; xhr.status == 200) {\n        console.log(xhr.responseText);\n    }\n};\nxhr.open('GET', 'https://api.reputation.com/v3/survey-results?surveyTemplateID=5e8d12a42a401b62ff1234a', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>surveys</td>\n<td>-</td>\n<td>object</td>\n<td>Array containing the survey results.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>surveys</td>\n<td>string</td>\n<td>Unique identifier representing the survey result. Generated by the system. May be null for new entries.</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>surveys</td>\n<td>string</td>\n<td>Name of the location associated with the survey result. This is a read-only field.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>surveys</td>\n<td>string</td>\n<td>Identifier of the location associated with the survey result.</td>\n</tr>\n<tr>\n<td>surveyTemplateID</td>\n<td>surveys</td>\n<td>string</td>\n<td>Identifier of the survey template to which the survey result belongs.</td>\n</tr>\n<tr>\n<td>date</td>\n<td>sruveys</td>\n<td>string</td>\n<td>ISO date representing when the survey was taken.</td>\n</tr>\n<tr>\n<td>sentDate</td>\n<td>surveys</td>\n<td>string</td>\n<td>ISO date representing when the survey was sent. May be null if not applicable.</td>\n</tr>\n<tr>\n<td>answers</td>\n<td>surveys</td>\n<td>SurveyResultAnswer[]</td>\n<td>Array containing the answers provided by the survey taker.</td>\n</tr>\n<tr>\n<td>question</td>\n<td>answers</td>\n<td>SurveyQuestionValues</td>\n<td>Object containing details about the survey question.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>answers</td>\n<td>string (Required)</td>\n<td>Unique identifier of the survey question.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>question</td>\n<td>string</td>\n<td>Text of the survey question. This is a read-only field.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>question</td>\n<td>string</td>\n<td>Type of the survey question. This is a read-only field.</td>\n</tr>\n<tr>\n<td>answerValues</td>\n<td>answers</td>\n<td>object</td>\n<td>Array containing the answer values provided by the survey taker for a specific question.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>answerValues</td>\n<td>string (Required)</td>\n<td>Unique identifier for the answer option. Required for RadioButtons, Checkboxes, Dropdown type questions.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>answerValues</td>\n<td>string (Required)</td>\n<td>Text of the survey answer. Required for NPS, Rating, Comments, Date, Name, Email, and Phone type questions.</td>\n</tr>\n<tr>\n<td>properties</td>\n<td>surveys</td>\n<td>properties</td>\n<td>Object containing additional information representing the survey taker or context of the survey result.</td>\n</tr>\n<tr>\n<td></td>\n<td>properties</td>\n<td>string</td>\n<td>Various additional string properties providing more context or information about the survey result.</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>surveys</td>\n<td>string</td>\n<td>Locale in which the survey was taken. Default is \"en_US\". Supported values include various language-region codes. Valid values: \"en_US\" \"fr_CA\" \"fr_FR\" \"es_ES\" \"es_MX\" \"de_CH\" \"de_DE</td>\n</tr>\n<tr>\n<td>externalID</td>\n<td>surveys</td>\n<td>string</td>\n<td>A unique identifier representing the survey result, external to the system.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>surveys</td>\n<td>string</td>\n<td>The current status of the survey result. Possible values are \"Started\", \"Incomplete\", and \"Completed\".</td>\n</tr>\n<tr>\n<td>flags</td>\n<td>surveys</td>\n<td>string array</td>\n<td>Array of flags associated with the survey result. Possible values include \"READ\", \"PUBLISHED\", \"FLAGGED\", \"RESPONDED\".</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>surveys</td>\n<td>string</td>\n<td>ISO date representing the last time the survey result was updated.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>object</td>\n<td>Object containing the pagination details of the request.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer (int64)</td>\n<td>Determines the starting point of the results, skipping the specified number of records.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer (int64)</td>\n<td>Sets the maximum number of records returned per page, subject to availability and filtering.</td>\n</tr>\n<tr>\n<td>count</td>\n<td>paging</td>\n<td>integer (int64)</td>\n<td>Gives the total number of records matching the search criteria.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>paging</td>\n<td>string</td>\n<td>Provides the endpoint for the previous page of results; absence indicates the first page.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>Offers the endpoint for the next page of results; absence indicates the last page.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["survey-results"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>(Required) Specifies the unique identifier of the survey template to filter the results.</p>\n","type":"text/plain"},"key":"surveyTemplateID","value":"<string (hexadecimal)>"},{"disabled":true,"description":{"content":"<p>A comma-separated list of location IDs if you wish to filter the survey results based on specific locations.</p>\n","type":"text/plain"},"key":"locationIDs","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Filters the results by the status of the survey. Valid values include \"Started,\" \"Incomplete,\" and \"Completed.\"</p>\n","type":"text/plain"},"key":"status","value":"<string>"},{"disabled":true,"description":{"content":"<p>Defines the starting date of the range for fetching survey results, formatted as an ISO date.</p>\n","type":"text/plain"},"key":"from","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Defines the ending date of the range for fetching survey results, formatted as an ISO date.</p>\n","type":"text/plain"},"key":"to","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Defines the starting date for fetching surveys based on their last updated date, formatted as an ISO date.</p>\n","type":"text/plain"},"key":"fromUpdated","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>Defines the ending date for fetching surveys based on their last updated date, formatted as an ISO date.</p>\n","type":"text/plain"},"key":"toUpdated","value":"<string (date-time)>"},{"disabled":true,"description":{"content":"<p>A predefined date range to fetch survey results. Valid values include: \"Today\" \"Yesterday\" \"ThisWeek\" \"PreviousWeek\" \"ThisMonth\" \"PreviousMonth\" \"ThisQuarter\" \"PreviousQuarter\" \"ThisYear\" \"PreviousYear\" \"YearToDate\" \"LifeToDate\" \"Last7Days\" \"Last30Days\" \"Last60Days\" \"Last90Days\" \"Last6Months\" \"Last1Year\" \"Last2Years\" \"Last3Years\".</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Skips a specific number of results, assisting in pagination. The maximum offset is 10,000.</p>\n","type":"text/plain"},"key":"offset","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>Defines the maximum number of survey results to return in one response. The default is 20, and the maximum limit is 500.</p>\n","type":"text/plain"},"key":"limit","value":"<integer (int64)>"}],"variable":[]}},"response":[{"id":"089cd46d-c325-4d56-af15-e2e356031dd0","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/survey-results?surveyTemplateID=5e8d12a42a401b62ff1234a","protocol":"https","host":["api","reputation","com"],"path":["v3","survey-results"],"query":[{"key":"surveyTemplateID","value":"5e8d12a42a401b62ff1234a"},{"key":"locationIDs","value":"dolor ut","disabled":true},{"key":"status","value":"Started","disabled":true},{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"fromUpdated","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"toUpdated","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek","disabled":true},{"key":"offset","value":"0","disabled":true},{"key":"limit","value":"20","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"2510"},{"key":"etag","value":"W/\"9ce-ze0lhAB6UGGwqV1XqFdOhGJijWA\""},{"key":"date","value":"Wed, 25 Oct 2023 16:17:03 GMT"},{"key":"x-envoy-upstream-service-time","value":"394"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"surveyResults\": [\n        {\n            \"id\": \"5f8d12a42a401b62ff12345\",\n            \"locationName\": \"Chipotle\",\n            \"locationID\": \"CH123\",\n            \"surveyTemplateID\": \"5e8d12a42a401b62ff1234a\",\n            \"date\": \"2023-10-15T12:30:45Z\",\n            \"sentDate\": \"2023-10-15T12:00:00Z\",\n            \"answers\": [\n                {\n                    \"question\": {\n                        \"id\": \"q1\",\n                        \"text\": \"Rate your visit (1-5)\",\n                        \"type\": \"Rating\"\n                    },\n                    \"answerValues\": [{\"id\": \"a1\", \"text\": \"4\"}]\n                },\n                {\n                    \"question\": {\n                        \"id\": \"q2\",\n                        \"text\": \"What did you enjoy?\",\n                        \"type\": \"Checkboxes\"\n                    },\n                    \"answerValues\": [{\"id\": \"a2\", \"text\": \"Service\"}, {\"id\": \"a3\", \"text\": \"Food\"}]\n                }\n            ],\n            \"properties\": null,\n            \"locale\": \"en_US\",\n            \"status\": \"Completed\",\n            \"flags\": [\"RESPONDED\"],\n            \"updatedDate\": \"2023-10-15T12:45:00Z\"\n        },\n        {\n            \"id\": \"5f8d12a42a401b62ff65432\",\n            \"locationName\": \"Chipotle\",\n            \"locationID\": \"CH123\",\n            \"surveyTemplateID\": \"5e8d12a42a401b62ff1234a\",\n            \"date\": \"2023-10-10T14:20:30Z\",\n            \"sentDate\": \"2023-10-10T14:00:00Z\",\n            \"answers\": [\n                {\n                    \"question\": {\n                        \"id\": \"q1\",\n                        \"text\": \"Rate your visit (1-5)\",\n                        \"type\": \"Rating\"\n                    },\n                    \"answerValues\": [{\"id\": \"a1\", \"text\": \"5\"}]\n                },\n                {\n                    \"question\": {\n                        \"id\": \"q2\",\n                        \"text\": \"What did you enjoy?\",\n                        \"type\": \"Checkboxes\"\n                    },\n                    \"answerValues\": [{\"id\": \"a2\", \"text\": \"Service\"}]\n                }\n            ],\n            \"properties\": null,\n            \"locale\": \"en_US\",\n            \"status\": \"Completed\",\n            \"flags\": [\"READ\", \"RESPONDED\"],\n            \"updatedDate\": \"2023-10-10T14:25:00Z\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 20\n    },\n    \"dateRange\": {\n        \"range\": \"MonthToDate\",\n        \"from\": \"2023-10-01T00:00:00Z\",\n        \"to\": \"2023-10-25T23:59:59Z\"\n    }\n}\n"}],"_postman_id":"26ee9244-397a-409a-b4ab-086ae9d8844a"},{"name":"Save Survey Result","id":"21d4060c-fca5-41ee-86b4-b196b6b71e1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"locationID\": \"string\",\n  \"surveyTemplateID\": \"string\",\n  \"date\": \"string (YYYY-MM-DDTHH:MM:SS)\",\n  \"answers\": [\n    {\n      \"question\": {\n        \"id\": \"string\",\n        \"text\": \"string\",\n        \"type\": \"string\"\n      },\n      \"answerValues\": [\n        {\n          \"id\": \"string\",\n          \"text\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"locale\": \"string (language tag, e.g., 'en_US')\",\n  \"status\": \"string\",\n  \"flags\": [\"string array (optional, valid values: 'READ', 'PUBLISHED', 'FLAGGED', 'RESPONDED')\"]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/survey-results","description":"<p>Use this endpoint to submit and save your survey responses directly into the system. You need to provide essential details including the location ID, survey template ID, date, answers, locale, and the current status of the survey. Upon successful submission, the system will process your input, save the survey result, and return a unique identifier for your record, along with any additional pertinent information. This functionality is vital for gathering and analyzing customer feedback, ultimately helping you enhance the quality of service and customer experience.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.withCredentials = true;\n\nxhr.addEventListener(\"readystatechange\", function() {\n  if(this.readyState === 4) {\n    console.log(this.responseText);\n  }\n});\n\nxhr.open(\"POST\", \"https://api.reputation.com/v3/survey-results\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\n\nvar data = JSON.stringify({\n  \"locationID\": \"CH12345\",\n  \"surveyTemplateID\": \"641a8a3b9b88fc2b678d9adc\",\n  \"date\": \"2023-04-03T10:57:58Z\",\n  \"answers\": [\n    {\n      \"question\": {\n        \"id\": \"rateVisit\",\n        \"text\": \"Please rate your visit on a scale from 1 to 5.\",\n        \"type\": \"Rating\"\n      },\n      \"answerValues\": [\n        {\n          \"id\": \"rating4\",\n          \"text\": \"4\"\n        }\n      ]\n    },\n    {\n      \"question\": {\n        \"id\": \"experienceFeedback\",\n        \"text\": \"Please tell us about your experience.\",\n        \"type\": \"Text\"\n      },\n      \"answerValues\": [\n        {\n          \"id\": \"exp1\",\n          \"text\": \"The service was excellent and the food was delicious!\"\n        }\n      ]\n    }\n  ],\n  \"locale\": \"en_US\",\n  \"status\": \"Completed\",\n  \"flags\": [\"RESPONDED\"]\n});\n\nxhr.send(data);\n\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locationID <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>The unique identifier for the location associated with the survey result.</td>\n</tr>\n<tr>\n<td>surveyTemplateID <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>The unique identifier for the survey template.</td>\n</tr>\n<tr>\n<td>date <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>The date and time when the survey was taken, formatted in ISO 8601.</td>\n</tr>\n<tr>\n<td>answers <strong>(Required)</strong></td>\n<td>-</td>\n<td>array</td>\n<td>An array of objects, each representing an answered question in the survey.</td>\n</tr>\n<tr>\n<td>question <strong>(Required)</strong></td>\n<td>answers</td>\n<td>object</td>\n<td>An object containing details of the survey question.</td>\n</tr>\n<tr>\n<td>id <strong>(Reqiured)</strong></td>\n<td>question</td>\n<td>string</td>\n<td>The unique identifier for the survey question.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>question</td>\n<td>string</td>\n<td>The text of the survey question.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>question</td>\n<td>string</td>\n<td>The type of survey question (e.g., \"Rating\", \"Checkboxes\").</td>\n</tr>\n<tr>\n<td>answerValues <strong>(Required)</strong></td>\n<td>answers</td>\n<td>array</td>\n<td>An array of objects, each representing a selected answer option for a question.</td>\n</tr>\n<tr>\n<td>id <strong>(Required)</strong></td>\n<td>answerValues</td>\n<td>string</td>\n<td>The unique identifier for the selected answer option.</td>\n</tr>\n<tr>\n<td>text <strong>(Required)</strong></td>\n<td>answerValues</td>\n<td>string</td>\n<td>The text or value of the selected answer option.</td>\n</tr>\n<tr>\n<td>properties</td>\n<td>-</td>\n<td>object</td>\n<td>Additional information that represents the survey taker or context of the survey result.</td>\n</tr>\n<tr>\n<td>*</td>\n<td>properties</td>\n<td>string</td>\n<td>Array of additional properties.</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>-</td>\n<td>string</td>\n<td>The locale in which the survey was taken. Default is \"en_US\".</td>\n</tr>\n<tr>\n<td>externalID</td>\n<td>-</td>\n<td>string</td>\n<td>A unique id that represents the survey result.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>-</td>\n<td>string</td>\n<td>The status of the survey result. Valid values: \"Started\" \"Incomplete\" \"Completed\".</td>\n</tr>\n<tr>\n<td>flags</td>\n<td>-</td>\n<td>string array</td>\n<td>An array of strings used to label or categorize the survey result. Each string must be one of the following valid values: \"READ\", \"PUBLISHED\", \"FLAGGED\", \"RESPONDED\". These flags can help in filtering and managing survey results efficiently. For instance, marking a survey result as \"READ\" could indicate that someone has reviewed the responses.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>encryptedID</td>\n<td>-</td>\n<td>string</td>\n<td>The encrypted identifier for the survey result.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>-</td>\n<td>string</td>\n<td>The unique identifier for the survey result.</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>-</td>\n<td>string</td>\n<td>null</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>string</td>\n<td>The identifier for the location associated with the survey result.</td>\n</tr>\n<tr>\n<td>surveyTemplateID</td>\n<td>-</td>\n<td>string</td>\n<td>The identifier for the survey template used to collect the survey result.</td>\n</tr>\n<tr>\n<td>date</td>\n<td>-</td>\n<td>string</td>\n<td>The date and time when the survey was submitted, formatted as YYYY-MM-DDTHH:MM:SS.</td>\n</tr>\n<tr>\n<td>sentDate</td>\n<td>-</td>\n<td>integer</td>\n<td>A timestamp indicating when the survey was sent. 0 if not set.</td>\n</tr>\n<tr>\n<td>answers</td>\n<td>-</td>\n<td>array of objects</td>\n<td>An array of answer objects, each containing information about a question and its corresponding answers.</td>\n</tr>\n<tr>\n<td>question</td>\n<td>answers</td>\n<td>object</td>\n<td>An object containing details of a question.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>question</td>\n<td>string</td>\n<td>The unique identifier for the question.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>question</td>\n<td>string</td>\n<td>The text of the question.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>question</td>\n<td>string</td>\n<td>The type of the question (e.g., \"Rating\", \"Checkboxes\").</td>\n</tr>\n<tr>\n<td>answerValues</td>\n<td>answers</td>\n<td>array of objects</td>\n<td>An array of answer value objects, each containing information about an answer option.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>answerValues</td>\n<td>string</td>\n<td>The unique identifier for the answer option.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>answerValues</td>\n<td>string</td>\n<td>The text of the answer option.</td>\n</tr>\n<tr>\n<td>properties</td>\n<td>-</td>\n<td>object</td>\n<td>An object containing additional properties of the survey result. May be an empty object if not set.</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>-</td>\n<td>string</td>\n<td>The locale in which the survey was taken, represented as a language tag. Valid values:  <br />\"en_US\" \"fr_CA\" \"fr_FR\" \"es_ES\" \"es_MX\" \"de_CH\" \"de_DE\"</td>\n</tr>\n<tr>\n<td>status</td>\n<td>-</td>\n<td>string</td>\n<td>The status of the survey result (e.g., \"Completed\").</td>\n</tr>\n<tr>\n<td>flags</td>\n<td>-</td>\n<td>array of strings</td>\n<td>An array of strings used to label or categorize the survey result. May be an empty array if not set.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>-</td>\n<td>string</td>\n<td>The date and time when the survey result was last updated, formatted as YYYY-MM-DDTHH:MM:SS.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["survey-results"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d217d974-aee8-4a89-85f2-a3b96228e38c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"locationID\": \"CH12345\",\n  \"surveyTemplateID\": \"641a8a3b9b88fc2b678d9adc\",\n  \"date\": \"2023-04-03T10:57:58Z\",\n  \"answers\": [\n    {\n      \"question\": {\n        \"id\": \"rateVisit\",\n        \"text\": \"Please rate your visit on a scale from 1 to 5.\",\n        \"type\": \"Rating\"\n      },\n      \"answerValues\": [\n        {\n          \"id\": \"rating4\",\n          \"text\": \"4\"\n        }\n      ]\n    },\n    {\n      \"question\": {\n        \"id\": \"experienceFeedback\",\n        \"text\": \"Please tell us about your experience.\",\n        \"type\": \"Text\"\n      },\n      \"answerValues\": [\n        {\n          \"id\": \"exp1\",\n          \"text\": \"The service was excellent and the food was delicious!\"\n        }\n      ]\n    }\n  ],\n  \"locale\": \"en_US\",\n  \"status\": \"Completed\",\n  \"flags\": [\"RESPONDED\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/survey-results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"635"},{"key":"etag","value":"W/\"27b-Dv11lgKAtXzTfzTxYW40DvReJ1s\""},{"key":"date","value":"Sun, 29 Oct 2023 21:14:12 GMT"},{"key":"x-envoy-upstream-service-time","value":"161"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n  \"encryptedID\": \"U2FsdGVkX183jqEnv92BzLPlPdPvezOHL0bMW3d+PlbRnSvTPuHPRY22HKOUr4zjx7hQXRJ7u3RzNQLx1vWAEQ==\",\n  \"id\": \"653ecb24afacd00d2101851a\",\n  \"locationName\": \"Central Hub\",\n  \"locationID\": \"CH12345\",\n  \"surveyTemplateID\": \"641a8a3b9b88fc2b678d9adc\",\n  \"date\": \"2023-04-03T10:57:58Z\",\n  \"sentDate\": 1677609478,\n  \"answers\": [\n    {\n      \"question\": {\n        \"id\": \"rateVisit\",\n        \"text\": \"Please rate your visit on a scale from 1 to 5.\",\n        \"type\": \"Rating\"\n      },\n      \"answerValues\": [\n        {\n          \"id\": \"rating4\",\n          \"text\": \"4\"\n        }\n      ]\n    },\n    {\n      \"question\": {\n        \"id\": \"experienceFeedback\",\n        \"text\": \"Please tell us about your experience.\",\n        \"type\": \"Text\"\n      },\n      \"answerValues\": [\n        {\n          \"id\": \"exp1\",\n          \"text\": \"The service was excellent and the food was delicious!\"\n        }\n      ]\n    }\n  ],\n  \"properties\": {\n    \"customerID\": \"C12345\",\n    \"visitType\": \"Dine-In\"\n  },\n  \"locale\": \"en_US\",\n  \"status\": \"Completed\",\n  \"flags\": [\"RESPONDED\"],\n  \"updatedDate\": \"2023-10-29T14:14:12Z\"\n}\n"}],"_postman_id":"21d4060c-fca5-41ee-86b4-b196b6b71e1e"},{"name":"Get Survey Result","id":"cd38b598-d954-4f36-87e9-d45e88bc28ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/survey-results/:surveyID?surveyTemplateID=<string (hexidecimal)>","description":"<p>This endpoint retrieves detailed information about a specific survey result. The result is identified by a unique surveyID and belongs to a particular survey template, identified by the surveyTemplateID.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-result\">JavaScript XHR Result</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/survey-results?surveyTemplateID=5e8d12a42a401b62ff1234a\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\n\nxhr.onreadystatechange = function () {\n  if (xhr.readyState == 4 &amp;&amp; xhr.status == 200)\n    console.log(JSON.parse(xhr.responseText));\n}\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>-</td>\n<td>string</td>\n<td>The unique identifier for the survey result.</td>\n</tr>\n<tr>\n<td>locationName</td>\n<td>-</td>\n<td>string</td>\n<td>The name of the location related to the survey. Can be null.</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>string</td>\n<td>The unique identifier for the location related to the survey.</td>\n</tr>\n<tr>\n<td>surveyTemplateID</td>\n<td>-</td>\n<td>string</td>\n<td>The unique identifier for the survey template.</td>\n</tr>\n<tr>\n<td>date</td>\n<td>-</td>\n<td>string</td>\n<td>The date and time when the survey was filled out.</td>\n</tr>\n<tr>\n<td>sentDate</td>\n<td>-</td>\n<td>integer</td>\n<td>The date and time when the survey was sent, in Unix epoch milliseconds.</td>\n</tr>\n<tr>\n<td>answers</td>\n<td>-</td>\n<td>array</td>\n<td>An array containing the answers to the survey questions.</td>\n</tr>\n<tr>\n<td>question</td>\n<td>answers</td>\n<td>object</td>\n<td>An object containing information about a survey question.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>question</td>\n<td>string</td>\n<td>The unique identifier for the survey question.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>question</td>\n<td>string</td>\n<td>The text of the survey question.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>question</td>\n<td>string</td>\n<td>The type of the survey question (e.g., Rating, Checkboxes).</td>\n</tr>\n<tr>\n<td>answerValues</td>\n<td>answers</td>\n<td>array</td>\n<td>An array containing the answer values to a survey question.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>answerValues</td>\n<td>string</td>\n<td>The unique identifier for an answer value.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>answerValues</td>\n<td>string</td>\n<td>The text of the answer value.</td>\n</tr>\n<tr>\n<td>properties</td>\n<td>-</td>\n<td>object</td>\n<td>An object containing additional properties of the survey result. Can be null.</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>-</td>\n<td>string</td>\n<td>The locale in which the survey was taken. Valid values:  <br />\"en_US\" \"fr_CA\" \"fr_FR\" \"es_ES\" \"es_MX\" \"de_CH\" \"de_DE\"</td>\n</tr>\n<tr>\n<td>status</td>\n<td>-</td>\n<td>string</td>\n<td>The status of the survey. Valid values: \"Started\" \"Incomplete\" \"Completed\"</td>\n</tr>\n<tr>\n<td>flags</td>\n<td>-</td>\n<td>array</td>\n<td>An array of flags associated with the survey result. Valid values: \"READ\" \"PUBLISHED\" \"FLAGGED\" \"RESPONDED\"</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>-</td>\n<td>string</td>\n<td>The date and time when the survey result was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["survey-results",":surveyID"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>(Required) The ID of the survey template that the result belongs to. This parameter must be included in the query string of the request URL.</p>\n","type":"text/plain"},"key":"surveyTemplateID","value":"<string (hexidecimal)>"}],"variable":[{"description":{"content":"<p>(Required) The unique identifier for the survey result you wish to retrieve. This is a hexidecimal string that must be included in the endpoint URL.</p>\n","type":"text/plain"},"type":"any","value":"<string (hexidecimal)>","key":"surveyID"}]}},"response":[{"id":"73e3839d-082c-4575-977c-52b9aa8fed0c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/survey-results/:surveyID?surveyTemplateID=638e2f19302bf75c384668dc","protocol":"https","host":["api","reputation","com"],"path":["v3","survey-results",":surveyID"],"query":[{"key":"surveyTemplateID","value":"638e2f19302bf75c384668dc"}],"variable":[{"key":"surveyID","value":"642b139ac3a01b7652ffd105"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"635"},{"key":"etag","value":"W/\"27b-SlqMUb2TPaksio0upGAyv2QX6Os\""},{"key":"date","value":"Sun, 29 Oct 2023 22:15:19 GMT"},{"key":"x-envoy-upstream-service-time","value":"71"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"642b139ac3a01b7652ffd105\",\n    \"locationName\": \"Chipotle MEXICAN Grill\",\n    \"locationID\": \"CH\",\n    \"surveyTemplateID\": \"638e2f19302bf75c384668dc\",\n    \"date\": \"2023-04-03T10:57:58\",\n    \"sentDate\": 1680544628037,\n    \"answers\": [\n        {\n            \"question\": {\n                \"id\": \"sq5\",\n                \"text\": \"Please rate your visit.\",\n                \"type\": \"Rating\"\n            },\n            \"answerValues\": [\n                {\n                    \"id\": \"o1\",\n                    \"text\": \"4.0\"\n                }\n            ]\n        },\n        {\n            \"question\": {\n                \"id\": \"sq19\",\n                \"text\": \"Please tell us about your experience.\",\n                \"type\": \"Checkboxes\"\n            },\n            \"answerValues\": [\n                {\n                    \"id\": \"o20\",\n                    \"text\": \"Quality\"\n                },\n                {\n                    \"id\": \"o21\",\n                    \"text\": \"Value\"\n                },\n                {\n                    \"id\": \"o22\",\n                    \"text\": \"Selection\"\n                }\n            ]\n        }\n    ],\n    \"properties\": null,\n    \"locale\": \"en_GB\",\n    \"status\": \"Completed\",\n    \"flags\": [\n        \"RESPONDED\"\n    ],\n    \"updatedDate\": \"2023-04-03T10:59:46\"\n}"}],"_postman_id":"cd38b598-d954-4f36-87e9-d45e88bc28ef"},{"name":"Get Survey Templates","id":"5f55b794-c032-422c-9ed1-15c57d363093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/surveys3-templates","description":"<p>This endpoint retrieves a list of survey templates based on specified criteria. You can filter the survey templates you need to retrieve by providing the status and type of the templates as query parameters.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/surveys3-templates?templateType=Conversational\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function () {\n    if (xhr.readyState === 4) {\n        console.log(xhr.responseText);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>surveyTemplates</td>\n<td>Root</td>\n<td>Array</td>\n<td>An array of survey template objects</td>\n</tr>\n<tr>\n<td>id</td>\n<td>surveyTemplates</td>\n<td>String</td>\n<td>Unique identifier for the survey template</td>\n</tr>\n<tr>\n<td>templateName</td>\n<td>surveyTemplates</td>\n<td>String</td>\n<td>Name of the survey template</td>\n</tr>\n<tr>\n<td>templateType</td>\n<td>surveyTemplates</td>\n<td>String</td>\n<td>Type of the survey template (e.g., \"Conversational\")</td>\n</tr>\n<tr>\n<td>templateStatus</td>\n<td>surveyTemplates</td>\n<td>String</td>\n<td>Current status of the survey template (e.g., \"Active\")</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["surveys3-templates"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specifies the status of the survey templates to retrieve. The parameter allows you to filter the results based on whether the templates are currently active, in design, being tested, closed, or for internal use. If this parameter is not provided, the endpoint will return templates of all statuses. Valid values: \"Active\", \"Design\", \"Test\", \"Closed\", \"Internal\"</p>\n","type":"text/plain"},"key":"templateStatus","value":"<string>"},{"disabled":true,"description":{"content":"<p>Specifies the type of survey templates to retrieve. This parameter filters the results to return templates that are of a normal survey format, designed for conversational use, or intended for kiosk displays. If this parameter is not provided, the endpoint will return templates of all types. Valid values: \"Normal\", \"Conversational\", \"Kiosk\"</p>\n","type":"text/plain"},"key":"templateType","value":"<string>"}],"variable":[]}},"response":[{"id":"5acae524-a88b-49a1-b88e-77aa8041fcb1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/surveys3-templates?templateType=Conversational","protocol":"https","host":["api","reputation","com"],"path":["v3","surveys3-templates"],"query":[{"key":"templateStatus","value":"<string>","description":"Template Status of Survey Template to retrieve. Valid values: \n\"Active\"\"Design\"\"Test\"\"Closed\"\"Internal\"","disabled":true},{"key":"templateType","value":"Conversational","description":"Template type of Survey Template to retrieve. Valid values: \"Normal\"\"Conversational\"\"Kiosk\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"1458"},{"key":"etag","value":"W/\"5b2-iFlVxJtVvZu0qe0Dt/8p7Oa4rCg\""},{"key":"date","value":"Sun, 29 Oct 2023 22:52:14 GMT"},{"key":"x-envoy-upstream-service-time","value":"207"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"surveyTemplates\": [\n        {\n            \"id\": \"5bea76e77aee7f7c3a93d26b\",\n            \"templateName\": \"Customer Feedback Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Design\"\n        },\n        {\n            \"id\": \"5bff298def910f1e2ab5d591\",\n            \"templateName\": \"Product Satisfaction Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Design\"\n        },\n        {\n            \"id\": \"5c900b9b46bdcd08f854f8b3\",\n            \"templateName\": \"Service Experience Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Active\"\n        },\n        {\n            \"id\": \"5cbf56a9314ad83a9d397d2d\",\n            \"templateName\": \"Employee Engagement Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Design\"\n        },\n        {\n            \"id\": \"5cd2fd8ca03d04493d8cf39d\",\n            \"templateName\": \"Brand Perception Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Test\"\n        },\n        {\n            \"id\": \"5f32f576b6f15500065a56d5\",\n            \"templateName\": \"New Product Feedback\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Active\"\n        },\n        {\n            \"id\": \"5f60fcf56ca95d00061c10e4\",\n            \"templateName\": \"Market Research Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Test\"\n        },\n        {\n            \"id\": \"5f6a5e9924cf9900069d470d\",\n            \"templateName\": \"Customer Loyalty Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Active\"\n        },\n        {\n            \"id\": \"5f7d3920b57d2d0006948fad\",\n            \"templateName\": \"Event Feedback Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Active\"\n        },\n        {\n            \"id\": \"5f8de0a22c429c00062220ed\",\n            \"templateName\": \"Website Usability Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Closed\"\n        },\n        {\n            \"id\": \"5fa9d7e6832b500006576a2e\",\n            \"templateName\": \"Employee Satisfaction Survey\",\n            \"templateType\": \"Conversational\",\n            \"templateStatus\": \"Test\"\n        }\n    ]\n}\n"}],"_postman_id":"5f55b794-c032-422c-9ed1-15c57d363093"},{"name":"Get Survey URL","id":"c4d9d898-495f-4524-b758-affd28230232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\r\n  \"templateID\": \"string\",\r\n  \"locationCode\": \"string\",\r\n  \"overSurveyProtection\": \"boolean\",\r\n  \"locale\": \"string\",\r\n  \"templateVariables\": {\r\n    \"Company\": \"string\",\r\n    \"StoreLocation\": \"string\",\r\n    \"VisitDate\": \"string\",\r\n    \"EmployeeName\": \"string\"\r\n  },\r\n  \"templateAnswers\": {\r\n    \"sq1\": \"string\",\r\n    \"sq2\": \"string\",\r\n    \"sq3\": \"string\",\r\n    \"sq4\": \"string\",\r\n    \"sq5\": \"string\"\r\n  },\r\n  \"customer\": {\r\n    \"emailID\": \"string\",\r\n    \"customerID\": \"string\",\r\n    \"name\": \"string\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/surveys-link","description":"<p>This POST request generates a unique survey link. This is particularly useful when you want to send a personalized survey to a specific customer, ensuring that the survey content is relevant to their experience and the information you have about them.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.onreadystatechange = function() {\n    if (this.readyState == 4 &amp;&amp; this.status == 200) {\n       // Handle the response here\n       console.log(this.responseText);\n    }\n};\nxhr.open(\"POST\", \"https://api.reputation.com/v3/surveys-link\", true);\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\n\nvar data = JSON.stringify({\n  \"templateID\": \"5f8d042fa317ea001c2ae7a4\",\n  \"locationCode\": \"TX-DAL-001\",\n  \"overSurveyProtection\": false,\n  \"locale\": \"en_US\",\n  \"templateVariables\": {\n    \"Company\": \"Chipotle Mexican Grill\",\n    \"StoreLocation\": \"Dallas, TX\",\n    \"VisitDate\": \"2023-10-29\",\n    \"EmployeeName\": \"Sarah\"\n  },\n  \"templateAnswers\": {\n    \"sq1\": \"4\",\n    \"sq2\": \"Yes\",\n    \"sq3\": \"The staff was very friendly and helpful\",\n    \"sq4\": \"Burrito Bowl\",\n    \"sq5\": \"5\"\n  },\n  \"customer\": {\n    \"emailID\": \"raymond.lee@example.com\",\n    \"customerID\": \"987654\",\n    \"name\": \"Raymond Lee\"\n  }\n});\n\nxhr.send(data);\n\n\n</code></pre>\n<h2 id=\"request-parameter-descriptions\">Request Parameter Descriptions</h2>\n<p>Request body parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Parent</strong></th>\n<th>Data Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>templateID <strong>(Required)</strong></td>\n<td>-</td>\n<td>String</td>\n<td>Template ID of the survey.</td>\n</tr>\n<tr>\n<td>locationCode <strong>(Required)</strong></td>\n<td>-</td>\n<td>String</td>\n<td>The location code the survey belongs to.</td>\n</tr>\n<tr>\n<td>overSurveyProtection <strong>(Required)</strong></td>\n<td>-</td>\n<td>Boolean</td>\n<td>Bool variable for over survey protection.</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>-</td>\n<td>String</td>\n<td>The locale that the survey was taken in. Defaults to en_US. Valid values: \"en_US\" \"es_ES\" \"es_MX\" \"fr_FR\" \"pt_BR\" \"pt_PT\" \"en_GB\" \"de_DE\" \"de_CH\" \"de_AT\" \"en_ZA\" \"fr_CA\"</td>\n</tr>\n<tr>\n<td>templateVariables</td>\n<td>-</td>\n<td>Object</td>\n<td>The information that represents the template variables and values for the url.</td>\n</tr>\n<tr>\n<td>variable</td>\n<td>templateVariables</td>\n<td>String</td>\n<td>The name of the template variable and its associatd value - ex.  <br />Company = \"Reputation\"</td>\n</tr>\n<tr>\n<td>templateAnswers</td>\n<td>-</td>\n<td>Object</td>\n<td>The information that represents the template question and answer values for the url.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>templateAnswers</td>\n<td>String</td>\n<td>The name of the question in the template and its associated value - ex. sq5 = \"5\"</td>\n</tr>\n<tr>\n<td>customer <strong>(Required)</strong></td>\n<td>-</td>\n<td>Object</td>\n<td>Customer information (customerID, emailID, or phone are required)</td>\n</tr>\n<tr>\n<td>emailID <strong>(Required if customerID or phone are omitted)</strong></td>\n<td>customer</td>\n<td>String</td>\n<td>The emailID of the survey taker</td>\n</tr>\n<tr>\n<td>phone <strong>(Required if emailID or customerID are omitted)</strong></td>\n<td>customer</td>\n<td>String</td>\n<td>The phone number of the survey taker</td>\n</tr>\n<tr>\n<td>customerID <strong>(required if emailID or phone are omitted)</strong></td>\n<td>customer</td>\n<td>String</td>\n<td>The customer's ID number.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>customer</td>\n<td>String</td>\n<td>The survey taker's name.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameter\">Response Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>The survey url.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["surveys-link"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"92fb3b1d-48eb-4808-a3f7-9d8a03e9584a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\r\n  \"templateID\": \"5f8d042fa317ea001c2ae7a4\",\r\n  \"locationCode\": \"TX-DAL-001\",\r\n  \"overSurveyProtection\": false,\r\n  \"locale\": \"en_US\",\r\n  \"templateVariables\": {\r\n    \"Company\": \"Chipotle Mexican Grill\",\r\n    \"StoreLocation\": \"Dallas, TX\",\r\n    \"VisitDate\": \"2023-10-29\",\r\n    \"EmployeeName\": \"Sarah\"\r\n  },\r\n  \"templateAnswers\": {\r\n    \"sq1\": \"4\",\r\n    \"sq2\": \"Yes\",\r\n    \"sq3\": \"The staff was very friendly and helpful\",\r\n    \"sq4\": \"Burrito Bowl\",\r\n    \"sq5\": \"5\"\r\n  },\r\n  \"customer\": {\r\n    \"emailID\": \"raymond.lee@example.com\",\r\n    \"customerID\": \"987654\",\r\n    \"name\": \"Raymond Lee\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/surveys-link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"226"},{"key":"etag","value":"W/\"e2-DNljCr5PVN95IrgbGmXEBkiJupk\""},{"key":"date","value":"Sun, 29 Oct 2023 23:54:17 GMT"},{"key":"x-envoy-upstream-service-time","value":"350"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://surveys.reputation.com/surveys3/run?templateId=5f8d042fa317ea001c2ae7a4&locationCode=CH&locale=en_US&question-value-sq5=5&property-value-Company=ChipotleMexicanGrill&requestReviewID=653ef0a94223785892500389\"\n}"}],"_postman_id":"c4d9d898-495f-4524-b758-affd28230232"}],"id":"e38434a8-a686-4a8a-b6ea-46ac66e3e2ae","description":"<p>The <strong>Surveys</strong> collection of API endpoints provides a comprehensive set of tools for managing and interacting with survey templates, generating survey links, and retrieving survey results. This collection is designed to cater to various survey-related needs, ensuring flexibility and ease of use for developers and businesses alike.</p>\n","_postman_id":"e38434a8-a686-4a8a-b6ea-46ac66e3e2ae"},{"name":"/Surveys2-Results (Deprecated Collection)","item":[{"name":"Get Result (Deprecated)","id":"777d87cb-e1a8-430e-9ef8-386cba999d47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/surveys2-results?id=5c53dab7077c1063d4a3ba0c","description":"<p>Retrieves a survey result</p>\n","urlObject":{"path":["surveys2-results"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>(Required) Survey result to retrieve</p>\n","type":"text/plain"},"key":"id","value":"5c53dab7077c1063d4a3ba0c"}],"variable":[]}},"response":[{"id":"070b94c1-aed1-4586-8e77-b2662b0dd617","name":"The survey result that was requested.","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.reputation.com/v3/surveys2-results?id=5c53dab7077c1063d4a3ba0c","protocol":"https","host":["api","reputation","com"],"path":["v3","surveys2-results"],"query":[{"key":"id","value":"5c53dab7077c1063d4a3ba0c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"createdDate\": 0,\n  \"surveyTemplateID\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTaker\": {\n    \"name\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\"\n  },\n  \"answers\": {\n    \"property1\": [\n      \"string\"\n    ],\n    \"property2\": [\n      \"string\"\n    ]\n  },\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"status\": \"Started\",\n  \"flags\": [\n    \"READ\"\n  ]\n}"}],"_postman_id":"777d87cb-e1a8-430e-9ef8-386cba999d47"},{"name":"Save Result (Deprecated)","id":"e89ae3d1-5d56-45cc-ba88-405f980633b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"string\",\n  \"createdDate\": 0,\n  \"surveyTemplateID\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTaker\": {\n    \"name\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\"\n  },\n  \"answers\": {\n    \"property1\": [\n      \"string\"\n    ],\n    \"property2\": [\n      \"string\"\n    ]\n  },\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"status\": \"Started\",\n  \"flags\": [\n    \"READ\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/surveys2-results","description":"<p>Saves a survey result</p>\n","urlObject":{"path":["surveys2-results"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9bd2f4a6-2812-4fb6-b0a4-a63b1f9ef752","name":"The survey result that was saved","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"id\": \"string\",\n  \"createdDate\": 0,\n  \"surveyTemplateID\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTaker\": {\n    \"name\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\"\n  },\n  \"answers\": {\n    \"property1\": [\n      \"string\"\n    ],\n    \"property2\": [\n      \"string\"\n    ]\n  },\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"status\": \"Started\",\n  \"flags\": [\n    \"READ\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/surveys2-results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"createdDate\": 0,\n  \"surveyTemplateID\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTaker\": {\n    \"name\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\"\n  },\n  \"answers\": {\n    \"property1\": [\n      \"string\"\n    ],\n    \"property2\": [\n      \"string\"\n    ]\n  },\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"status\": \"Started\",\n  \"flags\": [\n    \"READ\"\n  ]\n}"}],"_postman_id":"e89ae3d1-5d56-45cc-ba88-405f980633b4"},{"name":"Create URL From Encrypted (Deprecated)","id":"8c4a95e7-63d1-4b83-b3f5-91a6d905f01a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"properties\": {\n    \"some-property-name\": \"some-property-value\"\n  },\n  \"answers\": {\n    \"some-question-id\": [\n      \"some-question-value\",\n      \"some-other-question-value\"\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/surveys2-results/create-url-from-encrypted?templateID=5c53dab7077c1063d4a3ba0c&locationID=23435","description":"<p>Creates a URL that can be used to resume a survey using an encrypted set of information.</p>\n","urlObject":{"path":["surveys2-results","create-url-from-encrypted"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>(Required) Survey template to render</p>\n","type":"text/plain"},"key":"templateID","value":"5c53dab7077c1063d4a3ba0c"},{"description":{"content":"<p>(Required) Location that the result will be tied to</p>\n","type":"text/plain"},"key":"locationID","value":"23435"}],"variable":[]}},"response":[{"id":"c5aeafc0-a2c5-4b2b-8835-d7f5c2fefbe6","name":"Endpoint that can be used to render the survey.","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"properties\": {\n    \"some-property-name\": \"some-property-value\"\n  },\n  \"answers\": {\n    \"some-question-id\": [\n      \"some-question-value\",\n      \"some-other-question-value\"\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.reputation.com/v3/surveys2-results/create-url-from-encrypted?templateID=dolor ut&locationID=dolor ut","protocol":"https","host":["api","reputation","com"],"path":["v3","surveys2-results","create-url-from-encrypted"],"query":[{"key":"templateID","value":"dolor ut"},{"key":"locationID","value":"dolor ut"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"https://surveys.reputation.com/surveys/#/XYZ\""}],"_postman_id":"8c4a95e7-63d1-4b83-b3f5-91a6d905f01a"}],"id":"03a56f79-d03e-4cd8-8219-917811db8926","description":"<p>This collection is designed to handle the management of surveys and the analysis of survey results. However, please be aware that this collection has been deprecated. To access the most up-to-date and enhanced functionalities, we strongly recommend transitioning to the <strong>Surveys</strong> collection, which offers a comprehensive suite of endpoints to better cater to your survey-related requirements.</p>\n","_postman_id":"03a56f79-d03e-4cd8-8219-917811db8926"},{"name":"/Surveys3-Results (Deprecated)","item":[{"name":"Retrieve Survey Result (Deprecated)","id":"def3133d-5954-48a5-93d4-199d62fe564f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/surveys3-results/:surveyID?surveyTemplateID=5c53dab7077c1063d4a3ba0c","description":"<p>Retrieves a survey result</p>\n","urlObject":{"path":["surveys3-results",":surveyID"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>(Required) Id of the survey that the result belongs to</p>\n","type":"text/plain"},"key":"surveyTemplateID","value":"5c53dab7077c1063d4a3ba0c"}],"variable":[{"description":{"content":"<p>(Required) Survey result to retrieve</p>\n","type":"text/plain"},"type":"any","value":"5c53dab7077c1063d4a3ba4r","key":"surveyID"}]}},"response":[{"id":"b0bfb520-197a-4bb4-9384-bf9689c07e32","name":"The survey result that was requested.","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/surveys3-results/:surveyID?surveyTemplateID=5c53dab7077c1063d4a3ba0c","host":["{{baseUrl}}"],"path":["surveys3-results",":surveyID"],"query":[{"key":"surveyTemplateID","value":"5c53dab7077c1063d4a3ba0c"}],"variable":[{"key":"surveyID","value":"5c53dab7077c1063d4a3ba4r","description":"(Required) Survey result to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"updatedDate\": 0,\n  \"tenantID\": \"string\",\n  \"locationName\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTemplateID\": \"string\",\n  \"surveyTakenDate\": 0,\n  \"answers\": [\n    {\n      \"answerID\": \"string\",\n      \"answerValues\": [\n        \"string\"\n      ],\n      \"shownOptions\": [\n        \"string\"\n      ]\n    }\n  ],\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"resultStatus\": \"Started\",\n  \"templateStatus\": \"Active\",\n  \"flags\": [\n    \"READ\"\n  ]\n}"}],"_postman_id":"def3133d-5954-48a5-93d4-199d62fe564f"},{"name":"Save Survey Result (Deprecated)","id":"1112e29b-8923-4569-9b1a-6bfd6bfbcaaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"string\",\n  \"updatedDate\": 0,\n  \"tenantID\": \"string\",\n  \"locationName\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTemplateID\": \"string\",\n  \"surveyTakenDate\": 0,\n  \"answers\": [\n    {\n      \"answerID\": \"string\",\n      \"answerValues\": [\n        \"string\"\n      ],\n      \"shownOptions\": [\n        \"string\"\n      ]\n    }\n  ],\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"resultStatus\": \"Started\",\n  \"templateStatus\": \"Active\",\n  \"flags\": [\n    \"READ\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/surveys3-results","description":"<p>Saves a survey result</p>\n","urlObject":{"path":["surveys3-results"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9416f209-01f4-42d4-bd2f-cfe5f70c7e51","name":"The survey result that was saved","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"id\": \"string\",\n  \"updatedDate\": 0,\n  \"tenantID\": \"string\",\n  \"locationName\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTemplateID\": \"string\",\n  \"surveyTakenDate\": 0,\n  \"answers\": [\n    {\n      \"answerID\": \"string\",\n      \"answerValues\": [\n        \"string\"\n      ],\n      \"shownOptions\": [\n        \"string\"\n      ]\n    }\n  ],\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"resultStatus\": \"Started\",\n  \"templateStatus\": \"Active\",\n  \"flags\": [\n    \"READ\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/surveys3-results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"updatedDate\": 0,\n  \"tenantID\": \"string\",\n  \"locationName\": \"string\",\n  \"locationID\": \"string\",\n  \"surveyTemplateID\": \"string\",\n  \"surveyTakenDate\": 0,\n  \"answers\": [\n    {\n      \"answerID\": \"string\",\n      \"answerValues\": [\n        \"string\"\n      ],\n      \"shownOptions\": [\n        \"string\"\n      ]\n    }\n  ],\n  \"properties\": {\n    \"property1\": \"string\",\n    \"property2\": \"string\"\n  },\n  \"locale\": \"en_US\",\n  \"externalID\": \"string\",\n  \"resultStatus\": \"Started\",\n  \"templateStatus\": \"Active\",\n  \"flags\": [\n    \"READ\"\n  ]\n}"}],"_postman_id":"1112e29b-8923-4569-9b1a-6bfd6bfbcaaa"}],"id":"4d1d9516-8c20-4eae-80b9-d04312321cef","description":"<p>This collection is designed to handle the management of surveys and the analysis of survey results. However, please be aware that this collection has been deprecated. To access the most up-to-date and enhanced functionalities, we strongly recommend transitioning to the <strong>Surveys</strong> collection, which offers a comprehensive suite of endpoints to better cater to your survey-related requirements.</p>\n","_postman_id":"4d1d9516-8c20-4eae-80b9-d04312321cef"},{"name":"/Tenants","item":[{"name":"Get Tenants","id":"75b1e049-e472-4e93-97df-bcc8b9f390e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your Agency key>"}],"url":"{{baseUrl}}/tenants","description":"<p>Retrieve a list of tenants in the Reputation platform. This endpoint is ideal for quickly accessing details about various tenants, including their names, contact information, industry IDs, and the modules they are using. This endpoint is particularly useful for managing and understanding the scope of tenants under your purview, ensuring efficient oversight and analysis of multiple accounts.</p>\n<p><strong>NOTE</strong>: This API is intended for only for Agency customers who manage multiple tenant accounts on Reputation platform.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/tenants?offset=0&amp;limit=2\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your Agency key\");\nxhr.onreadystatechange = function () {\n  if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n    console.log(xhr.responseText);\n  }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenants</td>\n<td>-</td>\n<td>Object Array</td>\n<td>Array of tenant objects.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>tenants</td>\n<td>string</td>\n<td>Unique identifier of the tenant.</td>\n</tr>\n<tr>\n<td>agencyID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier of the agency associated with the tenant.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the tenant.</td>\n</tr>\n<tr>\n<td>contactName</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>contactEmail</td>\n<td>tenants</td>\n<td>string</td>\n<td>Email address of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>skuIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of SKU identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of module identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleSources</td>\n<td>tenants</td>\n<td>object</td>\n<td>Key:Value pairs of Module Ids and Source Ids.</td>\n</tr>\n<tr>\n<td>(module ID)</td>\n<td>moduleSources</td>\n<td>array of strings</td>\n<td>Specific sources for a given module, such as 'listing-auditing', 'listing-correcting', etc.</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant's data is HIPAA/US compliant. Default is false.</td>\n</tr>\n<tr>\n<td>industryID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier for the industry associated with the tenant.</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>tenants</td>\n<td>string</td>\n<td>URL of the tenant's logo. Minimum size is 400x400 px</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of tags associated with the tenant.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant is active.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>tenants</td>\n<td>string</td>\n<td>Current state of the tenant. Valid values: 'Active', 'Paused' 'Terminated'.</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant was created.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant's information was last updated.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Object</td>\n<td>Pagination object.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer</td>\n<td>The offset value used in the current response.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer</td>\n<td>The limit value determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 tenants, with a maximum possible limit of 2,000.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>paging</td>\n<td>string</td>\n<td>URL to retrieve the previous set of results.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>URL to retrieve the next set of results.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tenants"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Specify an offset to start the list of tenants from a specific point in the dataset. Useful for pagination. The maximum allowable offset is 100,000.</p>\n","type":"text/plain"},"key":"offset","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 tenants, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer (int64)>"}],"variable":[]}},"response":[{"id":"e4310abc-c639-4e2b-aab2-59f91ff8d8b7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your Agency key"}],"url":{"raw":"https://api.reputation.com/v3/tenants?offset=0&limit=2","protocol":"https","host":["api","reputation","com"],"path":["v3","tenants"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4998"},{"key":"etag","value":"W/\"1386-/sg2CVi8bnMbKyuaWDtNxlfC83s\""},{"key":"date","value":"Sun, 05 Nov 2023 21:54:26 GMT"},{"key":"x-envoy-upstream-service-time","value":"66"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"tenants\": [\n        {\n            \"id\": \"5a7b73ee12345\",\n            \"agencyID\": \"Reputation\",\n            \"name\": \"Downtown Dental Care\",\n            \"contactName\": \"John Doe\",\n            \"contactEmail\": \"johndoe@downtowndental.com\",\n            \"skuIDs\": [\n                \"R4B-S-B-PLAT-PU\"\n            ],\n            \"moduleIDs\": [\n                \"analytic-reporting\",\n                \"platform-dashboarding\",\n                \"review-monitoring\"\n            ],\n            \"moduleSources\": {\n                \"listing-auditing\": [\"GOOGLE_PLACES\", \"YELP\"],\n                \"listing-correcting\": [\"GOOGLE_PLACES\"]\n            },\n            \"encrypted\": true,\n            \"industryID\": \"health-care-dentists\",\n            \"logo\": \"https://example.com/logos/downtowndental.png\",\n            \"tags\": [\"Dental Care\", \"Orthodontics\"],\n            \"active\": true,\n            \"state\": \"Active\",\n            \"createdDate\": \"2020-01-06T10:36:02\",\n            \"updatedDate\": \"2021-01-10T09:14:22\"\n        },\n        {\n            \"id\": \"5b9d8ef212346\",\n            \"agencyID\": \"Reputation\",\n            \"name\": \"City Medical Clinic\",\n            \"contactName\": \"Alice Smith\",\n            \"contactEmail\": \"alice.smith@citymedclinic.com\",\n            \"skuIDs\": [\"R4B-S-B-GOLD-PU\"],\n            \"moduleIDs\": [\n                \"analytic-operating\",\n                \"platform-managing\",\n                \"social-publishing\"\n            ],\n            \"moduleSources\": {\n                \"platform-syndication\": [\"FACEBOOK\"]\n            },\n            \"encrypted\": true,\n            \"industryID\": \"health-care-clinics\",\n            \"logo\": \"https://example.com/logos/citymedclinic.png\",\n            \"tags\": [\"General Practice\", \"Pediatrics\"],\n            \"active\": true,\n            \"state\": \"Active\",\n            \"createdDate\": \"2019-05-22T01:20:59\",\n            \"updatedDate\": \"2021-02-10T09:14:22\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 2,\n        \"previous\": null,\n        \"next\": \"https://api.reputation.com/v3/tenants?offset=2&limit=2\"\n    }\n}"}],"_postman_id":"75b1e049-e472-4e93-97df-bcc8b9f390e1"},{"name":"Save Tenant","id":"f4bca06e-77d0-4f4e-a79f-8d7dbd937d90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your Agency key>"}],"body":{"mode":"raw","raw":"{\n    \"tenant\": [\n        {\n            \"id\": \"string\",\n            \"agencyID\": \"string\",\n            \"name\": \"string\",\n            \"contactName\": \"string\",\n            \"contactEmail\": \"string\",\n            \"skuIDs\": [\n                \"string\"\n            ],\n            \"moduleIDs\": [\n                \"string\"\n            ],\n            \"moduleSources\": {\n                \"listing-auditing\": [\"string\"],\n                \"listing-correcting\": [\"string\"]\n            },\n            \"encrypted\": \"boolean\",\n            \"industryID\": \"string\",\n            \"logo\": \"string\",\n            \"tags\": [\"string\"],\n            \"active\": \"boolean\",\n            \"state\": \"string\"\n        }\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/tenants","description":"<p>Create or save tenant information within the system. This endpoint is crucial for managing tenant data, which includes details about names, contacts, and the specific services or modules each tenant utilizes.</p>\n<p><strong>NOTE</strong>: This API is intended for only for Agency customers who manage multiple tenant accounts on Reputation platform.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var data = JSON.stringify({\n  \"tenant\": [\n    {\n      \"id\": \"5a7b73ee12345\",\n      \"agencyID\": \"Dental\",\n      \"name\": \"Downtown Dental Care\",\n      \"contactName\": \"John Doe\",\n      \"contactEmail\": \"johndoe@downtowndental.com\",\n      \"skuIDs\": [\n        \"R4B-S-B-PLAT-PU\"\n      ],\n      \"moduleIDs\": [\n        \"analytic-reporting\",\n        \"platform-dashboarding\",\n        \"review-monitoring\"\n      ],\n      \"moduleSources\": {\n        \"listing-auditing\": [\"GOOGLE_PLACES\", \"YELP\"],\n        \"listing-correcting\": [\"GOOGLE_PLACES\"]\n      },\n      \"encrypted\": true,\n      \"industryID\": \"health-care-dentists\",\n      \"logo\": \"https://example.com/logos/downtowndental.png\",\n      \"tags\": [\"Dental Care\", \"Orthodontics\"],\n      \"active\": true,\n      \"state\": \"Active\"\n    }\n  ]\n});\nvar xhr = new XMLHttpRequest();\nxhr.withCredentials = true;\nxhr.addEventListener(\"readystatechange\", function() {\n  if(this.readyState === 4) {\n    console.log(this.responseText);\n  }\n});\nxhr.open(\"POST\", \"https://api.reputation.com/v3/tenants\");\nxhr.setRequestHeader(\"x-api-key\", \"Your Agency key\");\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<p>Parameters included in the request body.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenant</td>\n<td>-</td>\n<td>Object</td>\n<td>The tenant object.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>tenants</td>\n<td>string</td>\n<td>Unique identifier of the tenant.</td>\n</tr>\n<tr>\n<td>agencyID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier of the agency associated with the tenant.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the tenant.</td>\n</tr>\n<tr>\n<td>contactName</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>contactEmail</td>\n<td>tenants</td>\n<td>string</td>\n<td>Email address of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>skuIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of SKU identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of module identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleSources</td>\n<td>tenants</td>\n<td>object</td>\n<td>Key:Value pairs of Module Ids and Source Ids.</td>\n</tr>\n<tr>\n<td>(module ID)</td>\n<td>moduleSources</td>\n<td>array of strings</td>\n<td>Specific sources for a given module, such as 'listing-auditing', 'listing-correcting', etc.</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant's data is HIPAA/US compliant. Default is false.</td>\n</tr>\n<tr>\n<td>industryID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier for the industry associated with the tenant.</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>tenants</td>\n<td>string</td>\n<td>URL of the tenant's logo. Minimum size is 400x400 px</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of tags associated with the tenant.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant is active.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>tenants</td>\n<td>string</td>\n<td>Current state of the tenant. Valid values: 'Active', 'Paused' 'Terminated'.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenant</td>\n<td>-</td>\n<td>Object</td>\n<td>The tenant object.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>tenants</td>\n<td>string</td>\n<td>Unique identifier of the tenant.</td>\n</tr>\n<tr>\n<td>agencyID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier of the agency associated with the tenant.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the tenant.</td>\n</tr>\n<tr>\n<td>contactName</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>contactEmail</td>\n<td>tenants</td>\n<td>string</td>\n<td>Email address of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>skuIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of SKU identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of module identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleSources</td>\n<td>tenants</td>\n<td>object</td>\n<td>Key:Value pairs of Module Ids and Source Ids.</td>\n</tr>\n<tr>\n<td>(module ID)</td>\n<td>moduleSources</td>\n<td>array of strings</td>\n<td>Specific sources for a given module, such as 'listing-auditing', 'listing-correcting', etc.</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant's data is HIPAA/US compliant. Default is false.</td>\n</tr>\n<tr>\n<td>industryID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier for the industry associated with the tenant.</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>tenants</td>\n<td>string</td>\n<td>URL of the tenant's logo. Minimum size is 400x400 px</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of tags associated with the tenant.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant is active.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>tenants</td>\n<td>string</td>\n<td>Current state of the tenant. Valid values: 'Active', 'Paused' 'Terminated'.</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant was created.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant's information was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tenants"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"725a52f9-35f1-4406-8e7f-6a4504deb6d2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your Agency key"}],"body":{"mode":"raw","raw":"{\n    \"tenant\": [\n        {\n            \"id\": \"5a7b73ee12345\",\n            \"agencyID\": \"Dental\",\n            \"name\": \"Downtown Dental Care\",\n            \"contactName\": \"John Doe\",\n            \"contactEmail\": \"johndoe@downtowndental.com\",\n            \"skuIDs\": [\n                \"R4B-S-B-PLAT-PU\"\n            ],\n            \"moduleIDs\": [\n                \"analytic-reporting\",\n                \"platform-dashboarding\",\n                \"review-monitoring\"\n            ],\n            \"moduleSources\": {\n                \"listing-auditing\": [\"GOOGLE_PLACES\", \"YELP\"],\n                \"listing-correcting\": [\"GOOGLE_PLACES\"]\n            },\n            \"encrypted\": true,\n            \"industryID\": \"health-care-dentists\",\n            \"logo\": \"https://example.com/logos/downtowndental.png\",\n            \"tags\": [\"Dental Care\", \"Orthodontics\"],\n            \"active\": true,\n            \"state\": \"Active\"\n        }\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/tenants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"tenant\": [\n        {\n            \"id\": \"5a7b73ee12345\",\n            \"agencyID\": \"Dental\",\n            \"name\": \"Downtown Dental Care\",\n            \"contactName\": \"John Doe\",\n            \"contactEmail\": \"johndoe@downtowndental.com\",\n            \"skuIDs\": [\n                \"R4B-S-B-PLAT-PU\"\n            ],\n            \"moduleIDs\": [\n                \"analytic-reporting\",\n                \"platform-dashboarding\",\n                \"review-monitoring\"\n            ],\n            \"moduleSources\": {\n                \"listing-auditing\": [\"GOOGLE_PLACES\", \"YELP\"],\n                \"listing-correcting\": [\"GOOGLE_PLACES\"]\n            },\n            \"encrypted\": true,\n            \"industryID\": \"health-care-dentists\",\n            \"logo\": \"https://example.com/logos/downtowndental.png\",\n            \"tags\": [\"Dental Care\", \"Orthodontics\"],\n            \"active\": true,\n            \"state\": \"Active\",\n            \"createdDate\": \"2023-01-06T10:36:22\",\n            \"updatedDate\": \"2023-01-06T10:36:22\"\n        }\n    ]\n}\n"}],"_postman_id":"f4bca06e-77d0-4f4e-a79f-8d7dbd937d90"},{"name":"Get Tenant","id":"4576ec23-09c9-48d0-bd2d-4b876ee83d87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your Agency key>"}],"url":"{{baseUrl}}/tenants/:tenantID","description":"<p>This endpoint allows you to retrieve detailed information about a specific tenant by using their unique tenant ID. By providing the tenant ID in the URL, you can access comprehensive data related to that particular tenant, including their name, contact information, active status, associated modules, and other relevant details. This is particularly useful for managing and understanding individual tenant profiles within your system.</p>\n<p><strong>NOTE</strong>: This API is intended for only for Agency customers who manage multiple tenant accounts on Reputation platform.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/tenants/5a7b73ee12345\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your Agency key\");\nxhr.onreadystatechange = function () {\n  if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n    console.log(xhr.responseText);\n  }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenant</td>\n<td>-</td>\n<td>Object</td>\n<td>Tenant Object.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>tenants</td>\n<td>string</td>\n<td>Unique identifier of the tenant.</td>\n</tr>\n<tr>\n<td>agencyID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier of the agency associated with the tenant.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the tenant.</td>\n</tr>\n<tr>\n<td>contactName</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>contactEmail</td>\n<td>tenants</td>\n<td>string</td>\n<td>Email address of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>skuIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of SKU identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of module identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleSources</td>\n<td>tenants</td>\n<td>object</td>\n<td>Key:Value pairs of Module Ids and Source Ids.</td>\n</tr>\n<tr>\n<td>(module ID)</td>\n<td>moduleSources</td>\n<td>array of strings</td>\n<td>Specific sources for a given module, such as 'listing-auditing', 'listing-correcting', etc.</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant's data is HIPAA/US compliant. Default is false.</td>\n</tr>\n<tr>\n<td>industryID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier for the industry associated with the tenant.</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>tenants</td>\n<td>string</td>\n<td>URL of the tenant's logo. Minimum size is 400x400 px</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of tags associated with the tenant.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant is active.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>tenants</td>\n<td>string</td>\n<td>Current state of the tenant. Valid values: 'Active', 'Paused' 'Terminated'.</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant was created.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant's information was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tenants",":tenantID"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) Unique identifier of the tenant.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"tenantID"}]}},"response":[{"id":"f2ded70c-2026-40b5-b8e5-f5bb94ecd066","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your Agency key"}],"url":{"raw":"https://api.reputation.com/v3/tenants/:tenantID","protocol":"https","host":["api","reputation","com"],"path":["v3","tenants",":tenantID"],"variable":[{"key":"tenantID","value":"5a7b73ee12345"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"tenant\": [\n        {\n            \"id\": \"5a7b73ee12345\",\n            \"agencyID\": \"Dental\",\n            \"name\": \"Downtown Dental Care\",\n            \"contactName\": \"John Doe\",\n            \"contactEmail\": \"johndoe@downtowndental.com\",\n            \"skuIDs\": [\n                \"R4B-S-B-PLAT-PU\"\n            ],\n            \"moduleIDs\": [\n                \"analytic-reporting\",\n                \"platform-dashboarding\",\n                \"review-monitoring\"\n            ],\n            \"moduleSources\": {\n                \"listing-auditing\": [\"GOOGLE_PLACES\", \"YELP\"],\n                \"listing-correcting\": [\"GOOGLE_PLACES\"]\n            },\n            \"encrypted\": true,\n            \"industryID\": \"health-care-dentists\",\n            \"logo\": \"https://example.com/logos/downtowndental.png\",\n            \"tags\": [\"Dental Care\", \"Orthodontics\"],\n            \"active\": true,\n            \"state\": \"Active\",\n            \"createdDate\": \"2023-01-06T10:36:22\",\n            \"updatedDate\": \"2023-01-06T10:36:22\"\n        }\n    ]\n}\n"}],"_postman_id":"4576ec23-09c9-48d0-bd2d-4b876ee83d87"},{"name":"Pause Tenant","id":"b0a35b9f-442d-4f2c-bd38-dd99283b5b12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your Agency Key>"}],"url":"{{baseUrl}}/tenants/:tenantID/pause","description":"<p>Inactivate a tenant in the system. By specifying the unique <strong>tenantID</strong> in the URL, you can change the status of the identified tenant to <strong>Paused</strong>. This action is particularly useful for temporarily disabling a tenant's access or services without permanently deleting their data or settings.</p>\n<p><strong>NOTE</strong>: This API is intended for only for Agency customers who manage multiple tenant accounts on Reputation platform.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"PUT\", \"https://api.reputation.com/v3/tenants/5a7b73ee12345/pause\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your Agency key\");\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\nxhr.onreadystatechange = function () {\n   if (xhr.readyState === 4) {\n      console.log(xhr.status);\n      console.log(xhr.responseText);\n   }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenant</td>\n<td>-</td>\n<td>Object</td>\n<td>Tenant Object.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>tenants</td>\n<td>string</td>\n<td>Unique identifier of the tenant.</td>\n</tr>\n<tr>\n<td>agencyID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier of the agency associated with the tenant.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the tenant.</td>\n</tr>\n<tr>\n<td>contactName</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>contactEmail</td>\n<td>tenants</td>\n<td>string</td>\n<td>Email address of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>skuIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of SKU identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of module identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleSources</td>\n<td>tenants</td>\n<td>object</td>\n<td>Key:Value pairs of Module Ids and Source Ids.</td>\n</tr>\n<tr>\n<td>(module ID)</td>\n<td>moduleSources</td>\n<td>array of strings</td>\n<td>Specific sources for a given module, such as 'listing-auditing', 'listing-correcting', etc.</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant's data is HIPAA/US compliant. Default is false.</td>\n</tr>\n<tr>\n<td>industryID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier for the industry associated with the tenant.</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>tenants</td>\n<td>string</td>\n<td>URL of the tenant's logo. Minimum size is 400x400 px</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of tags associated with the tenant.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant is active.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>tenants</td>\n<td>string</td>\n<td>Current state of the tenant. Valid values: 'Active', 'Paused' 'Terminated'.</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant was created.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant's information was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tenants",":tenantID","pause"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) Unique identifier of the tenant.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"tenantID"}]}},"response":[{"id":"a97ba1d5-19e0-46b3-ba9b-e060c95f6d0e","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"Your Agency key"}],"url":{"raw":"https://api.reputation.com/v3/tenants/:tenantID/pause","protocol":"https","host":["api","reputation","com"],"path":["v3","tenants",":tenantID","pause"],"variable":[{"key":"tenantID","value":"5a7b73ee12345","description":"(Required) Tenant Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"tenant\": [\n        {\n            \"id\": \"5a7b73ee12345\",\n            \"agencyID\": \"Dental\",\n            \"name\": \"Downtown Dental Care\",\n            \"contactName\": \"John Doe\",\n            \"contactEmail\": \"johndoe@downtowndental.com\",\n            \"skuIDs\": [\n                \"R4B-S-B-PLAT-PU\"\n            ],\n            \"moduleIDs\": [\n                \"analytic-reporting\",\n                \"platform-dashboarding\",\n                \"review-monitoring\"\n            ],\n            \"moduleSources\": {\n                \"listing-auditing\": [\"GOOGLE_PLACES\", \"YELP\"],\n                \"listing-correcting\": [\"GOOGLE_PLACES\"]\n            },\n            \"encrypted\": true,\n            \"industryID\": \"health-care-dentists\",\n            \"logo\": \"https://example.com/logos/downtowndental.png\",\n            \"tags\": [\"Dental Care\", \"Orthodontics\"],\n            \"active\": true,\n            \"state\": \"Paused\",\n            \"createdDate\": \"2023-01-06T10:36:22\",\n            \"updatedDate\": \"2023-01-06T10:36:22\"\n        }\n    ]\n}\n"}],"_postman_id":"b0a35b9f-442d-4f2c-bd38-dd99283b5b12"},{"name":"Unpause Tenant","id":"47de428f-4ad4-4cd1-868a-9ba6312598bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/tenants/:tenantID/unpause","description":"<p>Used to reactivate a tenant within the system. By specifying the tenant's unique identifier in the URL, this endpoint enables you to change the status of a previously inactivated or paused tenant back to active. This action effectively resumes all operations and functionalities associated with that specific tenant, reinstating access to services and features within the Reputation platform.</p>\n<p><strong>NOTE</strong>: This API is intended for only for Agency customers who manage multiple tenant accounts on Reputation platform.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"PUT\", \"https://api.reputation.com/v3/tenants/5a7b73ee12345/unpause\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your Agency key\");\nxhr.onreadystatechange = function () {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        console.log(xhr.responseText);\n    }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenant</td>\n<td>-</td>\n<td>Object</td>\n<td>Tenant Object.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>tenants</td>\n<td>string</td>\n<td>Unique identifier of the tenant.</td>\n</tr>\n<tr>\n<td>agencyID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier of the agency associated with the tenant.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the tenant.</td>\n</tr>\n<tr>\n<td>contactName</td>\n<td>tenants</td>\n<td>string</td>\n<td>Name of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>contactEmail</td>\n<td>tenants</td>\n<td>string</td>\n<td>Email address of the contact person for the tenant.</td>\n</tr>\n<tr>\n<td>skuIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of SKU identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleIDs</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of module identifiers associated with the tenant.</td>\n</tr>\n<tr>\n<td>moduleSources</td>\n<td>tenants</td>\n<td>object</td>\n<td>Key:Value pairs of Module Ids and Source Ids.</td>\n</tr>\n<tr>\n<td>(module ID)</td>\n<td>moduleSources</td>\n<td>array of strings</td>\n<td>Specific sources for a given module, such as 'listing-auditing', 'listing-correcting', etc.</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant's data is HIPAA/US compliant. Default is false.</td>\n</tr>\n<tr>\n<td>industryID</td>\n<td>tenants</td>\n<td>string</td>\n<td>Identifier for the industry associated with the tenant.</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>tenants</td>\n<td>string</td>\n<td>URL of the tenant's logo. Minimum size is 400x400 px</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>tenants</td>\n<td>array of strings</td>\n<td>List of tags associated with the tenant.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>tenants</td>\n<td>boolean</td>\n<td>Indicates if the tenant is active.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>tenants</td>\n<td>string</td>\n<td>Current state of the tenant. Valid values: 'Active', 'Paused' 'Terminated'.</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant was created.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>tenants</td>\n<td>string</td>\n<td>Date and time when the tenant's information was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tenants",":tenantID","unpause"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) Unique identifier of the tenant.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"tenantID"}]}},"response":[{"id":"e882f3bb-52fa-42f1-a27b-83690cb0ff4c","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"Your Agency key"}],"url":{"raw":"https://api.reputation.com/v3/tenants/:tenantID/unpause","protocol":"https","host":["api","reputation","com"],"path":["v3","tenants",":tenantID","unpause"],"variable":[{"key":"tenantID","value":"5a7b73ee12345","description":"(Required) Tenant Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"tenant\": [\n        {\n            \"id\": \"5a7b73ee12345\",\n            \"agencyID\": \"Dental\",\n            \"name\": \"Downtown Dental Care\",\n            \"contactName\": \"John Doe\",\n            \"contactEmail\": \"johndoe@downtowndental.com\",\n            \"skuIDs\": [\n                \"R4B-S-B-PLAT-PU\"\n            ],\n            \"moduleIDs\": [\n                \"analytic-reporting\",\n                \"platform-dashboarding\",\n                \"review-monitoring\"\n            ],\n            \"moduleSources\": {\n                \"listing-auditing\": [\"GOOGLE_PLACES\", \"YELP\"],\n                \"listing-correcting\": [\"GOOGLE_PLACES\"]\n            },\n            \"encrypted\": true,\n            \"industryID\": \"health-care-dentists\",\n            \"logo\": \"https://example.com/logos/downtowndental.png\",\n            \"tags\": [\"Dental Care\", \"Orthodontics\"],\n            \"active\": true,\n            \"state\": \"Active\",\n            \"createdDate\": \"2023-01-06T10:36:22\",\n            \"updatedDate\": \"2023-01-06T10:36:22\"\n        }\n    ]\n}\n"}],"_postman_id":"47de428f-4ad4-4cd1-868a-9ba6312598bb"}],"id":"28cda842-dbdb-4675-b24a-c4ecddecaaa4","description":"<p>The Tenants API collection offers a comprehensive suite of endpoints to manage tenant information on the Reputation platform. With these endpoints, you can retrieve detailed tenant data, save new tenant records, and control tenant status by activating or inactivating them as needed.</p>\n<p><strong>NOTE</strong>: This API is intended for only for Agency customers who manage multiple tenant accounts on Reputation platform.</p>\n","_postman_id":"28cda842-dbdb-4675-b24a-c4ecddecaaa4"},{"name":"/Tickets","item":[{"name":"Get Tickets","id":"80264c5d-3008-4602-ab70-03f1664559d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{baseUrl}}/tickets","description":"<p>Retrieves a list of tickets from the Reputation platform. You can specify various filters and sorting options to obtain a refined list of tickets based on requirements such as Queue IDs, Stage IDs, and location IDs. Additionally, you can specify date ranges for ticket creation and update dates to narrow down the results.</p>\n<p><strong>Note:</strong> This API refers to tickets that have been created from customer feedback and<br />allows your teams to track the resolution timeline for taking action on the feedback.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/tickets?limit=3\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.onreadystatechange = function () {\n  if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n    console.log(xhr.responseText);\n  }\n};\nxhr.send();\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tickets</td>\n<td>-</td>\n<td>object array</td>\n<td>Object containing the list of tickets</td>\n</tr>\n<tr>\n<td>id</td>\n<td>tickets</td>\n<td>integer</td>\n<td>Unique identifier for the ticket</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>tickets</td>\n<td>integer</td>\n<td>ID of the user who created the ticket</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td>tickets</td>\n<td>integer</td>\n<td>ID of the user who last updated the ticket</td>\n</tr>\n<tr>\n<td>appellation</td>\n<td>tickets</td>\n<td>string</td>\n<td>Name of title of the reporter. Valid values: \"Miss\" \"Mr\" \"Mrs\" \"Ms\" \"Dr\" \"Sir\"</td>\n</tr>\n<tr>\n<td>reporterName</td>\n<td>tickets</td>\n<td>string</td>\n<td>Name of the person who reported the issue</td>\n</tr>\n<tr>\n<td>reporterEmail</td>\n<td>tickets</td>\n<td>string</td>\n<td>Email address of the reporter</td>\n</tr>\n<tr>\n<td>reporterPhone</td>\n<td>tickets</td>\n<td>string</td>\n<td>Phone number of the reporter</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>tickets</td>\n<td>string</td>\n<td>Brief comment or description of the issue</td>\n</tr>\n<tr>\n<td>userDefined</td>\n<td>tickets</td>\n<td>object</td>\n<td>Contains custom user-defined information</td>\n</tr>\n<tr>\n<td>source</td>\n<td>userDefined</td>\n<td>string</td>\n<td>Key:value pair indicating the source of the review. Ex - \"locationName\" : \"Tech Solutions Inc\"</td>\n</tr>\n<tr>\n<td>sentiment</td>\n<td>userDefined</td>\n<td>string</td>\n<td>Sentiment associated with the ticket (\"None\", \"Positive\", etc.)</td>\n</tr>\n<tr>\n<td>closedBy</td>\n<td>tickets</td>\n<td>integer</td>\n<td>ID of the user who closed the ticket</td>\n</tr>\n<tr>\n<td>fullComment</td>\n<td>tickets</td>\n<td>string</td>\n<td>Full comment or description of the issue</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>tickets</td>\n<td>array</td>\n<td>Tags associated with the ticket</td>\n</tr>\n<tr>\n<td>closedExplanation</td>\n<td>tickets</td>\n<td>string</td>\n<td>Explanation for why the ticket was closed</td>\n</tr>\n<tr>\n<td>attachments</td>\n<td>tickets</td>\n<td>array</td>\n<td>List of attachment IDs associated with the ticket</td>\n</tr>\n<tr>\n<td>version</td>\n<td>tickets</td>\n<td>integer</td>\n<td>Version number of the ticket</td>\n</tr>\n<tr>\n<td>stageID</td>\n<td>tickets</td>\n<td>string</td>\n<td>ID of the current stage of the ticket</td>\n</tr>\n<tr>\n<td>queueID</td>\n<td>tickets</td>\n<td>string</td>\n<td>ID of the queue the ticket is in</td>\n</tr>\n<tr>\n<td>escalationID</td>\n<td>tickets</td>\n<td>string</td>\n<td>ID of the escalation associated with the ticket</td>\n</tr>\n<tr>\n<td>rootCauses</td>\n<td>tickets</td>\n<td>array</td>\n<td>List of root causes identified for the ticket</td>\n</tr>\n<tr>\n<td>surveyResultID</td>\n<td>tickets</td>\n<td>string</td>\n<td>ID of the survey result associated with the ticket (if any)</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>tickets</td>\n<td>datetime</td>\n<td>Date and time when the ticket was created</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>tickets</td>\n<td>datetime</td>\n<td>Date and time when the ticket was last updated</td>\n</tr>\n<tr>\n<td>closedDate</td>\n<td>tickets</td>\n<td>datetime</td>\n<td>Date and time when the ticket was closed</td>\n</tr>\n<tr>\n<td>originalDueDate</td>\n<td>tickets</td>\n<td>datetime</td>\n<td>Original due date of the ticket</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>tickets</td>\n<td>datetime</td>\n<td>Current due date of the ticket</td>\n</tr>\n<tr>\n<td>ticketType</td>\n<td>tickets</td>\n<td>string</td>\n<td>Type of the ticket. Valid values: \"Review\" \"Surveys\" \"Review Response\" \"User Definded\"</td>\n</tr>\n<tr>\n<td>reviewID</td>\n<td>tickets</td>\n<td>string</td>\n<td>ID of the review associated with the ticket (if any)</td>\n</tr>\n<tr>\n<td>tagNames</td>\n<td>tickets</td>\n<td>array</td>\n<td>Names of tags associated with the ticket</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>tickets</td>\n<td>object array</td>\n<td>Notes added to the ticket</td>\n</tr>\n<tr>\n<td>id</td>\n<td>notes</td>\n<td>string</td>\n<td>Unique identifier of the note</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>notes</td>\n<td>string</td>\n<td>Content or text of the note</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>notes</td>\n<td>string</td>\n<td>Date and time when the note was created, in ISO 8601 format</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>notes</td>\n<td>string</td>\n<td>Name of the user who created the note</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>notes</td>\n<td>string</td>\n<td>Date and time when the note was last updated, in ISO 8601 format</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td>notes</td>\n<td>string</td>\n<td>Name of the user who last updated the note</td>\n</tr>\n<tr>\n<td>reporterAddress</td>\n<td>tickets</td>\n<td>object</td>\n<td>Address information of the reporter</td>\n</tr>\n<tr>\n<td>streetAddress1</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>First line address name of the reporter</td>\n</tr>\n<tr>\n<td>streetAddress2</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Second line address of the reporter</td>\n</tr>\n<tr>\n<td>streetNumber</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's street number</td>\n</tr>\n<tr>\n<td>locality</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's city</td>\n</tr>\n<tr>\n<td>region</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's province, state, or region</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's zip or postal code</td>\n</tr>\n<tr>\n<td>country</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's country</td>\n</tr>\n<tr>\n<td>stageName</td>\n<td>tickets</td>\n<td>string</td>\n<td>Name of the current stage of the ticket</td>\n</tr>\n<tr>\n<td>queueName</td>\n<td>tickets</td>\n<td>string</td>\n<td>Name of the queue the ticket is in</td>\n</tr>\n<tr>\n<td>escalationName</td>\n<td>tickets</td>\n<td>string</td>\n<td>Name of the escalation associated with the ticket</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>tickets</td>\n<td>string</td>\n<td>ID of the location associated with the ticket</td>\n</tr>\n<tr>\n<td>customFields</td>\n<td>tickets</td>\n<td>object array</td>\n<td>Object containing list of custom fields</td>\n</tr>\n<tr>\n<td>id</td>\n<td>customFields</td>\n<td>string</td>\n<td>Identification for the custom field</td>\n</tr>\n<tr>\n<td>version</td>\n<td>customFields</td>\n<td>string</td>\n<td>Custom field version number</td>\n</tr>\n<tr>\n<td>ticketDefinitionID</td>\n<td>customFields</td>\n<td>string</td>\n<td>Unique identification for the ticket definition</td>\n</tr>\n<tr>\n<td>ticketDefinitionName</td>\n<td>customFields</td>\n<td>string</td>\n<td>Name of the ticket definition</td>\n</tr>\n<tr>\n<td>fieldValues</td>\n<td>customFields</td>\n<td>object</td>\n<td>Object containing values for the custom field</td>\n</tr>\n<tr>\n<td>fieldMetaId</td>\n<td>fieldValues</td>\n<td>string</td>\n<td>Meta ID for the custom field</td>\n</tr>\n<tr>\n<td>fieldName</td>\n<td>fieldValeus</td>\n<td>string</td>\n<td>Name of the custom field</td>\n</tr>\n<tr>\n<td>fieldType</td>\n<td>fieldValues</td>\n<td>string</td>\n<td>Type of custom field. Valid values: \"Boolean\" \"DateTime\" \"Double\" \"Integer\" \"String\"</td>\n</tr>\n<tr>\n<td>values</td>\n<td>fieldValues</td>\n<td>string array</td>\n<td>Values of the custom field</td>\n</tr>\n<tr>\n<td>valueNames</td>\n<td>fieldValues</td>\n<td>string array</td>\n<td>Labels for dropdown ids. Null in case of other fieldType</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>object</td>\n<td>Object containing pagination details</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>integer</td>\n<td>Offset for pagination</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>integer</td>\n<td>Limit for number of items returned per page</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>string</td>\n<td>URL for the next set of items (if available)</td>\n</tr>\n<tr>\n<td>range</td>\n<td>dateRange</td>\n<td>string</td>\n<td>Date range for the ticket data</td>\n</tr>\n<tr>\n<td>from</td>\n<td>dateRange</td>\n<td>datetime</td>\n<td>Start date for the ticket data</td>\n</tr>\n<tr>\n<td>to</td>\n<td>dateRange</td>\n<td>datetime</td>\n<td>End date for the ticket data</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tickets"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Offsets the start of the results by the specified number, up to a maximum of 100,000.</p>\n","type":"text/plain"},"key":"offset","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 tickets, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>Filters tickets by Queue IDs (comma-separated).</p>\n","type":"text/plain"},"key":"queueIds","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Filters tickets by Stage IDs (comma-separated).</p>\n","type":"text/plain"},"key":"stageIds","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Filters tickets by Location IDs (comma-separated).</p>\n","type":"text/plain"},"key":"locationIds","value":"<string array>"},{"disabled":true,"description":{"content":"<p>Deprecated - use from instead.</p>\n","type":"text/plain"},"key":"startDate","value":"<string>"},{"disabled":true,"description":{"content":"<p>Deprecated - use to instead.</p>\n","type":"text/plain"},"key":"endDate","value":"<string>"},{"disabled":true,"description":{"content":"<p>Filters tickets based on the creation date (ISO Date format).</p>\n","type":"text/plain"},"key":"from","value":"<string>"},{"disabled":true,"description":{"content":"<p>Filters tickets based on the end date (ISO Date format).</p>\n","type":"text/plain"},"key":"to","value":"<string>"},{"disabled":true,"description":{"content":"<p>Filters tickets based on a predefined date range. Valid vaues: \"Today\" \"Yesterday\" \"ThisWeek\" \"PreviousWeek\" \"ThisMonth\" \"PreviousMonth\" \"ThisQuarter\" \"PreviousQuarter\" \"ThisYear\" \"PreviousYear\" \"YearToDate\" \"LifeToDate\" \"Last7Days\" \"Last30Days\" \"Last60Days\" \"Last90Days\" \"Last6Months\" \"Last1Year\" \"Last2Years\" \"Last3Years\"</p>\n","type":"text/plain"},"key":"range","value":"<string>"},{"disabled":true,"description":{"content":"<p>Applies date range filters to either 'createdDate', 'updatedDate', or 'createdOrUpdatedDate'. Default is 'createdDate'.</p>\n","type":"text/plain"},"key":"rangeFor","value":"<string>"},{"disabled":true,"description":{"content":"<p>Filters tickets based on the last updated date (ISO Date format).</p>\n","type":"text/plain"},"key":"lastUpdatedDate","value":"<string>"},{"disabled":true,"description":{"content":"<p>Sorts the results by specified fields and order. Valid values: \"dueDate\" \"createdDate\" \"updatedDate\" \"closedDate\"</p>\n","type":"text/plain"},"key":"sort","value":"<string>"}],"variable":[]}},"response":[{"id":"d3903a2f-d2ed-4c45-969e-8260c2d8dab9","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/tickets?limit=3","protocol":"https","host":["api","reputation","com"],"path":["v3","tickets"],"query":[{"key":"offset","value":"0","disabled":true},{"key":"limit","value":"3"},{"key":"queueIds","value":"5555c8a82d8ada360a6eb555","disabled":true},{"key":"stageIds","value":"55541c3f0064d1ff40c77aa7","disabled":true},{"key":"locationIds","value":"23435","disabled":true},{"key":"startDate","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"endDate","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"from","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"to","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"range","value":"PreviousWeek","disabled":true},{"key":"rangeFor","value":"createdDate","disabled":true},{"key":"lastUpdatedDate","value":"2001-06-17T15:40:12.790Z","disabled":true},{"key":"sort","value":"updatedDate","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"2718"},{"key":"etag","value":"W/\"a9e-vcdxar7wLuQZixfemHbZ/kf00xU\""},{"key":"date","value":"Mon, 06 Nov 2023 13:44:37 GMT"},{"key":"x-envoy-upstream-service-time","value":"157"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"tickets\": [\n        {\n            \"id\": 1023456,\n            \"createdBy\": 123456,\n            \"updatedBy\": 123456,\n            \"reporterName\": \"Jane Smith\",\n            \"reporterEmail\": \"jane.smith@email.com\",\n            \"reporterPhone\": \"555-1234\",\n            \"comment\": \"Issue with online ordering system.\",\n            \"userDefined\": {\n                \"locationName\": \"Main Street Cafe\",\n                \"sentiment\": \"Negative\"\n            },\n            \"closedBy\": 123456,\n            \"fullComment\": \"Customer reported a problem with online orders not processing.\",\n            \"tags\": [\"online\", \"order\", \"issue\"],\n            \"closedExplanation\": \"Issue resolved after updating the ordering system.\",\n            \"attachments\": [\"5d8918cdc263793ad055893d\"],\n            \"version\": 1,\n            \"stageID\": \"5b639bd100ec60515e605279\",\n            \"queueID\": \"5d51f5088b007937993adb96\",\n            \"escalationID\": \"5c339585ddda941ab4d0de31\",\n            \"rootCauses\": [\"System Error\"],\n            \"surveyResultID\": \"5f60fcf56ca95d00061c10e4\",\n            \"createdDate\": \"2023-11-01T09:00:00Z\",\n            \"updatedDate\": \"2023-11-02T10:00:00Z\",\n            \"closedDate\": \"2023-11-03T11:00:00Z\",\n            \"originalDueDate\": \"2023-11-04T12:00:00Z\",\n            \"dueDate\": \"2023-11-04T12:00:00Z\",\n            \"ticketType\": \"Issue\",\n            \"reviewID\": \"5f7d3920b57d2d0006948fad\",\n            \"tagNames\": [\"urgent\", \"customer-facing\"],\n            \"notes\": [\n                {\n                    \"id\":\"note10230b\",\n                    \"comment\": \"Urgent issue affecting multiple customers.\",\n                    \"createdBy\": 123457,\n                    \"createdDate\": \"2023-11-01T09:30:00Z\"\n                }\n            ],\n            \"reporterAddress\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"Anytown\",\n                \"state\": \"CA\",\n                \"zip\": \"12345\"\n            },\n            \"stageName\": \"Resolved\",\n            \"queueName\": \"Customer Issues\",\n            \"escalationName\": \"High Priority\",\n            \"locationID\": \"Main Street Cafe - ID\"\n        },\n        {\n            \"id\": 1023467,\n            \"createdBy\": 123458,\n            \"updatedBy\": 123459,\n            \"reporterName\": \"Tom Johnson\",\n            \"reporterEmail\": \"tom.johnson@email.com\",\n            \"reporterPhone\": \"555-5678\",\n            \"comment\": \"Feedback on recent service visit.\",\n            \"userDefined\": {\n                \"locationName\": \"City Electronics\",\n                \"sentiment\": \"Positive\"\n            },\n            \"closedBy\": null,\n            \"fullComment\": \"Great service experience, very helpful staff.\",\n            \"tags\": [\"service\", \"feedback\"],\n            \"closedExplanation\": null,\n            \"attachments\": [],\n            \"version\": 1,\n            \"stageID\": \"5b639bd100ec60515e605280\",\n            \"queueID\": \"5d51f5088b007937993adb97\",\n            \"escalationID\": null,\n            \"rootCauses\": [],\n            \"surveyResultID\": null,\n            \"createdDate\": \"2023-11-02T08:30:00Z\",\n            \"updatedDate\": \"2023-11-02T09:15:00Z\",\n            \"closedDate\": null,\n            \"originalDueDate\": null,\n            \"dueDate\": \"2023-11-05T08:30:00Z\",\n            \"ticketType\": \"Feedback\",\n            \"reviewID\": null,\n            \"tagNames\": [\"positive\"],\n            \"notes\": [\n                {\n                    \"id\":\"note10211b\",\n                    \"comment\": \"Customer praised staff assistance.\",\n                    \"createdBy\": 123460,\n                    \"createdDate\": \"2023-11-02T08:45:00Z\"\n                }\n            ],\n            \"reporterAddress\": {\n                \"street\": \"456 Elm St\",\n                \"city\": \"Greenville\",\n                \"state\": \"TX\",\n                \"zip\": \"78901\"\n            },\n            \"stageName\": \"Open\",\n            \"queueName\": \"Feedback\",\n            \"escalationName\": null,\n            \"locationID\": \"City Electronics - ID\"\n        },\n        {\n            \"id\": 1023478,\n            \"createdBy\": 123461,\n            \"updatedBy\": 123462,\n            \"reporterName\": \"Emily Nguyen\",\n            \"reporterEmail\": \"emily.nguyen@email.com\",\n            \"reporterPhone\": \"555-9012\",\n            \"comment\": \"Inquiry about product availability.\",\n            \"userDefined\": {\n                \"locationName\": \"Tech World\",\n                \"sentiment\": \"Neutral\"\n            },\n            \"closedBy\": null,\n            \"fullComment\": \"Customer inquiring about the availability of specific laptop models.\",\n            \"tags\": [\"inquiry\", \"product\"],\n            \"closedExplanation\": null,\n            \"attachments\": [],\n            \"version\": 1,\n            \"stageID\": \"5b639bd100ec60515e605281\",\n            \"queueID\": \"5d51f5088b007937993adb98\",\n            \"escalationID\": null,\n            \"rootCauses\": [],\n            \"surveyResultID\": null,\n            \"createdDate\": \"2023-11-03T11:20:00Z\",\n            \"updatedDate\": \"2023-11-04T12:10:00Z\",\n            \"closedDate\": null,\n            \"originalDueDate\": null,\n            \"dueDate\": \"2023-11-06T11:20:00Z\",\n            \"ticketType\": \"Inquiry\",\n            \"reviewID\": null,\n            \"tagNames\": [\"product query\"],\n            \"notes\": [\n                {   \"id\":\"note1020b\",\n                    \"comment\": \"Followed up with product team on availability.\",\n                    \"createdBy\": 123463,\n                    \"createdDate\": \"2023-11-03T11:40:00Z\"\n                }\n            ],\n            \"reporterAddress\": {\n                \"street\": \"789 Pine St\",\n                \"city\": \"Techville\",\n                \"state\": \"NY\",\n                \"zip\": \"45678\"\n            },\n            \"stageName\": \"Open\",\n            \"queueName\": \"Inquiries\",\n            \"escalationName\": null,\n            \"locationID\": \"Tech World - ID\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 3,\n        \"next\": \"https://api.reputation.com/v3/tickets?offset=3&limit=3\"\n    },\n    \"dateRange\": {\n        \"range\": \"Last7Days\",\n        \"from\": \"2023-11-01T00:00:00Z\",\n        \"to\": \"2023-11-07T23:59:59Z\"\n    }\n}\n"}],"_postman_id":"80264c5d-3008-4602-ab70-03f1664559d7"},{"name":"Save Ticket","id":"ea4ed11c-09f4-4a1b-888d-c1cebf23aacd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"ticket\": {\n    \"reporterName\": \"String\",\n    \"comment\": \"String\",\n    \"userDefined\": {\n      \"sentiment\": \"String\",\n      \"source\": \"String\"\n    },\n    \"fullComment\": \"String\",\n    \"stageID\": \"String\",\n    \"queueID\": \"String\",\n    \"originalDueDate\": \"Datetime ISO 8601\",\n    \"dueDate\": \"Datetime ISO 8601\",\n    \"ticketType\": \"String\",\n    \"stageName\": \"String\",\n    \"queueName\": \"String\",\n    \"locationID\": \"String\",\n    \"customFields\": {\n      \"ticketDefinitionID\": \"String\",\n      \"fieldValues\": [\n        {\n          \"fieldMetaId\": \"String\",\n          \"fieldMetaName\": \"String\",\n          \"values\": [\n            \"String\"\n          ]\n        },\n        {\n          \"fieldMetaId\": \"String\",\n          \"fieldMetaName\": \"String\",\n          \"values\": [\n            \"String\"\n          ]\n        }\n      ]\n    }\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/tickets","description":"<p>You can use this endpoint to create a new ticket in the system. By submitting relevant details such as the issue, location, and contact information, you can efficiently log and track customer issues, feedback, or inquiries. This tool is essential for managing customer interactions and ensuring timely responses to their needs.</p>\n<h2 id=\"updating-existing-tickets\">Updating Existing Tickets</h2>\n<p>This endpoint also allows for the updating of existing tickets, provided they are not in a <strong>Closed</strong> stage. When making your request:</p>\n<ol>\n<li>Always include both <strong>stageID</strong> and <strong>stageName</strong>.</li>\n<li>If the ticket is Closed and needs updating, first change its <strong>stageID</strong> and <strong>stageName</strong> to reflect a different status.</li>\n<li>Proceed with the necessary updates to your ticket. Do not change the <strong>stageID</strong> and <strong>stageName</strong> during this step.</li>\n</ol>\n<h2 id=\"using-datetime-custom-fields\">Using DateTime Custom Fields</h2>\n<p>When creating fields with the <code>DataType</code> of <code>DateTime</code>, you must provide the date and time as a Unix epoch timestamp, not in ISO format. For instance, to represent the date \"2024-05-01T00:00:00.000Z\" correctly, you would convert this to its Unix epoch timestamp equivalent when using the POST method.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr\">JavaScript XHR</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var data = JSON.stringify({\n  \"ticket\": {\n    \"reporterName\": \"John Smith\",\n    \"reporterEmail\": \"john.smith@example.com\",\n    \"reporterPhone\": \"123-456-7890\",\n    \"comment\": \"New issue encountered with the service.\",\n    \"userDefined\": {\n      \"locationName\": \"Main Office\",\n      \"sentiment\": \"Neutral\"\n    },\n    \"stageID\": \"5b639bd100ec60515e605279\",\n    \"queueID\": \"5d51f5088b007937993adb96\",\n    \"dueDate\": \"2023-11-05T10:30:00Z\",\n    \"ticketType\": \"UserDefined\",\n    \"locationID\": \"SA\"\n  }\n});\nvar xhr = new XMLHttpRequest();\nxhr.withCredentials = true;\nxhr.addEventListener(\"readystatechange\", function() {\n  if(this.readyState === 4) {\n    console.log(this.responseText);\n  }\n});\nxhr.open(\"POST\", \"https://api.reputation.com/v3/tickets\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.setRequestHeader(\"Content-Type\", \"application/json\");\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<p>Data added to the request body.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ticket</td>\n<td>integer</td>\n<td>Unique identifier for the ticket</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>ticket</td>\n<td>integer</td>\n<td>ID of the user who created the ticket</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td>ticket</td>\n<td>integer</td>\n<td>ID of the user who last updated the ticket</td>\n</tr>\n<tr>\n<td>appellation</td>\n<td>ticket</td>\n<td>string</td>\n<td>Name of title of the reporter. Valid values: \"Miss\" \"Mr\" \"Mrs\" \"Ms\" \"Dr\" \"Sir\"</td>\n</tr>\n<tr>\n<td>reporterName</td>\n<td>ticket</td>\n<td>string</td>\n<td>Name of the person who reported the issue</td>\n</tr>\n<tr>\n<td>reporterEmail</td>\n<td>ticket</td>\n<td>string</td>\n<td>Email address of the reporter</td>\n</tr>\n<tr>\n<td>reporterPhone</td>\n<td>ticket</td>\n<td>string</td>\n<td>Phone number of the reporter</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>ticket</td>\n<td>string</td>\n<td>Brief comment or description of the issue</td>\n</tr>\n<tr>\n<td>userDefined</td>\n<td>ticket</td>\n<td>object</td>\n<td>Contains custom user-defined information</td>\n</tr>\n<tr>\n<td>source</td>\n<td>userDefined</td>\n<td>string</td>\n<td>Key:value pair indicating the source of the review. Ex - \"locationName\" : \"Tech Solutions Inc\"</td>\n</tr>\n<tr>\n<td>sentiment</td>\n<td>userDefined</td>\n<td>string</td>\n<td>Sentiment associated with the ticket (\"None\", \"Positive\", etc.)</td>\n</tr>\n<tr>\n<td>closedBy</td>\n<td>ticket</td>\n<td>integer</td>\n<td>ID of the user who closed the ticket</td>\n</tr>\n<tr>\n<td>fullComment</td>\n<td>ticket</td>\n<td>string</td>\n<td>Full comment or description of the issue</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>ticket</td>\n<td>array</td>\n<td>Tags associated with the ticket</td>\n</tr>\n<tr>\n<td>closedExplanation</td>\n<td>ticket</td>\n<td>string</td>\n<td>Explanation for why the ticket was closed</td>\n</tr>\n<tr>\n<td>attachments</td>\n<td>ticket</td>\n<td>array</td>\n<td>List of attachment IDs associated with the ticket</td>\n</tr>\n<tr>\n<td>version</td>\n<td>ticket</td>\n<td>integer</td>\n<td>Version number of the ticket</td>\n</tr>\n<tr>\n<td>stageID</td>\n<td>ticket</td>\n<td>string</td>\n<td>ID of the current stage of the ticket</td>\n</tr>\n<tr>\n<td>queueID</td>\n<td>ticket</td>\n<td>string</td>\n<td>ID of the queue the ticket is in</td>\n</tr>\n<tr>\n<td>escalationID</td>\n<td>ticket</td>\n<td>string</td>\n<td>ID of the escalation associated with the ticket</td>\n</tr>\n<tr>\n<td>rootCauses</td>\n<td>ticket</td>\n<td>array</td>\n<td>List of root causes identified for the ticket</td>\n</tr>\n<tr>\n<td>surveyResultID</td>\n<td>ticket</td>\n<td>string</td>\n<td>ID of the survey result associated with the ticket (if any)</td>\n</tr>\n<tr>\n<td>closedDate</td>\n<td>ticket</td>\n<td>datetime</td>\n<td>Date and time when the ticket was closed</td>\n</tr>\n<tr>\n<td>originalDueDate</td>\n<td>ticket</td>\n<td>datetime</td>\n<td>Original due date of the ticket</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>ticket</td>\n<td>datetime</td>\n<td>Current due date of the ticket</td>\n</tr>\n<tr>\n<td>ticketType</td>\n<td>ticket</td>\n<td>string</td>\n<td>Type of the ticket. Valid values: \"Review\" \"Surveys\" \"Review Response\" \"User Definded\"</td>\n</tr>\n<tr>\n<td>reviewID</td>\n<td>ticket</td>\n<td>string</td>\n<td>ID of the review associated with the ticket (if any)</td>\n</tr>\n<tr>\n<td>tagNames</td>\n<td>ticket</td>\n<td>array</td>\n<td>Names of tags associated with the ticket</td>\n</tr>\n<tr>\n<td>stageName</td>\n<td>ticket</td>\n<td>string</td>\n<td>Name of the current stage of the ticket</td>\n</tr>\n<tr>\n<td>queueName</td>\n<td>ticket</td>\n<td>string</td>\n<td>Name of the queue the ticket is in</td>\n</tr>\n<tr>\n<td>escalationName</td>\n<td>ticket</td>\n<td>string</td>\n<td>Name of the escalation associated with the ticket</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>ticket</td>\n<td>string</td>\n<td>ID of the location associated with the ticket</td>\n</tr>\n<tr>\n<td>customFields</td>\n<td>ticket</td>\n<td>object array</td>\n<td>Object containing list of custom fields</td>\n</tr>\n<tr>\n<td>id</td>\n<td>customFields</td>\n<td>string</td>\n<td>Identification for the custom field</td>\n</tr>\n<tr>\n<td>version</td>\n<td>customFields</td>\n<td>string</td>\n<td>Custom field version number</td>\n</tr>\n<tr>\n<td>ticketDefinitionID</td>\n<td>customFields</td>\n<td>string</td>\n<td>Unique identification for the ticket definition</td>\n</tr>\n<tr>\n<td>ticketDefinitionName</td>\n<td>customFields</td>\n<td>string</td>\n<td>Name of the ticket definition</td>\n</tr>\n<tr>\n<td>fieldValues</td>\n<td>customFields</td>\n<td>object</td>\n<td>Object containing values for the custom field</td>\n</tr>\n<tr>\n<td>fieldMetaId</td>\n<td>fieldValues</td>\n<td>string</td>\n<td>Meta ID for the custom field</td>\n</tr>\n<tr>\n<td>fieldName</td>\n<td>fieldValeus</td>\n<td>string</td>\n<td>Name of the custom field</td>\n</tr>\n<tr>\n<td>fieldType</td>\n<td>fieldValues</td>\n<td>string</td>\n<td>Type of custom field. Valid values: \"Boolean\" \"DateTime\" \"Double\" \"Integer\" \"String\"</td>\n</tr>\n<tr>\n<td>values</td>\n<td>fieldValues</td>\n<td>string array</td>\n<td>Values of the custom field</td>\n</tr>\n<tr>\n<td>valueNames</td>\n<td>fieldValues</td>\n<td>string array</td>\n<td>Labels for dropdown ids. Null in case of other fieldType</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>-</td>\n<td>integer</td>\n<td>Unique identifier for the ticket</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>-</td>\n<td>integer</td>\n<td>ID of the user who created the ticket</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td>-</td>\n<td>integer</td>\n<td>ID of the user who last updated the ticket</td>\n</tr>\n<tr>\n<td>appellation</td>\n<td>-</td>\n<td>string</td>\n<td>Name of title of the reporter. Valid values: \"Miss\" \"Mr\" \"Mrs\" \"Ms\" \"Dr\" \"Sir\"</td>\n</tr>\n<tr>\n<td>reporterName</td>\n<td>-</td>\n<td>string</td>\n<td>Name of the person who reported the issue</td>\n</tr>\n<tr>\n<td>reporterEmail</td>\n<td>-</td>\n<td>string</td>\n<td>Email address of the reporter</td>\n</tr>\n<tr>\n<td>reporterPhone</td>\n<td>-</td>\n<td>string</td>\n<td>Phone number of the reporter</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>-</td>\n<td>string</td>\n<td>Brief comment or description of the issue</td>\n</tr>\n<tr>\n<td>userDefined</td>\n<td>-</td>\n<td>object</td>\n<td>Contains custom user-defined information</td>\n</tr>\n<tr>\n<td>source</td>\n<td>userDefined</td>\n<td>string</td>\n<td>Key:value pair indicating the source of the review. Ex - \"locationName\" : \"Tech Solutions Inc\"</td>\n</tr>\n<tr>\n<td>sentiment</td>\n<td>userDefined</td>\n<td>string</td>\n<td>Sentiment associated with the ticket (\"None\", \"Positive\", etc.)</td>\n</tr>\n<tr>\n<td>closedBy</td>\n<td>-</td>\n<td>integer</td>\n<td>ID of the user who closed the ticket</td>\n</tr>\n<tr>\n<td>fullComment</td>\n<td>-</td>\n<td>string</td>\n<td>Full comment or description of the issue</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>-</td>\n<td>array</td>\n<td>Tags associated with the ticket</td>\n</tr>\n<tr>\n<td>closedExplanation</td>\n<td>-</td>\n<td>string</td>\n<td>Explanation for why the ticket was closed</td>\n</tr>\n<tr>\n<td>attachments</td>\n<td>-</td>\n<td>array</td>\n<td>List of attachment IDs associated with the ticket</td>\n</tr>\n<tr>\n<td>version</td>\n<td>-</td>\n<td>integer</td>\n<td>Version number of the ticket</td>\n</tr>\n<tr>\n<td>stageID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the current stage of the ticket</td>\n</tr>\n<tr>\n<td>queueID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the queue the ticket is in</td>\n</tr>\n<tr>\n<td>escalationID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the escalation associated with the ticket</td>\n</tr>\n<tr>\n<td>rootCauses</td>\n<td>-</td>\n<td>array</td>\n<td>List of root causes identified for the ticket</td>\n</tr>\n<tr>\n<td>surveyResultID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the survey result associated with the ticket (if any)</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>-</td>\n<td>datetime</td>\n<td>Date and time when the ticket was created</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>-</td>\n<td>datetime</td>\n<td>Date and time when the ticket was last updated</td>\n</tr>\n<tr>\n<td>closedDate</td>\n<td>-</td>\n<td>datetime</td>\n<td>Date and time when the ticket was closed</td>\n</tr>\n<tr>\n<td>originalDueDate</td>\n<td>-</td>\n<td>datetime</td>\n<td>Original due date of the ticket</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>-</td>\n<td>datetime</td>\n<td>Current due date of the ticket</td>\n</tr>\n<tr>\n<td>ticketType</td>\n<td>-</td>\n<td>string</td>\n<td>Type of the ticket. Valid values: \"Review\" \"Surveys\" \"Review Response\" \"User Definded\"</td>\n</tr>\n<tr>\n<td>reviewID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the review associated with the ticket (if any)</td>\n</tr>\n<tr>\n<td>tagNames</td>\n<td>-</td>\n<td>array</td>\n<td>Names of tags associated with the ticket</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>-</td>\n<td>object array</td>\n<td>Notes added to the ticket</td>\n</tr>\n<tr>\n<td>id</td>\n<td>notes</td>\n<td>string</td>\n<td>Unique identifier of the note</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>notes</td>\n<td>string</td>\n<td>Content or text of the note</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>notes</td>\n<td>string</td>\n<td>Date and time when the note was created, in ISO 8601 format</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>notes</td>\n<td>string</td>\n<td>Name of the user who created the note</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>notes</td>\n<td>string</td>\n<td>Date and time when the note was last updated, in ISO 8601 format</td>\n</tr>\n<tr>\n<td>updatedBy</td>\n<td>notes</td>\n<td>string</td>\n<td>Name of the user who last updated the note</td>\n</tr>\n<tr>\n<td>reporterAddress</td>\n<td>-</td>\n<td>object</td>\n<td>Address information of the reporter</td>\n</tr>\n<tr>\n<td>streetAddress1</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>First line address name of the reporter</td>\n</tr>\n<tr>\n<td>streetAddress2</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Second line address of the reporter</td>\n</tr>\n<tr>\n<td>streetNumber</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's street number</td>\n</tr>\n<tr>\n<td>locality</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's city</td>\n</tr>\n<tr>\n<td>region</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's province, state, or region</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's zip or postal code</td>\n</tr>\n<tr>\n<td>country</td>\n<td>reporterAddress</td>\n<td>string</td>\n<td>Reporter's country</td>\n</tr>\n<tr>\n<td>stageName</td>\n<td>-</td>\n<td>string</td>\n<td>Name of the current stage of the ticket</td>\n</tr>\n<tr>\n<td>queueName</td>\n<td>-</td>\n<td>string</td>\n<td>Name of the queue the ticket is in</td>\n</tr>\n<tr>\n<td>escalationName</td>\n<td>-</td>\n<td>string</td>\n<td>Name of the escalation associated with the ticket</td>\n</tr>\n<tr>\n<td>locationID</td>\n<td>-</td>\n<td>string</td>\n<td>ID of the location associated with the ticket</td>\n</tr>\n<tr>\n<td>customFields</td>\n<td>-</td>\n<td>object array</td>\n<td>Object containing list of custom fields</td>\n</tr>\n<tr>\n<td>id</td>\n<td>customFields</td>\n<td>string</td>\n<td>Identification for the custom field</td>\n</tr>\n<tr>\n<td>version</td>\n<td>customFields</td>\n<td>string</td>\n<td>Custom field version number</td>\n</tr>\n<tr>\n<td>ticketDefinitionID</td>\n<td>customFields</td>\n<td>string</td>\n<td>Unique identification for the ticket definition</td>\n</tr>\n<tr>\n<td>ticketDefinitionName</td>\n<td>customFields</td>\n<td>string</td>\n<td>Name of the ticket definition</td>\n</tr>\n<tr>\n<td>fieldValues</td>\n<td>customFields</td>\n<td>object</td>\n<td>Object containing values for the custom field</td>\n</tr>\n<tr>\n<td>fieldMetaId</td>\n<td>fieldValues</td>\n<td>string</td>\n<td>Meta ID for the custom field</td>\n</tr>\n<tr>\n<td>fieldName</td>\n<td>fieldValeus</td>\n<td>string</td>\n<td>Name of the custom field</td>\n</tr>\n<tr>\n<td>fieldType</td>\n<td>fieldValues</td>\n<td>string</td>\n<td>Type of custom field. Valid values: \"Boolean\" \"DateTime\" \"Double\" \"Integer\" \"String\"</td>\n</tr>\n<tr>\n<td>values</td>\n<td>fieldValues</td>\n<td>string array</td>\n<td>Values of the custom field</td>\n</tr>\n<tr>\n<td>valueNames</td>\n<td>fieldValues</td>\n<td>string array</td>\n<td>Labels for dropdown ids. Null in case of other fieldType</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tickets"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b1eeff66-0f9d-4802-b9b6-8a9bd251b735","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n    \"ticket\" : {\n    \"reporterName\": \"John Smith\",\n    \"reporterEmail\": \"john.smith@example.com\",\n    \"reporterPhone\": \"123-456-7890\",\n    \"comment\": \"New issue encountered with the service.\",\n    \"userDefined\": {\n        \"locationName\": \"Main Office\",\n        \"sentiment\": \"Neutral\"\n    },\n    \"stageID\": \"5b639bd100ec60515e605279\",\n    \"queueID\": \"5d51f5088b007937993adb96\",\n    \"dueDate\": \"2023-11-05T10:30:00Z\",\n    \"ticketType\": \"UserDefined\",\n    \"locationID\": \"SA\"\n}\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/tickets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"844"},{"key":"etag","value":"W/\"34c-DINICGHEgNH7hp6l074+Gq9T+p4\""},{"key":"date","value":"Mon, 06 Nov 2023 13:42:10 GMT"},{"key":"x-envoy-upstream-service-time","value":"180"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 66236561,\n    \"createdBy\": 39514905,\n    \"updatedBy\": 39514905,\n    \"reporterName\": \"John Smith\",\n    \"reporterEmail\": \"john.smith@example.com\",\n    \"reporterPhone\": \"1234567890\",\n    \"comment\": \"New issue encountered with the service.\",\n    \"userDefined\": {\n        \"sentiment\": \"Neutral\",\n        \"locationName\": \"Main Office\"\n    },\n    \"closedBy\": 39514905,\n    \"fullComment\": null,\n    \"tags\": null,\n    \"closedExplanation\": null,\n    \"attachments\": null,\n    \"version\": 0,\n    \"stageID\": \"5b639bd100ec60515e605279\",\n    \"queueID\": \"5d51f5088b007937993adb96\",\n    \"escalationID\": null,\n    \"rootCauses\": [],\n    \"surveyResultID\": null,\n    \"createdDate\": \"2023-11-06T13:42:10.594Z\",\n    \"updatedDate\": \"2023-11-06T13:42:10.594Z\",\n    \"closedDate\": \"2023-11-06T13:42:10.592Z\",\n    \"originalDueDate\": null,\n    \"dueDate\": \"2023-11-07T13:42:10.582Z\",\n    \"ticketType\": \"UserDefined\",\n    \"reviewID\": null,\n    \"tagNames\": null,\n    \"notes\": [],\n    \"reporterAddress\": {},\n    \"stageName\": \"Closed\",\n    \"queueName\": \"Main\",\n    \"locationID\": \"SA\"\n}"}],"_postman_id":"ea4ed11c-09f4-4a1b-888d-c1cebf23aacd"},{"name":"Get Queues","id":"6aacb375-7a70-4f4f-898c-78127ff40bed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/ticket-queues","description":"<p>You can use this endpoint to retrieve a comprehensive list of all ticket queues within the system. This functionality allows you to view and understand the different categories or departments where tickets are organized and managed. Each queue is uniquely identified by an ID and has a specific name that describes its purpose or area of focus.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/ticket-queues\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\n\nxhr.onreadystatechange = function () {\n  if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n    console.log(xhr.responseText);\n  }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Unique ID for each ticket queue.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the ticket queue.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ticket-queues"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d3ae0aab-8934-4947-80f8-7db1bbf17f39","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":"https://api.reputation.com/v3/ticket-queues"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"601"},{"key":"etag","value":"W/\"259-MCrJbboFTRv6yEMwgcBvVTshuNc\""},{"key":"date","value":"Mon, 13 Nov 2023 23:53:59 GMT"},{"key":"x-envoy-upstream-service-time","value":"40"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"5e9f1234b4d2c63db8d7f1a7\",\n        \"name\": \"Customer Support\"\n    },\n    {\n        \"id\": \"61ae876571d9844cdaa7d56d\",\n        \"name\": \"Technical Issues\"\n    },\n    {\n        \"id\": \"60bf432930abc2b408426e58\",\n        \"name\": \"Billing Queries\"\n    }\n]\n"}],"_postman_id":"6aacb375-7a70-4f4f-898c-78127ff40bed"},{"name":"Get Stages","id":"bf33d8ae-e13a-4d8f-a659-ac60d99bbbf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/ticket-stages","description":"<p>You can use this endpoint to retrieve all ticket stages. This endpoint provides you with comprehensive information about each stage, including their IDs, names, and specific properties such as whether they are system-defined or custom, their order in the process flow, and whether they are marked as 'on hold'. This information helps you understand and manage the different stages that a ticket might go through in your workflow.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/ticket-stages\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\n\nxhr.onreadystatechange = function () {\n   if (xhr.readyState === 4) {\n      console.log(xhr.status);\n      console.log(xhr.responseText);\n   }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Unique identifier for the ticket stage.</td>\n</tr>\n<tr>\n<td>tenantID</td>\n<td>integer</td>\n<td>Identifier for the tenant associated with the ticket stage.</td>\n</tr>\n<tr>\n<td>agencyID</td>\n<td>integer</td>\n<td>Identifier for the agency associated with the ticket stage.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the ticket stage.</td>\n</tr>\n<tr>\n<td>system</td>\n<td>boolean</td>\n<td>Indicates whether the ticket stage is system-defined or custom.</td>\n</tr>\n<tr>\n<td>order</td>\n<td>integer</td>\n<td>Numeric value representing the order of the stage in the ticketing process.</td>\n</tr>\n<tr>\n<td>onHold</td>\n<td>boolean</td>\n<td>Indicates whether the ticket stage is marked as 'on hold'.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Type of the ticket stage (if applicable) - ex. \"Complaint\" , \"General Feedback\" , \"Comment\"</td>\n</tr>\n<tr>\n<td>ticketDefinitionIDs</td>\n<td>array</td>\n<td>Array of ticket definition IDs associated with the stage (if applicable).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ticket-stages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c899eaed-c960-4bbd-a970-d2df3c86e9f2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":"https://api.reputation.com/v3/ticket-stages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"487"},{"key":"etag","value":"W/\"1e7-uiUEs0HUAzxFOYu43gE3cgbHXSs\""},{"key":"date","value":"Tue, 14 Nov 2023 00:09:05 GMT"},{"key":"x-envoy-upstream-service-time","value":"414"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"5b639bd100ec60515e605279\",\n        \"tenantID\": 1990,\n        \"agencyID\": 1,\n        \"name\": \"Closed\",\n        \"system\": false,\n        \"order\": 2147483647,\n        \"onHold\": false,\n        \"type\": \"Complaint\",\n        \"ticketDefinitionIDs\": null\n    },\n    {\n        \"id\": \"5b639be200ec60515e60527a\",\n        \"tenantID\": 1990,\n        \"agencyID\": 1,\n        \"name\": \"In Progress\",\n        \"system\": false,\n        \"order\": 1,\n        \"onHold\": false,\n        \"type\": \"Comment\",\n        \"ticketDefinitionIDs\": null\n    },\n    {\n        \"id\": \"5b639bd100ec60515e605278\",\n        \"tenantID\": 1990,\n        \"agencyID\": 1,\n        \"name\": \"Open\",\n        \"system\": false,\n        \"order\": 0,\n        \"onHold\": false,\n        \"type\": \"General Feedback\",\n        \"ticketDefinitionIDs\": null\n    }\n]\n"}],"_postman_id":"bf33d8ae-e13a-4d8f-a659-ac60d99bbbf6"},{"name":"Get Ticket Definitions","id":"b0e532de-008a-4dba-a3d7-4f1319038fe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/ticket-types","description":"<p>You can use this endpoint to retrieve all available ticket types in your system. Each ticket type contains unique identifiers, labels, and associated field groups that define the structure and information required for each ticket type. The field groups within a ticket type include their own identifiers, labels, and specific metadata fields.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/ticket-types\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\n\nxhr.onreadystatechange = function () {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        console.log(xhr.responseText);\n    }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>-</td>\n<td>string</td>\n<td>Unique identifier for the ticket type.</td>\n</tr>\n<tr>\n<td>label</td>\n<td>-</td>\n<td>string</td>\n<td>Name or label of the ticket type.</td>\n</tr>\n<tr>\n<td>fieldGroups</td>\n<td>-</td>\n<td>array</td>\n<td>Array of field groups associated with the ticket type.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>fieldGroups</td>\n<td>string</td>\n<td>Unique identifier for the field group.</td>\n</tr>\n<tr>\n<td>label</td>\n<td>fieldGroups</td>\n<td>string</td>\n<td>Name or label of the field group.</td>\n</tr>\n<tr>\n<td>fieldMetas</td>\n<td>fieldGroups</td>\n<td>array</td>\n<td>Array of metadata fields associated with the field group.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>fieldMetas</td>\n<td>string</td>\n<td>Unique identifier for the metadata field.</td>\n</tr>\n<tr>\n<td>label</td>\n<td>fieldMetas</td>\n<td>string</td>\n<td>Name or label of the metadata field.</td>\n</tr>\n<tr>\n<td>dataType</td>\n<td>fieldMetas</td>\n<td>integer</td>\n<td>Data type of the metadata field (e.g., text, number, date, etc.).</td>\n</tr>\n<tr>\n<td>defaultValue</td>\n<td>fieldMetas</td>\n<td>string</td>\n<td>Default value for the metadata field, if any.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ticket-types"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"397a1338-357c-4a37-9098-a53c031981be","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":"https://api.reputation.com/v3/ticket-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"227"},{"key":"etag","value":"W/\"e3-B0qQFEy0A3S6+s8yz2NPQFHDkds\""},{"key":"date","value":"Tue, 14 Nov 2023 00:45:56 GMT"},{"key":"x-envoy-upstream-service-time","value":"80"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"620f8a1c4b5e7a12d345b9c2\",\n        \"label\": \"Customer Feedback\",\n        \"fieldGroups\": [\n            {\n                \"id\": \"620f8a1b4b5e7a12d345b9c1\",\n                \"label\": \"Customer Details\",\n                \"fieldMetas\": [\n                    {\n                        \"id\": \"5e54d0408184870e20a5f96c\",\n                        \"label\": \"Customer Name\",\n                        \"dataType\": 1,\n                        \"defaultValue\": null\n                    },\n                    {\n                        \"id\": \"5e54d0408184870e20a5f96d\",\n                        \"label\": \"Email Address\",\n                        \"dataType\": 2,\n                        \"defaultValue\": null\n                    }\n                ]\n            },\n            {\n                \"id\": \"620f8a1c4b5e7a12d345b9c3\",\n                \"label\": \"Feedback Details\",\n                \"fieldMetas\": [\n                    {\n                        \"id\": \"5e54d0408184870e20a5f96e\",\n                        \"label\": \"Rating\",\n                        \"dataType\": 3,\n                        \"defaultValue\": \"5\"\n                    },\n                    {\n                        \"id\": \"5e54d0408184870e20a5f96f\",\n                        \"label\": \"Comments\",\n                        \"dataType\": 4,\n                        \"defaultValue\": null\n                    }\n                ]\n            }\n        ]\n    },\n    {\n        \"id\": \"620f8a1c4b5e7a12d345b9d4\",\n        \"label\": \"Service Request\",\n        \"fieldGroups\": [\n            {\n                \"id\": \"620f8a1c4b5e7a12d345b9d3\",\n                \"label\": \"Request Details\",\n                \"fieldMetas\": [\n                    {\n                        \"id\": \"5e54d0408184870e20a5f97a\",\n                        \"label\": \"Issue Type\",\n                        \"dataType\": 1,\n                        \"defaultValue\": null\n                    },\n                    {\n                        \"id\": \"5e54d0408184870e20a5f97b\",\n                        \"label\": \"Urgency\",\n                        \"dataType\": 3,\n                        \"defaultValue\": \"Medium\"\n                    }\n                ]\n            }\n        ]\n    }\n]\n"}],"_postman_id":"b0e532de-008a-4dba-a3d7-4f1319038fe4"}],"id":"3178d7cd-87b5-4a45-a057-b14f36306795","description":"<p>The <strong>Tickets</strong> collection in the API encompasses a range of endpoints designed to manage and interact with tickets within your system. This collection is pivotal for tracking, updating, and resolving various customer or internal issues and requests.</p>\n","_postman_id":"3178d7cd-87b5-4a45-a057-b14f36306795"},{"name":"/Users","item":[{"name":"Get Users","id":"3f5b7611-1c06-4698-96ff-052f56522df7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/users","description":"<p>Retrieve a list of users within your system, providing crucial details about each user. It's an essential tool for administrators to oversee user accounts, roles, and access levels.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var data = null;\nvar xhr = new XMLHttpRequest();\nxhr.withCredentials = true;\nxhr.addEventListener(\"readystatechange\", function () {\n    if (this.readyState === this.DONE) {\n        console.log(this.responseText);\n    }\n});\nxhr.open(\"GET\", \"https://api.reputation.com/v3/users?offset=0&amp;limit=20\");\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>users</td>\n<td>-</td>\n<td>Object Array</td>\n<td>List of users</td>\n</tr>\n<tr>\n<td>tenantID</td>\n<td>users</td>\n<td>String</td>\n<td>The tenant ID associated with the user, relevant in multi-tenant environments.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>users</td>\n<td>String</td>\n<td>The unique identifier for each user.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>users</td>\n<td>String</td>\n<td>The user's first name.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>users</td>\n<td>String</td>\n<td>The user's last name.</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>users</td>\n<td>String</td>\n<td>The full name of the user as displayed in the system.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>users</td>\n<td>String (Email)</td>\n<td>The user's email address.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>users</td>\n<td>String</td>\n<td>The user's phone number.</td>\n</tr>\n<tr>\n<td>role</td>\n<td>users</td>\n<td>String</td>\n<td>The role assigned to the user, defining their permissions and access within the system.</td>\n</tr>\n<tr>\n<td>scopes</td>\n<td>users</td>\n<td>Object</td>\n<td>Details the scope of the user's access and permissions.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>scopes</td>\n<td>String</td>\n<td>The name of the scope defining user access.</td>\n</tr>\n<tr>\n<td>values</td>\n<td>scopes</td>\n<td>String</td>\n<td>Specific values or permissions associated with the user's scope.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>users</td>\n<td>Boolean</td>\n<td>Indicates whether the user account is currently active.</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>users</td>\n<td>String</td>\n<td>The locale setting for the user, defaulting to 'en_US'.</td>\n</tr>\n<tr>\n<td>singleSignOn</td>\n<td>users</td>\n<td>Boolean</td>\n<td>Specifies if the user is configured for Single Sign-On (SSO).</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>users</td>\n<td>String (DateTime)</td>\n<td>The date and time when the user account was created, in ISO 8601 format.</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>users</td>\n<td>String (DateTime)</td>\n<td>The date and time of the last update to the user's account, in ISO 8601 format.</td>\n</tr>\n<tr>\n<td>paging</td>\n<td>-</td>\n<td>Object</td>\n<td>Contains pagination details such as offset, limit, and API endpoints for previous and next pages.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>paging</td>\n<td>Integer</td>\n<td>The offset for pagination, specifying the starting point for the page of results.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>paging</td>\n<td>Integer</td>\n<td>The maximum number of user objects returned per page.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>paging</td>\n<td>String</td>\n<td>The API endpoint to retrieve the previous page of data, if available.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>paging</td>\n<td>String</td>\n<td>The API endpoint to retrieve the next page of data, if available.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Offsets the start of the results by the specified number, up to a maximum of 100,000.</p>\n","type":"text/plain"},"key":"offset","value":"<integer (int64)>"},{"disabled":true,"description":{"content":"<p>Determines the number of items returned in the current response. This is distinct from rate limiting and refers to the size of the data set returned, which is controlled by the value you specify. The default limit is 20 users, with a maximum possible limit of 2,000.</p>\n","type":"text/plain"},"key":"limit","value":"<integer (int64)>"}],"variable":[]}},"response":[{"id":"3019ffe9-0954-4626-b4b5-b08a7e99e996","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/users?offset=0&limit=20","protocol":"https","host":["api","reputation","com"],"path":["v3","users"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"349"},{"key":"etag","value":"W/\"15d-rAYOvZwk0T1V5KRvhIdkitXCVCA\""},{"key":"date","value":"Tue, 14 Nov 2023 01:25:55 GMT"},{"key":"x-envoy-upstream-service-time","value":"122"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": \"123456\",\n            \"tenantID\": \"78910\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"displayName\": \"John Doe\",\n            \"email\": \"jdoe@email.com\",\n            \"phone\": \"555-1234\",\n            \"role\": \"Manager\",\n            \"scopes\": [\n                {\n                    \"name\": \"UserManagement\",\n                    \"values\": \"Read, Write\"\n                }\n            ],\n            \"active\": true,\n            \"locale\": \"en_US\",\n            \"singleSignOn\": true,\n            \"createdDate\": \"2023-01-15T09:30:00\",\n            \"updatedDate\": \"2023-02-20T11:22:33\"\n        },\n        {\n            \"id\": \"654321\",\n            \"tenantID\": \"09876\",\n            \"firstName\": \"Emma\",\n            \"lastName\": \"Williams\",\n            \"displayName\": \"Emma Williams\",\n            \"email\": \"emma.williams@examplecorp.com\",\n            \"phone\": \"555-6789\",\n            \"role\": \"Administrator\",\n            \"scopes\": [\n                {\n                    \"name\": \"Reporting\",\n                    \"values\": \"Read\"\n                },\n                {\n                    \"name\": \"TicketManagement\",\n                    \"values\": \"Read, Write, Delete\"\n                }\n            ],\n            \"active\": false,\n            \"locale\": \"en_GB\",\n            \"singleSignOn\": false,\n            \"createdDate\": \"2022-12-01T10:00:00\",\n            \"updatedDate\": \"2023-01-05T14:15:45\"\n        }\n    ],\n    \"paging\": {\n        \"offset\": 0,\n        \"limit\": 20\n    }\n}\n"}],"_postman_id":"3f5b7611-1c06-4698-96ff-052f56522df7"},{"name":"Save User","id":"b60f5857-49ce-4f3f-9c5f-8c9b488eac83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"string\",\n  \"tenantID\": null,\n  \"firstName\": \"string\",\n  \"lastName\": \"string\",\n  \"displayName\": \"string\",\n  \"email\": \"string\",\n  \"phone\": null,\n  \"role\": \"string\",\n  \"scopes\": null,\n  \"active\": \"boolean\",\n  \"locale\": \"string\",\n  \"singleSignOn\": \"boolean\"\n}\n\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/users","description":"<p>You can use this endpoint to create or update a user profile in your system. This is particularly useful for managing access and roles within your organization. When making a request, you'll need to provide essential details such as the user's unique ID, first name, last name, email, and role. Additional details like phone number, display name, and specific user scopes can also be specified to further customize the user's profile.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"POST\", 'https://api.reputation.com/v3/users', true);\nxhr.setRequestHeader('x-api-key', 'Your API key');\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.onreadystatechange = function () {\n    if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {\n        console.log(xhr.responseText);\n    }\n};\nvar data = JSON.stringify({\n  \"id\": \"123456\",\n  \"tenantID\": null,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"displayName\": \"John Doe\",\n  \"email\": \"jdoe@email.com\",\n  \"phone\": null,\n  \"role\": \"Admin\",\n  \"scopes\": null,\n  \"active\": true,\n  \"locale\": \"en_US\",\n  \"singleSignOn\": false\n});\nxhr.send(data);\n\n</code></pre>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<p>Data included in the request body.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>Unique identifier for the user</td>\n</tr>\n<tr>\n<td>firstName <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>First name of the user</td>\n</tr>\n<tr>\n<td>lastName <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>-</td>\n<td>string</td>\n<td>Full display name of the user</td>\n</tr>\n<tr>\n<td>email <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>Email address of the user</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>-</td>\n<td>string</td>\n<td>Phone number of the user</td>\n</tr>\n<tr>\n<td>role <strong>(Required)</strong></td>\n<td>-</td>\n<td>string</td>\n<td>Role assigned to the user</td>\n</tr>\n<tr>\n<td>scopes</td>\n<td>-</td>\n<td>array</td>\n<td>Array of scope objects assigned to the user</td>\n</tr>\n<tr>\n<td>name <strong>(Required by Parent)</strong></td>\n<td>scopes</td>\n<td>string</td>\n<td>Name of the scope</td>\n</tr>\n<tr>\n<td>values <strong>(Required by Parent)</strong></td>\n<td>scopes</td>\n<td>array</td>\n<td>Values associated with the scope</td>\n</tr>\n<tr>\n<td>active <strong>(Required)</strong></td>\n<td>-</td>\n<td>boolean</td>\n<td>Indicates whether the user account is active</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>-</td>\n<td>string</td>\n<td>Locale setting for the user (ex. en_US, en_GB)</td>\n</tr>\n<tr>\n<td>singleSignOn <strong>(Required)</strong></td>\n<td>-</td>\n<td>boolean</td>\n<td>Indicates whether the user is a single sign-on user</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenantID</td>\n<td>-</td>\n<td>string</td>\n<td>Unique identifier for the tenant</td>\n</tr>\n<tr>\n<td>id</td>\n<td>-</td>\n<td>string</td>\n<td>Unique identifier for the user</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>-</td>\n<td>string</td>\n<td>First name of the user</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>-</td>\n<td>string</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>-</td>\n<td>string</td>\n<td>Full display name of the user</td>\n</tr>\n<tr>\n<td>email</td>\n<td>-</td>\n<td>string</td>\n<td>Email address of the user</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>-</td>\n<td>string</td>\n<td>Phone number of the user</td>\n</tr>\n<tr>\n<td>role</td>\n<td>-</td>\n<td>string</td>\n<td>Role assigned to the user</td>\n</tr>\n<tr>\n<td>scopes</td>\n<td>-</td>\n<td>array</td>\n<td>Array of scope objects assigned to the user</td>\n</tr>\n<tr>\n<td>name</td>\n<td>scopes</td>\n<td>string</td>\n<td>Name of the scope</td>\n</tr>\n<tr>\n<td>values</td>\n<td>scopes</td>\n<td>array</td>\n<td>Values associated with the scope</td>\n</tr>\n<tr>\n<td>active</td>\n<td>-</td>\n<td>boolean</td>\n<td>Indicates whether the user account is active</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>-</td>\n<td>string</td>\n<td>Locale setting for the user (defaults to 'en_US')</td>\n</tr>\n<tr>\n<td>singleSignOn</td>\n<td>-</td>\n<td>boolean</td>\n<td>Indicates whether the user is a single sign-on user</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>-</td>\n<td>string (date-time)</td>\n<td>Indicates the when the user was created in ISO format</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>-</td>\n<td>string (date-time)</td>\n<td>Indicates when the user was last updated in ISO format</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"23b4c650-44e2-42ad-a95e-7ee3fb6e1c56","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"Your API key"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"123456\",\n  \"tenantID\": null,\n  \"firstName\": \"Alex\",\n  \"lastName\": \"Chircop\",\n  \"displayName\": \"Alex Chircop\",\n  \"email\": \"achircop@email.com\",\n  \"phone\": null,\n  \"role\": \"Admin\",\n  \"scopes\": null,\n  \"active\": true,\n  \"locale\": \"en_US\",\n  \"singleSignOn\": false\n}\n\n","options":{"raw":{"language":"json"}}},"url":"https://api.reputation.com/v3/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"123456\",\n  \"tenantID\": null,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"displayName\": \"John Doe\",\n  \"email\": \"jdoe@email.com\",\n  \"phone\": null,\n  \"role\": \"Admin\",\n  \"scopes\": null,\n  \"active\": true,\n  \"locale\": \"en_US\",\n  \"singleSignOn\": false,\n  \"createdDate\": \"2023-04-11T07:09:22\",\n  \"updatedDate\": \"2024-09-27T03:19:47\"\n}\n"}],"_postman_id":"b60f5857-49ce-4f3f-9c5f-8c9b488eac83"},{"name":"Get User","id":"fe3d89d1-8fe1-40e3-a0ba-06bd14d2093e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-api-key","value":"<Your API key>"}],"url":"{{baseUrl}}/users/:userID","description":"<p>Retrieve detailed information about a specific user within your organization. By specifying the unique <strong>userID</strong>, you can obtain comprehensive data about that individual user, including their role, contact details, and associated scopes.</p>\n<h2 id=\"sample\">Sample</h2>\n<h4 id=\"javascript-xhr-request\">JavaScript XHR Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var xhr = new XMLHttpRequest();\nxhr.open(\"GET\", \"https://api.reputation.com/v3/users/41807627\", true);\nxhr.setRequestHeader(\"x-api-key\", \"Your API key\");\n\nxhr.onreadystatechange = function () {\n    if (xhr.readyState === 4) {\n        console.log(xhr.responseText);\n    }\n};\n\nxhr.send();\n\n\n</code></pre>\n<h2 id=\"response-parameters\">Response Parameters</h2>\n<p>Data returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Parent</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tenantID</td>\n<td>-</td>\n<td>string</td>\n<td>Unique identifier for the tenant</td>\n</tr>\n<tr>\n<td>id</td>\n<td>-</td>\n<td>string</td>\n<td>Unique identifier for the user</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>-</td>\n<td>string</td>\n<td>First name of the user</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>-</td>\n<td>string</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>-</td>\n<td>string</td>\n<td>Full display name of the user</td>\n</tr>\n<tr>\n<td>email</td>\n<td>-</td>\n<td>string</td>\n<td>Email address of the user</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>-</td>\n<td>string</td>\n<td>Phone number of the user</td>\n</tr>\n<tr>\n<td>role</td>\n<td>-</td>\n<td>string</td>\n<td>Role assigned to the user</td>\n</tr>\n<tr>\n<td>scopes</td>\n<td>-</td>\n<td>array</td>\n<td>Array of scope objects assigned to the user</td>\n</tr>\n<tr>\n<td>name</td>\n<td>scopes</td>\n<td>string</td>\n<td>Name of the scope</td>\n</tr>\n<tr>\n<td>values</td>\n<td>scopes</td>\n<td>array</td>\n<td>Values associated with the scope</td>\n</tr>\n<tr>\n<td>active</td>\n<td>-</td>\n<td>boolean</td>\n<td>Indicates whether the user account is active</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>-</td>\n<td>string</td>\n<td>Locale setting for the user (defaults to 'en_US')</td>\n</tr>\n<tr>\n<td>singleSignOn</td>\n<td>-</td>\n<td>boolean</td>\n<td>Indicates whether the user is a single sign-on user</td>\n</tr>\n<tr>\n<td>createdDate</td>\n<td>-</td>\n<td>string (date-time)</td>\n<td>Indicates the when the user was created in ISO format</td>\n</tr>\n<tr>\n<td>updatedDate</td>\n<td>-</td>\n<td>string (date-time)</td>\n<td>Indicates when the user was last updated in ISO format</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users",":userID"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) Unique identifier assigned to the user.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"userID"}]}},"response":[{"id":"5dcbef24-ebcf-47eb-acab-291dc4b92be7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"Your API key"}],"url":{"raw":"https://api.reputation.com/v3/users/:userID","protocol":"https","host":["api","reputation","com"],"path":["v3","users",":userID"],"variable":[{"key":"userID","value":"41807627","description":"(Required) User id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"304"},{"key":"etag","value":"W/\"130-K0he9BhwS3L6RnrLnLUUcq6LLEQ\""},{"key":"date","value":"Tue, 14 Nov 2023 07:19:40 GMT"},{"key":"x-envoy-upstream-service-time","value":"61"},{"key":"server","value":"istio-envoy"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"41807627\",\n    \"tenantID\": \"678f1a245b3d\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"displayName\": \"John Doe\",\n    \"email\": \"jdoe@email.com\",\n    \"phone\": \"555-0123\",\n    \"role\": \"Manager\",\n    \"scopes\": [\n        {\n            \"name\": \"location\",\n            \"values\": [\n                \"LOC12345\", \n                \"LOC67890\"\n                ]\n        }\n    ],\n    \"active\": true,\n    \"locale\": \"en_US\",\n    \"singleSignOn\": true,\n    \"createdDate\": \"2022-08-15T14:20:35\",\n    \"updatedDate\": \"2023-04-10T09:33:47\"\n}\n"}],"_postman_id":"fe3d89d1-8fe1-40e3-a0ba-06bd14d2093e"}],"id":"31dff2fa-872b-466f-93c4-c59455484d9a","description":"<p>This API collection provides you with the tools to manage user accounts within your system. You can retrieve detailed information about individual users, create new user accounts, and update existing ones. This collection is essential for overseeing user roles, permissions, and access to various features and data.</p>\n","_postman_id":"31dff2fa-872b-466f-93c4-c59455484d9a"}],"event":[{"listen":"prerequest","script":{"id":"8a536a7a-9e4f-4362-b71a-7e0b5a75271e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"843b1b8e-9845-4b99-9268-c111ee7fe3e6","type":"text/javascript","exec":[""]}}],"variable":[{"id":"cbc0df0e-d927-4132-a587-639966b4fe65","key":"{{baseURL}}","value":"https://api.reputation.com/v3/"}]}