{"info":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","description":"<html><head></head><body><p>Welcome to the Speak Ai API.</p>\n<p><em>Documentation is a work in progress and subject to change.</em></p>\n<h1 id=\"requirements\">Requirements</h1>\n<p>The Speak Ai API is made available to all paying subscribers. With the API you can programmatically upload your media files for insights extraction, transcription, download the resulting insights and transcript in various formats and create an embed iframe and a page.</p>\n<h1 id=\"api-key\">API Key</h1>\n<p>If you are subscribed to Speak Ai (paid subscription), you can access your API key in your Speak account and going to the <a href=\"https://app.speakai.co/developer\">developer page</a>.</p>\n<h2 id=\"base-url-and-versioning\">Base URL and Versioning</h2>\n<p>The base URL for the API is <code>https://api.speakai.co/[version]</code>. The current version is <strong>v1</strong>, so the base URL for the current API version is <code>https://api.speakai.co/v1</code>.</p>\n<h1 id=\"supported-languages\">Supported Languages</h1>\n<p>Speak Ai supports 100+ languages for transcription and analysis.</p>\n<p>For the full list of supported languages, see: <a href=\"https://intercom.help/speak-ai/en/articles/6653369-what-languages-do-you-support\">What languages do you support?</a></p>\n<hr>\n<h1 id=\"mcp-model-context-protocol-integration\">MCP (Model Context Protocol) Integration</h1>\n<p>Speak Ai provides an MCP server that enables AI models and agents to interact with the Speak Ai API programmatically.</p>\n<p><strong>GitHub Repository:</strong> <a href=\"https://github.com/speakai/speakai-mcp\">https://github.com/speakai/speakai-mcp</a></p>\n<h2 id=\"mcp-server-url\">MCP Server URL</h2>\n<p>Use the following Streamable HTTP endpoint to connect to the Speak Ai MCP server:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api.speakai.co/v1/mcp\n\n</code></pre><h2 id=\"npx-package\">NPX Package</h2>\n<p>You can run the Speak Ai MCP server locally using the <code>speakai-mcp</code> npm package via npx:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">npx speakai-mcp\n\n</code></pre>\n<p>Or install it globally:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">npm install -g speakai-mcp\n\n</code></pre>\n<h2 id=\"cli-usage\">CLI Usage</h2>\n<p>After installation, you can use the CLI to start the MCP server locally:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">speakai-mcp --api-key YOUR_API_KEY\n\n</code></pre>\n<hr>\n<h1 id=\"security-privacy\">Security &amp; Privacy</h1>\n<p>For information about Speak Ai's security practices and privacy policies, visit our <a href=\"https://help.speakai.co/en/collections/9468372-security-privacy\">Security &amp; Privacy documentation</a>.</p>\n<hr>\n<h1 id=\"support\">Support</h1>\n<p>If you have any questions, please write to us at <a href=\"https://mailto:accounts@speakai.co\">accounts@speakai.co</a>. We'd love to hear from you!</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Requirements","slug":"requirements"},{"content":"API Key","slug":"api-key"},{"content":"Supported Languages","slug":"supported-languages"},{"content":"MCP (Model Context Protocol) Integration","slug":"mcp-model-context-protocol-integration"},{"content":"Security & Privacy","slug":"security-privacy"},{"content":"Support","slug":"support"}],"owner":"8949911","collectionId":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","publishedId":"TVRrUPpn","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-10-16T16:37:51.000Z"},"item":[{"name":"Authentication","item":[{"name":"Get Access Token","event":[{"listen":"test","script":{"id":"b2204e2c-effd-492f-9b6d-da4495cb0f10","exec":["pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","pm.test(\"Response has the required fields - status and data\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('data');","});","","","pm.test(\"Email is in a valid email format\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData.data.email).to.be.a('string').and.to.match(/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/, \"Email is not in a valid format\");","});","","","pm.test(\"Access token is a non-empty string\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData.data.accessToken).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Access token should not be empty\");","});","","","pm.test(\"Refresh token is a non-empty string\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData.data.refreshToken).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Refresh token should not be empty\");","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d6e01d83-dff8-4b05-b282-2627feac9525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","description":"<p>Pass your Speak Ai Key.</p>\n<p>If you are subscribed to Speak Ai (paid subscription), you can access your API key in your Speak account and going to the developer page.</p>\n<p>If you are on a Speak Ai free account, email <a href=\"mailto:accounts@speakai.co\">accounts@speakai.co</a> to access an API key.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/v1/auth/accessToken","description":"<p>This endpoint allows you to obtain an access token by providing the necessary authentication credentials.</p>\n<p>The request body for this endpoint should include the your authentication credentials. Upon successful authentication, the server will respond with a status of \"success\" and provide the your email, access token, and refresh token in the response data.</p>\n","urlObject":{"path":["v1","auth","accessToken"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5f720724-6576-4258-8fee-56cde4bf1bac","name":"Get Access Token - Failure - Invalid API Key","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","description":"Pass your Speak Ai Key.\n\nIf you are subscribed to Speak Ai (paid subscription), you can access your API key in your Speak account and going to the developer page.\n\nIf you are on a Speak Ai free account, email accounts@speakai.co to access an API key.","type":"text"}],"url":"{{url}}/v1/auth/accessToken"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"358bc130-e798-41c2-9864-2cd2ce9b766d"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"231"},{"key":"ETag","value":"W/\"e7-rm2ADL9CcKr3l90RC4r73A2DwHI\""},{"key":"Date","value":"Thu, 27 Aug 2020 17:25:21 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"358bc130-e798-41c2-9864-2cd2ce9b766d\",\n    \"code\": 401,\n    \"message\": \"The authorization api key provided for the request is invalid.\",\n    \"hints\": [\n        \"The authorization api key provided for the request is invalid.\"\n    ]\n}"},{"id":"89d2d49a-c19e-40aa-abff-21cf185642fa","name":"Get Access Token","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","description":"Pass your Speak Ai Key.\n\nIf you are subscribed to Speak Ai (paid subscription), you can access your API key in your Speak account and going to the developer page.\n\nIf you are on a Speak Ai free account, email accounts@speakai.co to access an API key.","type":"text"}],"url":"{{url}}/v1/auth/accessToken"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"409d4bde-fd3e-4e88-b280-ba1f3356354e"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"536"},{"key":"ETag","value":"W/\"218-Ujez4wpJYKL6HzB+tzLwJbi9LiQ\""},{"key":"Date","value":"Thu, 27 Aug 2020 17:20:56 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"email\": \"your_email_id\",\n        \"accessToken\": \"access_token\",\n        \"refreshToken\": \"refresh_token\"\n    }\n}"},{"id":"8e37f827-5f1f-4780-aacb-cbb777a275af","name":"Get Access Token - Failure (No value found for Speak Ai Key)","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","description":"Pass your Speak Ai Key.\n\nIf you are subscribed to Speak Ai (paid subscription), you can access your API key in your Speak account and going to the developer page.\n\nIf you are on a Speak Ai free account, email accounts@speakai.co to access an API key.","type":"text"}],"url":"{{url}}/v1/auth/accessToken"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"ca665625-645e-438a-867d-366a6e3f133a"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"231"},{"key":"ETag","value":"W/\"e7-9ktiN5n2bTqu4EHCcEXW7a12uCs\""},{"key":"Date","value":"Thu, 27 Aug 2020 17:24:33 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"ca665625-645e-438a-867d-366a6e3f133a\",\n    \"code\": 401,\n    \"message\": \"The authorization api key provided for the request is invalid.\",\n    \"hints\": [\n        \"The authorization api key provided for the request is invalid.\"\n    ]\n}"}],"_postman_id":"d6e01d83-dff8-4b05-b282-2627feac9525"},{"name":"Refresh Token","id":"2933643d-aaa7-4219-b179-5718bce099bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"refreshToken\": \"refreshToken\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/auth/refreshToken","description":"<p>This endpoint is used to refresh the access token by providing the refresh token in the request body.</p>\n<p>The refreshToken expires in 24 hour.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li>refreshToken (string, required): The refresh token used to obtain a new access token.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<ul>\n<li>status (string): Indicates the status of the request, where \"success\" means the request was successful.</li>\n<li>data (object): Contains the new access token and refresh token.<ul>\n<li>accessToken (string): The new access token.</li>\n<li>refreshToken (string): The new refresh token.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["v1","auth","refreshToken"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cf0d4385-3f1f-4973-bddd-106d95e3a8c0","name":"Refresh Token","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"refreshToken\": \"refresh_token\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/auth/refreshToken"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"e9c23d2d-9b97-4545-8e3a-b851fece2d29"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"529"},{"key":"ETag","value":"W/\"211-CeGQ2+cjuGHd2CSYwFR+va80RGI\""},{"key":"Date","value":"Thu, 27 Aug 2020 17:27:52 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"accessToken\": \"new_access_token\",\n        \"refreshToken\": \"new_refresh_token\"\n    }\n}"},{"id":"010244b6-a0f3-4aa5-9fa5-735c007893d8","name":"Refresh Token - Failure - Invalid / Expired Token","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","description":"Pass Speak Ai Key","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"refreshToken\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6I\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/auth/refreshToken"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"3fcf7e0c-a977-4c37-bae5-a72485206cd0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"204"},{"key":"ETag","value":"W/\"cc-codMRikOFBVpLDLVU+ccjMby9f8\""},{"key":"Date","value":"Thu, 27 Aug 2020 17:26:26 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"3fcf7e0c-a977-4c37-bae5-a72485206cd0\",\n    \"code\": 404,\n    \"message\": \"We were unable to find a valid token. Your token may have expired or invalid. Please contact development team.\"\n}"}],"_postman_id":"2933643d-aaa7-4219-b179-5718bce099bf"}],"id":"119f5f14-e0b3-43a8-89eb-c824f5c606b4","description":"<p>All Speak AI API operations require two headers:</p>\n<p><code>x-speakai-key: your_speak_ai_api_key_here</code></p>\n<p><code>x-access-token: generated_access_token</code></p>\n<hr />\n<h3 id=\"authentication-flow\">Authentication Flow</h3>\n<ol>\n<li><p><strong>Get Access Token</strong>: Call <code>POST /v1/auth/accessToken</code> with your <code>x-speakai-key</code> and <code>Content-Type: application/json</code> headers. The request body should be <code>{}</code> (empty JSON) when using API key authentication.\nOn success, the response returns your <code>accessToken</code> and <code>refreshToken</code> inside the <code>data</code> object.</p>\n</li>\n<li><p><strong>Use Access Token</strong>: Include the access token in the <code>x-access-token</code> header for all subsequent API calls, alongside your <code>x-speakai-key</code>.</p>\n</li>\n<li><p><strong>Refresh Token</strong>: When the access token expires, call <code>POST /v1/auth/refreshToken</code> with both <code>x-speakai-key</code> and <code>x-access-token</code> headers (include the expired access token), and pass <code>{\"refreshToken\": \"...\"}</code> in the request body. You will receive a new <code>accessToken</code> and <code>refreshToken</code> pair.</p>\n</li>\n</ol>\n<p><strong>Example Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"email\": \"you@example.com\",\n    \"accessToken\": \"eyJhbG...\",\n    \"refreshToken\": \"eyJhbG...\"\n  }\n}\n</code></pre>\n<hr />\n<h3 id=\"token-expiry\">Token Expiry</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Token</th>\n<th>Expiry</th>\n<th>Action on Expiry</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Access Token</td>\n<td>80 minutes</td>\n<td>Call Refresh Token endpoint</td>\n</tr>\n<tr>\n<td>Refresh Token</td>\n<td>24 hours</td>\n<td>Re-authenticate via Get Access Token</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"rate-limits\">Rate Limits</h3>\n<p>Both <code>/v1/auth/accessToken</code> and <code>/v1/auth/refreshToken</code> are limited to <strong>5 requests per 60 seconds</strong>. Exceeding this returns <code>429 Too Many Requests</code>.</p>\n<hr />\n<h3 id=\"error-handling\">Error Handling</h3>\n<ul>\n<li><strong>Expired Access Token</strong>: Returns <code>401 Unauthorized</code>. Use the Refresh Token endpoint to obtain a new token pair.</li>\n<li><strong>Expired Refresh Token</strong>: Returns an error response. Re-authenticate from scratch via the Get Access Token endpoint.</li>\n<li><strong>Rate Limited</strong>: Returns <code>429</code>. Wait and retry — implement exponential backoff for automated clients.</li>\n</ul>\n","_postman_id":"119f5f14-e0b3-43a8-89eb-c824f5c606b4","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Media (Audio/Video)","item":[{"name":"Audio or Video Upload","item":[{"name":"Get a Signed Url","id":"24bd40af-fdb6-42e3-a89b-e55f7670db16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/media/upload/signedurl?isVideo=false&filename=media_name.mp3&mimeType=audio/mp3","description":"<p>If you have a locally saved file and you want to upload it to our system using API, you'll have to follow through 3 simple steps:</p>\n<h3 id=\"process\">Process</h3>\n<ol>\n<li><p>Run this endpoint to retrieve an upload link for a placeholder on our storage bucket. You'll have <code>preSignedUrl.</code></p>\n</li>\n<li><p>This <code>preSignedUrl</code> is your ticket to which you <code>PUT</code> your local file using <code>curl</code> or any other HTTP client.</p>\n</li>\n<li><p>Use \"<a href=\"https://docs.speakai.co/#c6106a66-6a3d-4b05-b4a2-4a68a4c1e95d\">Upload your file with the Signed Url or External URL</a>\" to upload your file on Speak.</p>\n</li>\n</ol>\n<h3 id=\"how-does-this-work\">How does this work?</h3>\n<p>You can find more information about uploading a file using signed URLs <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/PresignedUrlUploadObject.html\">here</a>.\nIf you still find this unenlightening, shoot a message to us on <a href=\"mailto:success@speakai.co\">success@speakai.co</a>!</p>\n<h3 id=\"expiry\">Expiry</h3>\n<p>The link will expire in 2 hours.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","media","upload","signedurl"],"host":["{{url}}"],"query":[{"description":{"content":"<p>TRUE or FALSE (To Indentify is it <code>audio</code> or <code>video</code>.</p>\n","type":"text/plain"},"key":"isVideo","value":"false"},{"description":{"content":"<p>Filename with the extension is required</p>\n","type":"text/plain"},"key":"filename","value":"media_name.mp3"},{"description":{"content":"<p>audio/mp3 or audio/wav or video/mp4</p>\n","type":"text/plain"},"key":"mimeType","value":"audio/mp3"}],"variable":[]}},"response":[{"id":"d512af83-74ca-40ca-84e4-e2e5b28952d3","name":"Get a Signed Url (Audio)","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":{"raw":"{{url}}/v1/media/upload/signedurl?isVideo=false&filename=media_name.mp3&mimeType=audio/mp3","host":["{{url}}"],"path":["v1","media","upload","signedurl"],"query":[{"key":"isVideo","value":"false"},{"key":"filename","value":"media_name.mp3"},{"key":"mimeType","value":"audio/mp3","description":"audio/mp3 or audio/wav","type":"text"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e22d2c2c-76de-4769-b82c-3f9901cec80c","name":"Get a Signed Url (Video)","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":{"raw":"{{url}}/v1/media/upload/signedurl?isVideo=true&filename=media_name.mp4&mimeType=video/mp4","host":["{{url}}"],"path":["v1","media","upload","signedurl"],"query":[{"key":"isVideo","value":"true"},{"key":"filename","value":"media_name.mp4"},{"key":"mimeType","value":"video/mp4","description":"video/mp4","type":"text"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"24bd40af-fdb6-42e3-a89b-e55f7670db16"},{"name":"Sample Upload Via AWS URL","id":"92e95d7d-cd03-4346-a8ce-faca1ef3c321","protocolProfileBehavior":{"disabledSystemHeaders":{"content-type":true},"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"audio/mp3","type":"text"}],"body":{"mode":"file","file":{"src":"/C:/Users/Vatsal Shah/Desktop/1614657086317-1614657086317-1_15_1_audio_.mp4extractor.mp4.mp3"}},"url":"{{S3_AWS_URL}}/video/1622234682034-medianame.mp3?AWSAccessKeyId=x&Content-Type=audio%2Fmp3&Expires=1622245482&Signature=nQWU4yxBuUjQJD1yTr92qblQx6s%3D&x-amz-acl=public-read","description":"<h3 id=\"put-request-to-upload-audio-file\">PUT Request to Upload Audio File</h3>\n<p>This endpoint allows you to upload an audio file (in this case, an MP3 file) to an Amazon S3 bucket. The request is made using the HTTP PUT method, which is commonly used for updating resources.</p>\n<h4 id=\"request-url\">Request URL</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://xs3.amazonaws.com/video/1622234682034-medianame.mp3?AWSAccessKeyId=x&amp;Content-Type=audio/mp3&amp;Expires=1622245482&amp;Signature=nQWU4yxBuUjQJD1yTr92qblQx6s=&amp;x-amz-acl=public-read\n\n</code></pre><h4 id=\"query-parameters\">Query Parameters</h4>\n<ul>\n<li><p><code>AWSAccessKeyId</code>: Your AWS access key ID, used for authentication.</p>\n</li>\n<li><p><code>Content-Type</code>: Specifies the media type of the resource being uploaded (in this case, <code>audio/mp3</code>).</p>\n</li>\n<li><p><code>Expires</code>: A timestamp indicating when the URL will expire.</p>\n</li>\n<li><p><code>Signature</code>: A signature for authentication, ensuring the request is valid.</p>\n</li>\n<li><p><code>x-amz-acl</code>: Sets the access control list (ACL) for the uploaded file. Here, it is set to <code>public-read</code>, allowing public access to the file.</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request does not specify a body type, indicating that the audio file is uploaded directly to the specified URL.</p>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>The response from a successful upload typically includes:</p>\n<ul>\n<li><p>A confirmation of the upload status (e.g., HTTP status code 200 OK).</p>\n</li>\n<li><p>Metadata about the uploaded file, such as its URL and size.</p>\n</li>\n</ul>\n<p>Ensure that the audio file being uploaded adheres to the specified content type and that all required parameters are included in the request.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["video","1622234682034-medianame.mp3"],"host":["{{S3_AWS_URL}}"],"query":[{"key":"AWSAccessKeyId","value":"x"},{"key":"Content-Type","value":"audio%2Fmp3"},{"key":"Expires","value":"1622245482"},{"key":"Signature","value":"nQWU4yxBuUjQJD1yTr92qblQx6s%3D"},{"key":"x-amz-acl","value":"public-read"}],"variable":[]}},"response":[{"id":"f96a58f2-7577-4d0d-a7e0-5133b1f8944e","name":"Sample Upload Via AWS URL","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"audio/mp3","type":"text"}],"body":{"mode":"file","file":{"src":"/C:/Users/Vatsal Shah/Desktop/1614657086317-1614657086317-1_15_1_audio_.mp4extractor.mp4.mp3"}},"url":{"raw":"{{S3_AWS_URL}}/video/1622234682034-medianame.mp3?AWSAccessKeyId=x&Content-Type=audio%2Fmp3&Expires=1622245482&Signature=nQWU4yxBuUjQJD1yTr92qblQx6s%3D&x-amz-acl=public-read","host":["{{S3_AWS_URL}}"],"path":["video","1622234682034-medianame.mp3"],"query":[{"key":"AWSAccessKeyId","value":"x"},{"key":"Content-Type","value":"audio%2Fmp3"},{"key":"Expires","value":"1622245482"},{"key":"Signature","value":"nQWU4yxBuUjQJD1yTr92qblQx6s%3D"},{"key":"x-amz-acl","value":"public-read"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"92e95d7d-cd03-4346-a8ce-faca1ef3c321"},{"name":"Upload your file with the Signed Url or External URL","id":"c6106a66-6a3d-4b05-b4a2-4a68a4c1e95d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Vatsal Test 1\",\n    \"description\": \"Vatsal Description\",\n    \"url\": \"https://kns.im/msgs/files/32dc84df-9650-4c17-b633-e80a5097ba6f.ogg\",\n    \"mediaType\": \"video\",\n    \"sourceLanguage\": \"he-IL\",\n    \"tags\": \"your custom tags1, tag 2, tag 3\",\n    \"fields\": [\n        {\n            \"id\": \"FIELD_ID_CREATED_BY_SPEAK\",\n            \"value\": \"YOUR_VALUE\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/media/upload","description":"<p>If you want to add a hosted media (you must have a valid <code>URL</code>) to your media library, do it here.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<p>Please must specify <code>mediaType</code> as <code>audio</code> or <code>video</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>name: String required\ndescription: string;\nurl: string required; // public URL or AWS signed URL\nmediaType: 'audio'; // 'video'\nuserId: \"\"; // for enterprise users only (optional)\nmedicalId: \"\" // custom media Id or medical Id for your reference (optional)\ncreatedAt: \"2021-08-09T00:13:11.717Z\" // must match the date format (optional)\ntags: \"comma separated strings\",\nfolderId: \"folder Id\" // to save in the folder\nfields: { id: string, value: string } = []; (Optional)\n\n</code></pre><h3 id=\"webhook-callback-url\">Webhook Callback URL:</h3>\n<ul>\n<li><p>If you created a webhook for media events and want to receive a callback to a specific URL for this text note, you can assign <code>callbackUrl</code> - <code>string</code> in a <code>req.body</code>.</p>\n</li>\n<li><p>Speak will consider the <code>callbackUrl</code> and will skip the callbackUrl created via <a href=\"https://docs.speakai.co/#5777a89c-a6c3-4d0e-aab1-d33fdec5cbe8\">Webhook API</a>.</p>\n</li>\n</ul>\n<p><strong>Fields:</strong></p>\n<p>You can pass the <strong>id and value</strong> in the Fields array to include related to your media files.</p>\n<p><strong>Upload Considerations:</strong></p>\n<ul>\n<li><p>Maximum duration limit of 3 hours for a media URL.</p>\n</li>\n<li><p>The URL needs to be accessible publicly. For Example - Google Drive, Dropbox are not supported.</p>\n</li>\n<li><p>Valid YouTube URL examples are: <code>https://www.youtube.com/watch?v=pTJ-yvNWCUE</code>.</p>\n</li>\n<li><p><strong>Supported File Formats are</strong>:</p>\n<ul>\n<li><p>Audio - <code>mp3 (recommended), m4a, wav, ogg, webm, m4p</code></p>\n</li>\n<li><p>Video - <code>mp4 (recommended), m4v, wmv, avi, mov, flv</code></p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","media","upload"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e9e614af-e985-41d8-8989-f2ac8a0b3ecc","name":"success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"},{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"key":"Content-Type","type":"text","value":"application/json","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"name\": \"File name\",\n    \"description\": \"File Description\",\n    \"url\": \"https://www.youtube.com/watch?v=isGIghijQJI\",\n    \"isVideo\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/media/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"b80c2919-63b4-40f6-b8a9-205d3c096bd8"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"73"},{"key":"ETag","value":"W/\"49-q7/c/8o6kwxYBaLfzxKtryvvPHU\""},{"key":"Date","value":"Tue, 04 May 2021 15:24:37 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"mediaId\": \"86a36b59b38e\",\n        \"state\": \"uploaded\"\n    }\n}"}],"_postman_id":"c6106a66-6a3d-4b05-b4a2-4a68a4c1e95d"}],"id":"7fd0120d-1b18-4d71-8e95-e50eefb146b6","description":"<p>When uploading a file, a media file URL (accessible to our servers) must be provided.</p>\n<p>This can be a publicly accessible URL hosted by yourselves or a third-party. </p>\n<p>You can upload files directly to our storage (AWS S3 bucket) and upload the file using the returned URL.</p>\n","_postman_id":"7fd0120d-1b18-4d71-8e95-e50eefb146b6","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"List","id":"8f14b0e6-7d40-40eb-8ea7-328943326e3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/media?mediaType=audio&page=1&pageSize=50&sortBy=createdAt:desc&filterMedia=0&filterName=&folderId=568sd56899","description":"<p>If you are looking for a paginated, sorted and filtered listing of your media library.</p>\n<ul>\n<li>You can pass <code>userId</code> in <code>params</code> to get data for a user. (Only for enterprise use cases)</li>\n</ul>\n","urlObject":{"path":["v1","media"],"host":["{{url}}"],"query":[{"description":{"content":"<p>audio, video, text</p>\n","type":"text/plain"},"key":"mediaType","value":"audio"},{"description":{"content":"<p>Default <code>1</code>st page</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Default <code>50</code></p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>Default Created At in Descending order</p>\n<p>Sort by: Created At, positive, neutral, negative</p>\n<p><code>asc</code> or <code>desc</code></p>\n","type":"text/plain"},"key":"sortBy","value":"createdAt:desc"},{"description":{"content":"<p>0 -- Uploaded\n1 -- Assigned Media to a User\n2 -- Uploaded OR Assigned</p>\n<p>Default: <code>0</code></p>\n","type":"text/plain"},"key":"filterMedia","value":"0"},{"description":{"content":"<p>Search from media name, keywords, labels, faces, brands, people, locations and transcription.</p>\n","type":"text/plain"},"key":"filterName","value":""},{"description":{"content":"<p>Pass folderId to fetch only those records</p>\n","type":"text/plain"},"key":"folderId","value":"568sd56899"}],"variable":[]}},"response":[{"id":"2db6b83b-a624-41f2-b9d4-cf3e31d37b91","name":"success","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"","type":"text"},{"key":"x-speakai-key","value":"","type":"text"}],"url":{"raw":"{{url}}/v1/media?page=1&pageSize=50&filterMedia=0&filterName=&sortBy=createdAt:desc","host":["{{url}}"],"path":["v1","media"],"query":[{"key":"page","value":"1","description":"Default `1`st page"},{"key":"pageSize","value":"50","description":"Default `50`"},{"key":"filterMedia","value":"0","description":"`0`: Default - Find from a user\n`1`: Find from a group  Available for Team Access\n\nDefault: `0`"},{"key":"filterName","value":"","description":"Search from media name, keywords, labels, faces, brands, people, locations and transcription."},{"key":"sortBy","value":"createdAt:desc","description":"Default Created At in Descending order\n\nSort by: Created At, positive, neutral, negative\n\n`asc` or `desc`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"25fdf21c-2643-4c1a-b874-803d8f3c6096"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"381"},{"key":"ETag","value":"W/\"17d-SBgLftv9WJdIdWx6Pyb9bDGzE8k\""},{"key":"Date","value":"Thu, 27 Aug 2020 17:31:30 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"totalCount\": 71,\n        \"pages\": 71,\n        \"mediaList\": [\n            {\n                \"duration\": {\n                    \"inSecond\": \"60\",\n                    \"start\": \"0:00:00\",\n                    \"end\": \"0:01:00.182\"\n                },\n                \"privacyMode\": \"Public\",\n                \"processingProgress\": \"100\",\n                \"state\": \"processed\",\n                \"remark\": \"\",\n                \"_id\": \"5f46c87668ee9913005e5bef\",\n                \"sentiment\": [],\n                \"mediaId\": \"50ek03r4kebud105\",\n                \"name\": \"vatsal-30\",\n                \"description\": \"url-test\",\n                \"createdAt\": \"2020-08-26T20:39:18.870Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"8f14b0e6-7d40-40eb-8ea7-328943326e3b"},{"name":"Insights","id":"0b586e5b-6e0a-4b79-b440-e6889a803ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/media/insight/:mediaId","description":"<p>Load the results of analysis (sentiment, transcription, named entities, etc) for your media object here.</p>\n<ul>\n<li>You can pass <code>userId</code> in <code>params</code> to get specifically for any user.</li>\n</ul>\n","urlObject":{"path":["v1","media","insight",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"5a4690abf255","key":"mediaId"}]}},"response":[{"id":"c081cccf-dc5f-4321-b51e-17d6375e3648","name":"success ","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/media/insight/:mediaId","host":["{{url}}"],"path":["v1","media","insight",":mediaId"],"variable":[{"key":"mediaId","value":"81c226f66705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"57cbab40-f062-4ca7-87d4-7fe5786451ab"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4933"},{"key":"ETag","value":"W/\"1345-aNOPGrklzi4a9VniPaNXDt1Xx7A\""},{"key":"Date","value":"Tue, 15 Dec 2020 00:30:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"insight\": {\n            \"isAnalyze\": true,\n            \"transcript\": [\n                {\n                    \"id\": 1,\n                    \"text\": \"Both. Hello hello good how are you?\",\n                    \"confidence\": 0.8278,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:05.92\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:05.92\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 2,\n                    \"text\": \"Is this speak AI? Yes it is.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:05.92\",\n                            \"adjustedEnd\": \"0:00:08.44\",\n                            \"start\": \"0:00:05.92\",\n                            \"end\": \"0:00:08.44\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 3,\n                    \"text\": \"Yeah, I was looking at the company and notice here that you develop software right?\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:08.44\",\n                            \"adjustedEnd\": \"0:00:13.84\",\n                            \"start\": \"0:00:08.44\",\n                            \"end\": \"0:00:13.84\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 4,\n                    \"text\": \"Yes, and I wanted to see if your company's ever applied for the irap grants.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:13.84\",\n                            \"adjustedEnd\": \"0:00:19.24\",\n                            \"start\": \"0:00:13.84\",\n                            \"end\": \"0:00:19.24\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 5,\n                    \"text\": \"Yes we have. We have a have a person\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:19.24\",\n                            \"adjustedEnd\": \"0:00:22.48\",\n                            \"start\": \"0:00:19.24\",\n                            \"end\": \"0:00:22.48\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 6,\n                    \"text\": \"that we've sponsored right now and then we,\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 2,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:22.48\",\n                            \"adjustedEnd\": \"0:00:25.36\",\n                            \"start\": \"0:00:22.48\",\n                            \"end\": \"0:00:25.36\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"text\": \"you know, I wrap your kickoff projects here.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 2,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:25.36\",\n                            \"adjustedEnd\": \"0:00:28.24\",\n                            \"start\": \"0:00:25.36\",\n                            \"end\": \"0:00:28.24\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"text\": \"So we've got a representative Local 8 keeping Ramsey who's\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 2,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:28.24\",\n                            \"adjustedEnd\": \"0:00:31.84\",\n                            \"start\": \"0:00:28.24\",\n                            \"end\": \"0:00:31.84\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 9,\n                    \"text\": \"helping us out with the project right now.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:31.84\",\n                            \"adjustedEnd\": \"0:00:34.73\",\n                            \"start\": \"0:00:31.84\",\n                            \"end\": \"0:00:34.73\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 10,\n                    \"text\": \"In the R&D you're taking care of as well.\",\n                    \"confidence\": 0.8583,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:34.73\",\n                            \"adjustedEnd\": \"0:00:38.01\",\n                            \"start\": \"0:00:34.73\",\n                            \"end\": \"0:00:38.01\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 11,\n                    \"text\": \"Yes, yeah, exactly OK, so scrolling to see if I can help you,\",\n                    \"confidence\": 0.7788,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:38.01\",\n                            \"adjustedEnd\": \"0:00:42.24\",\n                            \"start\": \"0:00:38.01\",\n                            \"end\": \"0:00:42.24\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 12,\n                    \"text\": \"but you already OK and not in OK.\",\n                    \"confidence\": 0.7788,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:42.24\",\n                            \"adjustedEnd\": \"0:00:44.84\",\n                            \"start\": \"0:00:42.24\",\n                            \"end\": \"0:00:44.84\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 13,\n                    \"text\": \"Thank you bye.\",\n                    \"confidence\": 0.7788,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:44.84\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:44.84\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ]\n                }\n            ],\n            \"faces\": [],\n            \"keywords\": [\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:08.44\",\n                            \"adjustedEnd\": \"0:00:13.84\",\n                            \"start\": \"0:00:08.44\",\n                            \"end\": \"0:00:13.84\"\n                        },\n                        {\n                            \"adjustedStart\": \"0:00:13.84\",\n                            \"adjustedEnd\": \"0:00:19.24\",\n                            \"start\": \"0:00:13.84\",\n                            \"end\": \"0:00:19.24\"\n                        }\n                    ],\n                    \"id\": 1,\n                    \"name\": \"company\"\n                },\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:25.36\",\n                            \"adjustedEnd\": \"0:00:28.24\",\n                            \"start\": \"0:00:25.36\",\n                            \"end\": \"0:00:28.24\"\n                        },\n                        {\n                            \"adjustedStart\": \"0:00:31.84\",\n                            \"adjustedEnd\": \"0:00:34.73\",\n                            \"start\": \"0:00:31.84\",\n                            \"end\": \"0:00:34.73\"\n                        }\n                    ],\n                    \"id\": 2,\n                    \"name\": \"project\"\n                }\n            ],\n            \"labels\": [],\n            \"brands\": [],\n            \"topics\": [\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ],\n                    \"id\": 1,\n                    \"name\": \"Promotions\"\n                },\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ],\n                    \"id\": 2,\n                    \"name\": \"Tech Blogs and Websites\"\n                },\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ],\n                    \"id\": 3,\n                    \"name\": \"Techcrunch 50\"\n                }\n            ],\n            \"people\": [],\n            \"locations\": [],\n            \"arts\": [],\n            \"dates\": [],\n            \"events\": [],\n            \"geopolitical\": [],\n            \"languages\": [],\n            \"laws\": [],\n            \"money\": [],\n            \"ordinals\": [],\n            \"percentages\": [],\n            \"quantities\": [],\n            \"times\": [],\n            \"cardinals\": [],\n            \"nationalities\": [],\n            \"products\": []\n        },\n        \"duration\": {\n            \"inSecond\": \"47\",\n            \"end\": \"0:00:47.744\",\n            \"start\": \"0:00:00\"\n        },\n        \"summary\": {\n            \"original\": {\n                \"text\": \"\",\n                \"createdAt\": \"2020-09-04T16:16:19.118Z\"\n            }\n        },\n        \"tags\": [],\n        \"isTranscriptionOnly\": false,\n        \"isVideo\": false,\n        \"processingProgress\": \"100\",\n        \"state\": \"processed\",\n        \"remark\": \"\",\n         \"sentiment\": [\n        {\n            \"document\": {\n            \"Negative\": 0.00000,\n            \"Neutral\": 0.00000,\n            \"Positive\": 0.00000\n            },\n            \"sentences\": [\n            {\n                \"id\": 1,\n                \"instances\": [],\n                \"score\": {\n                \"compound\": 0,\n                \"neg\": 0,\n                \"neu\": 1,\n                \"pos\": 0\n                },\n                \"text\": \"Sentence 1\"\n            },\n            {\n                \"id\": 2,\n                \"instances\": [],\n                \"score\": {\n                \"compound\": 0,\n                \"neg\": 0,\n                \"neu\": 1,\n                \"pos\": 0\n                },\n                \"text\": \"Sentence 2\"\n            },\n            {\n                \"id\": 3,\n                \"instances\": [],\n                \"score\": {\n                \"compound\": 0.7269,\n                \"neg\": 0.037,\n                \"neu\": 0.809,\n                \"pos\": 0.154\n                },\n                \"text\": \"Sentence 3\"\n            }          \n            ]\n        }\n        ],\n        \"createdAt\": \"2020-08-22T23:05:57.000Z\",\n        \"updatedAt\": \"2020-08-22T23:11:11.288Z\",\n        \"name\": \"REc557e3c8f2ac42a828973c39f1d6be37\",\n        \"description\": \"\",\n        \"publishedUrl\": \"media/5d03a9d5d4bca272e9c8cf89/audio/1598137553998-rec557e3c8f2ac42a828973c39f1d6be37.mp3\",\n        \"mediaId\": \"81c226f66705\",\n        \"originalCreatedAt\": \"2020-11-08T16:40:10.706Z\",\n        \"faceSpriteImg\": \"\"\n    }\n}"},{"id":"29f7e80a-c540-42da-8f9c-cebaf05588d5","name":"Insights - notUploaded","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/v1/media/:type/insight/:id","host":["{{url}}"],"path":["v1","media",":type","insight",":id"],"variable":[{"key":"type","value":"video"},{"key":"id","value":"5d8b7a730838363d90a17e86"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Request-Id","value":"1ef711c2-dffc-43fc-bd8d-4abb0caa9f0d"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"621"},{"key":"ETag","value":"W/\"26d-Xu9rscmBPqkqDpPFuj/DaEUF5po\""},{"key":"Date","value":"Wed, 25 Sep 2019 19:07:08 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"state\": \"notUploaded\",\n    \"message\": {\n        \"insight\": {\n            \"isAnalyze\": false,\n            \"faces\": [],\n            \"keywords\": [],\n            \"sentiments\": [],\n            \"emotions\": [],\n            \"labels\": [],\n            \"brands\": [],\n            \"topics\": [],\n            \"transcript\": [],\n            \"speakers\": []\n        },\n        \"duration\": {\n            \"inSecond\": \"0\"\n        },\n        \"createdAt\": \"2019-09-25T14:32:19.000Z\",\n        \"_id\": \"5d8b7a730838363d90a17e86\",\n        \"videoId\": \"QHw2hPhk9-R7rrlPKBZk-FBY9P8rDBV\",\n        \"name\": \"ForBiggerBlazes - Copy\",\n        \"description\": \"\",\n        \"privacyMode\": \"Public\",\n        \"size\": \"0\",\n        \"processingProgress\": \"0\",\n        \"state\": \"notUploaded\",\n        \"publishedUrl\": \"video/5cc37a170eb2173efcfc1f7d/1569421938203-ForBiggerBlazesCopymp4.mp4\",\n        \"videoFormat\": 1,\n        \"sourceLanguage\": \"en-US\",\n        \"order\": 0,\n        \"__v\": 0\n    }\n}"}],"_postman_id":"0b586e5b-6e0a-4b79-b440-e6889a803ccd"},{"name":"Transcript","id":"1bb23cc2-457d-4798-b914-e85b94a9289c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/media/transcript/:mediaId","urlObject":{"path":["v1","media","transcript",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"b4994aa1267c","key":"mediaId"}]}},"response":[{"id":"df2b8c17-0ebb-42c6-b65d-5a9b9970fcbf","name":"Transcript","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"localhost:8081/v1/media/transcript/:mediaId","host":["localhost"],"port":"8081","path":["v1","media","transcript",":mediaId"],"variable":[{"key":"mediaId","value":"b4994aa1267c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"76739528-99b4-41ed-95e8-ef2d4dbcf26d"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent, x-app-origin, x-device-id, x-device-type"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3076"},{"key":"ETag","value":"W/\"c04-k0kR9tT9WVZeV1xPvCCATQlHIjQ\""},{"key":"Date","value":"Mon, 20 Oct 2025 19:56:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"folderId\": \"0648e533f72c\",\n        \"mediaType\": \"audio\",\n        \"name\": \"vatsal\",\n        \"sourceLanguage\": \"en-US\",\n        \"insight\": {\n            \"transcript\": [\n                {\n                    \"id\": 0,\n                    \"text\": \"Okay. Let's do the testing for transcription.\",\n                    \"speakerId\": \"0\",\n                    \"confidence\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"start\": \"00:00:00.240\",\n                            \"end\": \"00:00:02.994\",\n                            \"startInSec\": 0.24,\n                            \"endInSec\": 2.9940499999999997\n                        }\n                    ],\n                    \"entities\": [\n                        {\n                            \"id\": \"1\",\n                            \"text\": \"Okay.\",\n                            \"confidence\": 0.99782515,\n                            \"speakerId\": \"0\",\n                            \"language\": \"en-US\",\n                            \"instances\": {\n                                \"startInSec\": 0.24,\n                                \"endInSec\": 0.48\n                            }\n                        },\n                        {\n                            \"id\": \"2\",\n                            \"text\": \"Let's\",\n                            \"confidence\": 0.9995938,\n                            \"speakerId\": \"0\",\n                            \"language\": \"en-US\",\n                            \"instances\": {\n                                \"startInSec\": 0.48,\n                                \"endInSec\": 0.88\n                            }\n                        },\n                        {\n                            \"id\": \"3\",\n                            \"text\": \"do\",\n                            \"confidence\": 0.99981004,\n                            \"speakerId\": \"0\",\n                            \"language\": \"en-US\",\n                            \"instances\": {\n                                \"startInSec\": 0.88,\n                                \"endInSec\": 1.04\n                            }\n                        },\n                        {\n                            \"id\": \"4\",\n                            \"text\": \"the\",\n                            \"confidence\": 0.99973065,\n                            \"speakerId\": \"0\",\n                            \"language\": \"en-US\",\n                            \"instances\": {\n                                \"startInSec\": 1.04,\n                                \"endInSec\": 1.1999999\n                            }\n                        },\n                        {\n                            \"id\": \"7\",\n                            \"text\": \"testing\",\n                            \"confidence\": 0.9982096,\n                            \"speakerId\": \"0\",\n                            \"language\": \"en-US\",\n                            \"instances\": {\n                                \"startInSec\": 1.8399999,\n                                \"endInSec\": 2.1599997999999996\n                            }\n                        },\n                        {\n                            \"id\": \"8\",\n                            \"text\": \"for\",\n                            \"confidence\": 0.9996475,\n                            \"speakerId\": \"0\",\n                            \"language\": \"en-US\",\n                            \"instances\": {\n                                \"startInSec\": 2.1599997999999996,\n                                \"endInSec\": 2.3999999\n                            }\n                        },\n                        {\n                            \"id\": \"9\",\n                            \"text\": \"transcription.\",\n                            \"confidence\": 0.9996475,\n                            \"speakerId\": \"0\",\n                            \"language\": \"en-US\",\n                            \"instances\": {\n                                \"startInSec\": 2.39999996,\n                                \"endInSec\": 2.994\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"id\": 1,\n                    \"text\": \"Okay.\",\n                    \"speakerId\": \"0\",\n                    \"confidence\": 1,\n                    \"language\": \"en\",\n                    \"instances\": [\n                        {\n                            \"start\": \"00:00:02.994\",\n                            \"end\": \"00:00:03.132\",\n                            \"startInSec\": 2.9940499999999997,\n                            \"endInSec\": 3.1317525\n                        }\n                    ],\n                    \"entities\": [\n                        {\n                            \"id\": \"0\",\n                            \"text\": \"Okay.\",\n                            \"confidence\": 0.8,\n                            \"speakerId\": \"0\",\n                            \"language\": \"\",\n                            \"instances\": {\n                                \"startInSec\": 2.9940499999999997,\n                                \"endInSec\": 3.1317525\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"id\": 2,\n                    \"text\": \"thank you!\",\n                    \"speakerId\": \"0\",\n                    \"confidence\": 1,\n                    \"language\": \"en\",\n                    \"instances\": [\n                        {\n                            \"start\": \"00:00:03.132\",\n                            \"end\": \"00:00:03.139\",\n                            \"startInSec\": 3.1317525,\n                            \"endInSec\": 3.1386376250000003\n                        }\n                    ],\n                    \"entities\": [\n                        {\n                            \"id\": \"0\",\n                            \"text\": \"thank\",\n                            \"confidence\": 0.8,\n                            \"speakerId\": \"0\",\n                            \"language\": \"\",\n                            \"instances\": {\n                                \"startInSec\": 3.1317525,\n                                \"endInSec\": 3.1351950625000002\n                            }\n                        },\n                        {\n                            \"id\": \"1\",\n                            \"text\": \"you!\",\n                            \"confidence\": 0.8,\n                            \"speakerId\": \"0\",\n                            \"language\": \"\",\n                            \"instances\": {\n                                \"startInSec\": 3.1351950625000002,\n                                \"endInSec\": 3.1386376250000003\n                            }\n                        }\n                    ]\n                }\n            ],\n            \"speakers\": [\n                {\n                    \"id\": 0,\n                    \"name\": \"0\",\n                    \"instances\": [\n                        {\n                            \"start\": \"00:00:00.240\",\n                            \"end\": \"00:00:02.994\",\n                            \"startInSec\": 0.24,\n                            \"endInSec\": 2.9940499999999997\n                        },\n                        {\n                            \"start\": \"00:00:02.994\",\n                            \"end\": \"00:00:03.132\",\n                            \"startInSec\": 2.9940499999999997,\n                            \"endInSec\": 3.1317525\n                        },\n                        {\n                            \"start\": \"00:00:03.132\",\n                            \"end\": \"00:00:03.139\",\n                            \"startInSec\": 3.1317525,\n                            \"endInSec\": 3.1386376250000003\n                        }\n                    ],\n                    \"totalWords\": 10,\n                    \"duration\": 3,\n                    \"wpm\": 200\n                }\n            ]\n        },\n        \"duration\": {\n            \"start\": \"00:00:00.240\",\n            \"end\": \"00:00:12.144\",\n            \"inSecond\": 12.144\n        },\n        \"createdAt\": \"2025-10-17T17:25:57.608Z\",\n        \"mediaId\": \"b4994aa1267c\",\n        \"mediaUrl\": \"MEDIA_URL\"\n    }\n}"}],"_postman_id":"1bb23cc2-457d-4798-b914-e85b94a9289c"},{"name":"Update Transcript Speakers","id":"eacfa313-5bb9-47b7-ad8b-ae730b89de5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"0\",\n        \"name\": \"Vatsal\"\n    }\n    // {\n    //     \"id\": \"1\",\n    //     \"name\": \"Another speaker name\"\n    // }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/media/speakers/:mediaId","description":"<h3 id=\"request-description\">Request Description</h3>\n<p>This API endpoint allows you to update speaker names in the transcription of a media object.</p>\n<h4 id=\"endpoint\">Endpoint</h4>\n<p><code>PUT /v1/media/speakers/:mediaId</code></p>\n<h4 id=\"method\">Method</h4>\n<p><code>PUT</code></p>\n<h4 id=\"purpose\">Purpose</h4>\n<p>The purpose of this request is to update the speaker information associated with a specific media object. This includes modifying the names of the speakers in the transcription data.</p>\n<h4 id=\"input-parameters\">Input Parameters</h4>\n<ul>\n<li><p><code>mediaId</code> (path parameter): The unique identifier for the media object whose speaker information you wish to update.</p>\n</li>\n<li><p><strong>Request Body</strong>: The request body should be a JSON array containing objects with the following structure:</p>\n<ul>\n<li><p><strong>id</strong> (string): The unique identifier for the speaker <strong>(ORIGINAL)</strong>.</p>\n</li>\n<li><p><strong>name</strong> (string): The new name of the speaker.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>The response will return a JSON object containing the following fields:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates the status of the request.</p>\n</li>\n<li><p><strong>message</strong>: String</p>\n</li>\n</ul>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"message\": \"\"\n}\n\n</code></pre>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>Ensure that the <code>mediaId</code> provided in the URL corresponds to an existing media object.</p>\n</li>\n<li><p>The request body must be formatted as a JSON array, even if updating a single speaker.</p>\n</li>\n<li><p>The response will confirm the status of the update operation, along with any relevant data about the media analysis.</p>\n</li>\n</ul>\n","urlObject":{"path":["v1","media","speakers",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"b4994aa1267c","key":"mediaId"}]}},"response":[{"id":"29452c6d-2599-475a-ac08-8be4eb266b68","name":"success ","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/media/insight/:mediaId","host":["{{url}}"],"path":["v1","media","insight",":mediaId"],"variable":[{"key":"mediaId","value":"81c226f66705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"57cbab40-f062-4ca7-87d4-7fe5786451ab"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4933"},{"key":"ETag","value":"W/\"1345-aNOPGrklzi4a9VniPaNXDt1Xx7A\""},{"key":"Date","value":"Tue, 15 Dec 2020 00:30:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"insight\": {\n            \"isAnalyze\": true,\n            \"transcript\": [\n                {\n                    \"id\": 1,\n                    \"text\": \"Both. Hello hello good how are you?\",\n                    \"confidence\": 0.8278,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:05.92\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:05.92\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 2,\n                    \"text\": \"Is this speak AI? Yes it is.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:05.92\",\n                            \"adjustedEnd\": \"0:00:08.44\",\n                            \"start\": \"0:00:05.92\",\n                            \"end\": \"0:00:08.44\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 3,\n                    \"text\": \"Yeah, I was looking at the company and notice here that you develop software right?\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:08.44\",\n                            \"adjustedEnd\": \"0:00:13.84\",\n                            \"start\": \"0:00:08.44\",\n                            \"end\": \"0:00:13.84\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 4,\n                    \"text\": \"Yes, and I wanted to see if your company's ever applied for the irap grants.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:13.84\",\n                            \"adjustedEnd\": \"0:00:19.24\",\n                            \"start\": \"0:00:13.84\",\n                            \"end\": \"0:00:19.24\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 5,\n                    \"text\": \"Yes we have. We have a have a person\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:19.24\",\n                            \"adjustedEnd\": \"0:00:22.48\",\n                            \"start\": \"0:00:19.24\",\n                            \"end\": \"0:00:22.48\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 6,\n                    \"text\": \"that we've sponsored right now and then we,\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 2,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:22.48\",\n                            \"adjustedEnd\": \"0:00:25.36\",\n                            \"start\": \"0:00:22.48\",\n                            \"end\": \"0:00:25.36\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 7,\n                    \"text\": \"you know, I wrap your kickoff projects here.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 2,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:25.36\",\n                            \"adjustedEnd\": \"0:00:28.24\",\n                            \"start\": \"0:00:25.36\",\n                            \"end\": \"0:00:28.24\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 8,\n                    \"text\": \"So we've got a representative Local 8 keeping Ramsey who's\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 2,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:28.24\",\n                            \"adjustedEnd\": \"0:00:31.84\",\n                            \"start\": \"0:00:28.24\",\n                            \"end\": \"0:00:31.84\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 9,\n                    \"text\": \"helping us out with the project right now.\",\n                    \"confidence\": 0.7905,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:31.84\",\n                            \"adjustedEnd\": \"0:00:34.73\",\n                            \"start\": \"0:00:31.84\",\n                            \"end\": \"0:00:34.73\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 10,\n                    \"text\": \"In the R&D you're taking care of as well.\",\n                    \"confidence\": 0.8583,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:34.73\",\n                            \"adjustedEnd\": \"0:00:38.01\",\n                            \"start\": \"0:00:34.73\",\n                            \"end\": \"0:00:38.01\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 11,\n                    \"text\": \"Yes, yeah, exactly OK, so scrolling to see if I can help you,\",\n                    \"confidence\": 0.7788,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:38.01\",\n                            \"adjustedEnd\": \"0:00:42.24\",\n                            \"start\": \"0:00:38.01\",\n                            \"end\": \"0:00:42.24\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 12,\n                    \"text\": \"but you already OK and not in OK.\",\n                    \"confidence\": 0.7788,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:42.24\",\n                            \"adjustedEnd\": \"0:00:44.84\",\n                            \"start\": \"0:00:42.24\",\n                            \"end\": \"0:00:44.84\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 13,\n                    \"text\": \"Thank you bye.\",\n                    \"confidence\": 0.7788,\n                    \"speakerId\": 1,\n                    \"language\": \"en-US\",\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:44.84\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:44.84\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ]\n                }\n            ],\n            \"faces\": [],\n            \"keywords\": [\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:08.44\",\n                            \"adjustedEnd\": \"0:00:13.84\",\n                            \"start\": \"0:00:08.44\",\n                            \"end\": \"0:00:13.84\"\n                        },\n                        {\n                            \"adjustedStart\": \"0:00:13.84\",\n                            \"adjustedEnd\": \"0:00:19.24\",\n                            \"start\": \"0:00:13.84\",\n                            \"end\": \"0:00:19.24\"\n                        }\n                    ],\n                    \"id\": 1,\n                    \"name\": \"company\"\n                },\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:25.36\",\n                            \"adjustedEnd\": \"0:00:28.24\",\n                            \"start\": \"0:00:25.36\",\n                            \"end\": \"0:00:28.24\"\n                        },\n                        {\n                            \"adjustedStart\": \"0:00:31.84\",\n                            \"adjustedEnd\": \"0:00:34.73\",\n                            \"start\": \"0:00:31.84\",\n                            \"end\": \"0:00:34.73\"\n                        }\n                    ],\n                    \"id\": 2,\n                    \"name\": \"project\"\n                }\n            ],\n            \"labels\": [],\n            \"brands\": [],\n            \"topics\": [\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ],\n                    \"id\": 1,\n                    \"name\": \"Promotions\"\n                },\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ],\n                    \"id\": 2,\n                    \"name\": \"Tech Blogs and Websites\"\n                },\n                {\n                    \"isDeleted\": false,\n                    \"instances\": [\n                        {\n                            \"adjustedStart\": \"0:00:00\",\n                            \"adjustedEnd\": \"0:00:47.744\",\n                            \"start\": \"0:00:00\",\n                            \"end\": \"0:00:47.744\"\n                        }\n                    ],\n                    \"id\": 3,\n                    \"name\": \"Techcrunch 50\"\n                }\n            ],\n            \"people\": [],\n            \"locations\": [],\n            \"arts\": [],\n            \"dates\": [],\n            \"events\": [],\n            \"geopolitical\": [],\n            \"languages\": [],\n            \"laws\": [],\n            \"money\": [],\n            \"ordinals\": [],\n            \"percentages\": [],\n            \"quantities\": [],\n            \"times\": [],\n            \"cardinals\": [],\n            \"nationalities\": [],\n            \"products\": []\n        },\n        \"duration\": {\n            \"inSecond\": \"47\",\n            \"end\": \"0:00:47.744\",\n            \"start\": \"0:00:00\"\n        },\n        \"summary\": {\n            \"original\": {\n                \"text\": \"\",\n                \"createdAt\": \"2020-09-04T16:16:19.118Z\"\n            }\n        },\n        \"tags\": [],\n        \"isTranscriptionOnly\": false,\n        \"isVideo\": false,\n        \"processingProgress\": \"100\",\n        \"state\": \"processed\",\n        \"remark\": \"\",\n         \"sentiment\": [\n        {\n            \"document\": {\n            \"Negative\": 0.00000,\n            \"Neutral\": 0.00000,\n            \"Positive\": 0.00000\n            },\n            \"sentences\": [\n            {\n                \"id\": 1,\n                \"instances\": [],\n                \"score\": {\n                \"compound\": 0,\n                \"neg\": 0,\n                \"neu\": 1,\n                \"pos\": 0\n                },\n                \"text\": \"Sentence 1\"\n            },\n            {\n                \"id\": 2,\n                \"instances\": [],\n                \"score\": {\n                \"compound\": 0,\n                \"neg\": 0,\n                \"neu\": 1,\n                \"pos\": 0\n                },\n                \"text\": \"Sentence 2\"\n            },\n            {\n                \"id\": 3,\n                \"instances\": [],\n                \"score\": {\n                \"compound\": 0.7269,\n                \"neg\": 0.037,\n                \"neu\": 0.809,\n                \"pos\": 0.154\n                },\n                \"text\": \"Sentence 3\"\n            }          \n            ]\n        }\n        ],\n        \"createdAt\": \"2020-08-22T23:05:57.000Z\",\n        \"updatedAt\": \"2020-08-22T23:11:11.288Z\",\n        \"name\": \"REc557e3c8f2ac42a828973c39f1d6be37\",\n        \"description\": \"\",\n        \"publishedUrl\": \"media/5d03a9d5d4bca272e9c8cf89/audio/1598137553998-rec557e3c8f2ac42a828973c39f1d6be37.mp3\",\n        \"mediaId\": \"81c226f66705\",\n        \"originalCreatedAt\": \"2020-11-08T16:40:10.706Z\",\n        \"faceSpriteImg\": \"\"\n    }\n}"}],"_postman_id":"eacfa313-5bb9-47b7-ad8b-ae730b89de5a"},{"name":"Status","id":"c4bb2b6b-cd0a-44ec-9afb-9e253bcfeff1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"},{"key":"x-access-token","type":"text","value":"{{x-access-token}}"}],"url":"{{url}}/v1/media/status/:mediaId","description":"<p>If you need a list or a quick preview of a media you can request meta-data about media objects with this endpoint, this will include all information except for results of analysis, transcripts, etc.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","media","status",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"mediaId"}]}},"response":[{"id":"ee856e2a-e8ea-4dad-9b9c-76c376157d88","name":"success","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/media/status/:mediaId","host":["{{url}}"],"path":["v1","media","status",":mediaId"],"variable":[{"key":"mediaId","value":"81c226f66705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"7b322b4d-94c7-4a4c-88ad-891667ede761"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"532"},{"key":"ETag","value":"W/\"214-6ei2fDLWKhXIJ5dQTH4emOCDiY4\""},{"key":"Date","value":"Tue, 15 Dec 2020 00:30:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"duration\": {\n            \"inSecond\": \"47\",\n            \"end\": \"0:00:47.744\",\n            \"start\": \"0:00:00\"\n        },\n        \"tags\": [],\n        \"isVideo\": false,\n        \"processingProgress\": \"100\",\n        \"state\": \"processed\",\n        \"remark\": \"\",\n        \"_id\": \"5f41a4d5c35d8d0fd556e075\",\n        \"createdAt\": \"2020-08-22T23:05:57.000Z\",\n        \"updatedAt\": \"2020-08-22T23:11:11.288Z\",\n        \"name\": \"REc557e3c8f2ac42a828973c39f1d6be37\",\n        \"description\": \"\",\n        \"publishedUrl\": \"media/5d03a9d5d4bca272e9c8cf89/audio/1598137553998-rec557e3c8f2ac42a828973c39f1d6be37.mp3\",\n        \"mediaId\": \"81c226f66705\",\n        \"originalCreatedAt\": \"2020-11-08T16:40:10.706Z\"\n    }\n}"},{"id":"2d2ee9ff-b719-48f7-a7d5-b06693ea3c05","name":"Insights - notUploaded","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/v1/media/:type/insight/:id","host":["{{url}}"],"path":["v1","media",":type","insight",":id"],"variable":[{"key":"type","value":"video"},{"key":"id","value":"5d8b7a730838363d90a17e86"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Request-Id","value":"1ef711c2-dffc-43fc-bd8d-4abb0caa9f0d"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"621"},{"key":"ETag","value":"W/\"26d-Xu9rscmBPqkqDpPFuj/DaEUF5po\""},{"key":"Date","value":"Wed, 25 Sep 2019 19:07:08 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"state\": \"notUploaded\",\n    \"message\": {\n        \"insight\": {\n            \"isAnalyze\": false,\n            \"faces\": [],\n            \"keywords\": [],\n            \"sentiments\": [],\n            \"emotions\": [],\n            \"labels\": [],\n            \"brands\": [],\n            \"topics\": [],\n            \"transcript\": [],\n            \"speakers\": []\n        },\n        \"duration\": {\n            \"inSecond\": \"0\"\n        },\n        \"createdAt\": \"2019-09-25T14:32:19.000Z\",\n        \"_id\": \"5d8b7a730838363d90a17e86\",\n        \"videoId\": \"QHw2hPhk9-R7rrlPKBZk-FBY9P8rDBV\",\n        \"name\": \"ForBiggerBlazes - Copy\",\n        \"description\": \"\",\n        \"privacyMode\": \"Public\",\n        \"size\": \"0\",\n        \"processingProgress\": \"0\",\n        \"state\": \"notUploaded\",\n        \"publishedUrl\": \"video/5cc37a170eb2173efcfc1f7d/1569421938203-ForBiggerBlazesCopymp4.mp4\",\n        \"videoFormat\": 1,\n        \"sourceLanguage\": \"en-US\",\n        \"order\": 0,\n        \"__v\": 0\n    }\n}"}],"_postman_id":"c4bb2b6b-cd0a-44ec-9afb-9e253bcfeff1"},{"name":"Update meta-data","id":"ac30a062-e214-4771-b131-afeda3b5320e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"update-1\",\n\t\"description\": \"description-1\",\n\t\"tags\":  [\"work\", \"personal\"]\n}"},"url":"{{url}}/v1/media/:mediaId","description":"<p>If you want to rename, edit description or add a tag to your media, you can do it here.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","media",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"mediaId"}]}},"response":[{"id":"02793584-350a-47c2-8718-9dcc6a37baea","name":"Update Media data - success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"update-1\",\n\t\"description\": \"description-1\",\n\t\"tags\":  [\"work\", \"personal\"]\n}"},"url":{"raw":"{{url}}/v1/media/:mediaId","host":["{{url}}"],"path":["v1","media",":mediaId"],"variable":[{"key":"mediaId","value":"81c226f66705"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"af593a78-2996-4d74-b050-85337d2af509"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"54"},{"key":"ETag","value":"W/\"36-BG8ndBiPGT8WsD8YdpISDT2CFzs\""},{"key":"Date","value":"Tue, 15 Dec 2020 00:31:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Updated successfully.\"\n}"},{"id":"eacfae7f-ced8-4828-b819-324a3e406d23","name":"Update Media data - failure","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"update-1\",\n\t\"description\": \"description-1\",\n\t\"tags\":  [\"work\", \"personal\"]\n}"},"url":{"raw":"{{url}}/v1/media/:mediaId","host":["{{url}}"],"path":["v1","media",":mediaId"],"variable":[{"key":"mediaId","value":"123123123"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"7ed88c1e-e1ee-44b0-afa5-50041d2b2309"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"225"},{"key":"ETag","value":"W/\"e1-wv6zKKp9Qh98RxLeFO6ddJaQox8\""},{"key":"Date","value":"Tue, 15 Dec 2020 00:31:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"7ed88c1e-e1ee-44b0-afa5-50041d2b2309\",\n    \"code\": 404,\n    \"message\": \"Media does not exist!\",\n    \"hints\": [\n        \"The requested operation failed because a resource associated with the request could not be found.\"\n    ]\n}"}],"_postman_id":"ac30a062-e214-4771-b131-afeda3b5320e"},{"name":"Delete File","id":"e7f7950f-6f2d-4d36-88d6-d65fc694151a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/media/:mediaId","description":"<p>If you want to remove media from your library - you can do it here.</p>\n<p>We can revert the changes if you send us a request.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","media",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"mediaId"}]}},"response":[{"id":"db7a5376-b32f-4c70-89af-4222f3ae9f97","name":"Delete","originalRequest":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/media/:mediaId","host":["{{url}}"],"path":["v1","media",":mediaId"],"variable":[{"key":"mediaId","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e7f7950f-6f2d-4d36-88d6-d65fc694151a"}],"id":"4bb1b7d8-0636-475c-9838-b3bbd7bc73c8","description":"<p>This media collection of endpoints enables operation of list, insights, transcript and export.</p>\n","event":[{"listen":"prerequest","script":{"id":"7e2386e7-fa95-4734-89ba-337a6f3cd4a7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9e12fc68-db4a-46b7-bf87-ec8c90c70f8b","type":"text/javascript","exec":[""]}}],"_postman_id":"4bb1b7d8-0636-475c-9838-b3bbd7bc73c8","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Text","item":[{"name":"Create Text note","id":"1001bb40-bc9c-42f8-ad2d-03c5cf131cb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"text file 1\",\r\n    \"folderId\": \"\",\r\n    \"description\": \"description\",\r\n    \"tags\": [\r\n        \"tag1\",\r\n        \"tag2\"\r\n    ],\r\n    \"text\": \"<b>This is my sample text. Please provide the proper text with some entities included in it. For example: Apple, Canada, Fruits, $50,000.</b>\",\r\n    \"rawText\": \"This is my sample text. Please provide the proper text with some entities included in it. For example: Apple, Canada, Fruits, $50,000.\",\r\n    \"remark\": \"add any remarks\",\r\n    \"fields\": [\r\n        {\r\n            \"id\": \"\",\r\n            \"value\": \"\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/text/create","description":"<h2 id=\"parameters\">PARAMETERS</h2>\n<p>The difference between <code>rawText</code> and <code>text.</code></p>\n<p><code>text</code> (required): Text is an HTML field to display content on the editor. It helps users to identify <code>bold,</code> <code>italic</code> or any other editor functionality.</p>\n<p><strong>Important:</strong> If you don't have an HTML editor in your application, you can pass normal text content.</p>\n<p><code>rawText</code> (required): This helps Speak Ai to analyze text notes.</p>\n<p><code>remark</code>: If you want to pass any remarks from the user to display on Speak and also in your application.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">userId: String; // optional\nfolderId: String, // optional\nname: String, // required,\ndescription: string, // optional\ntags: [], // optional\ntext: \"HTML content\", // required\nrawText: \"raw text content\", // required\nremark: \"string\", // optional\n\n</code></pre>\n<h3 id=\"webhook-callback-url\">Webhook Callback URL:</h3>\n<ul>\n<li>If you created a webhook for text events and want to receive a callback to a specific URL for this text note, you can assign <code>callbackUrl</code> - <code>string</code> in a <code>req.body</code>.</li>\n<li>Speak will consider the <code>callbackUrl</code> and will skip the callbackUrl created via <a href=\"https://docs.speakai.co/#5777a89c-a6c3-4d0e-aab1-d33fdec5cbe8\">Webhook API</a>.</li>\n</ul>\n<hr />\n<h2 id=\"response\">Response</h2>\n<p>You can select from the examples attached to this API endpoint or find below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"status\": \"success\",\n    \"data\": {\n        \"mediaId\": \"xxxxxxxxx\",\n        \"folderId\": \"\"\n    }\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","text","create"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"af0b08b0-4b3d-4912-8855-6c0d26d3cc33","name":"Create Text note","originalRequest":{"method":"POST","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"text file 2\",\r\n    \"description\": \"description\",\r\n    \"tags\": [\r\n        \"tag1\",\r\n        \"tag2\"\r\n    ],\r\n    \"text\": \"<b>This is my sample text. Please provide the proper text with some entities included in it. For example: Apple, Canada, Fruits, $50,000.</b>\",\r\n    \"rawText\": \"This is my sample text. Please provide the proper text with some entities included in it. For example: Apple, Canada, Fruits, $50,000.\",\r\n    \"remark\": \"add any remarks\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/text/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"103cf91b-5a4e-4e39-bb7c-0eb12adde4a4"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"54"},{"key":"ETag","value":"W/\"36-NUXmuhkCB5AXAAuxd0MMV2krVO4\""},{"key":"Date","value":"Tue, 08 Jun 2021 14:34:42 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"mediaId\": \"c55125c7cc32\"\n    }\n}"}],"_postman_id":"1001bb40-bc9c-42f8-ad2d-03c5cf131cb6"},{"name":"Text Insight","id":"d65573c9-98ad-4089-93ad-9d0a173fdeea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/text/insight/:mediaId","description":"<p>You need to call this API to find the insights from your text note.</p>\n<p>Please check an example find the return response and an object.</p>\n<h2 id=\"response\">Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"status\": \"success\",\n  \"data\": {\n    \"count\": {\n      \"wordCount\": 0,\n      \"characterCount\": 0,\n      \"characterCountWithoutSpace\": 0\n    },\n    \"insight\": {\n      \"intents\": {\n        \"needs\": [\n          {\n            \"id\": 32,\n            \"text\": \"Sentence 1\"\n          }\n        ],\n        \"wants\": [\n          {\n            \"id\": 50,\n            \"text\": \"Sentence 1\"\n          }\n        ]\n      },\n      \"state\": \"processed\",\n      \"updatedAt\": \"2021-04-13T00:30:26.720Z\",\n      \"arts\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 512,\n              \"startChar\": 489\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 1397,\n              \"startChar\": 1386\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxxxx\",\n          \"id\": 1\n        }\n      ],\n      \"brands\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 202,\n              \"startChar\": 198\n            },\n            {\n              \"endChar\": 356,\n              \"startChar\": 352\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 333,\n              \"startChar\": 310\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 1\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 721,\n              \"startChar\": 713\n            },\n            {\n              \"endChar\": 3009,\n              \"startChar\": 3001\n            },\n            {\n              \"endChar\": 6074,\n              \"startChar\": 6066\n            },\n            {\n              \"endChar\": 6391,\n              \"startChar\": 6383\n            },\n            {\n              \"endChar\": 6615,\n              \"startChar\": 6607\n            },\n            {\n              \"endChar\": 6854,\n              \"startChar\": 6846\n            },\n            {\n              \"endChar\": 6914,\n              \"startChar\": 6906\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 2\n        }\n      ],\n      \"cardinals\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 1797,\n              \"startChar\": 1794\n            },\n            {\n              \"endChar\": 1850,\n              \"startChar\": 1847\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 3028,\n              \"startChar\": 3022\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 1\n        }\n      ],\n      \"dates\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 755,\n              \"startChar\": 739\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"events\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 755,\n              \"startChar\": 739\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"facs\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 755,\n              \"startChar\": 739\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"geopolitical\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"keywords\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"languages\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"laws\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"locations\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"money\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"nationalities\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 1284,\n              \"startChar\": 1275\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"Republish\",\n          \"id\": 0\n        }\n      ],\n      \"ordinals\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 2812,\n              \"startChar\": 2807\n            },\n            {\n              \"endChar\": 2851,\n              \"startChar\": 2846\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"people\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 196,\n              \"startChar\": 188\n            },\n            {\n              \"endChar\": 350,\n              \"startChar\": 342\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"percentages\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 196,\n              \"startChar\": 188\n            },\n            {\n              \"endChar\": 350,\n              \"startChar\": 342\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"products\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 4930,\n              \"startChar\": 4926\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"quantities\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 4930,\n              \"startChar\": 4926\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"times\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 4930,\n              \"startChar\": 4926\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"topics\": []\n    },\n    \"description\": \"xxxxx\",\n    \"tags\": [\n      \"tag1\",\n      \"tag2\"\n    ],\n    \"text\": \"&lt;strong class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Hello, This is sample text&lt;/b&gt;\",\n    \"rawText\": \"Hello, This is sample text\",\n    \"state\": \"processed\",\n    \"assignTo\": \"\",\n    \"remark\": \"\",\n    \"sentiment\": [\n      {\n        \"document\": {\n          \"Negative\": 0.00000,\n          \"Neutral\": 0.00000,\n          \"Positive\": 0.00000\n        },\n        \"sentences\": [\n          {\n            \"id\": 1,\n            \"instances\": [],\n            \"score\": {\n              \"compound\": 0,\n              \"neg\": 0,\n              \"neu\": 1,\n              \"pos\": 0\n            },\n            \"text\": \"Sentence 1\"\n          },\n          {\n            \"id\": 2,\n            \"instances\": [],\n            \"score\": {\n              \"compound\": 0,\n              \"neg\": 0,\n              \"neu\": 1,\n              \"pos\": 0\n            },\n            \"text\": \"Sentence 2\"\n          },\n          {\n            \"id\": 3,\n            \"instances\": [],\n            \"score\": {\n              \"compound\": 0.7269,\n              \"neg\": 0.037,\n              \"neu\": 0.809,\n              \"pos\": 0.154\n            },\n            \"text\": \"Sentence 3\"\n          }          \n        ]\n      }\n    ],\n    \"createdAt\": \"2021-04-13T00:30:26.721Z\",\n    \"originalCreatedAt\": \"2021-04-13T00:30:26.721Z\",\n    \"name\": \"xxxxx\"\n  }\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","text","insight",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"c1f4c82dec47","key":"mediaId"}]}},"response":[{"id":"5f5b86c0-91e2-411d-9ac1-5b9eba41a0c9","name":"Text Insight","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/text/insight/:mediaId","host":["{{url}}"],"path":["v1","text","insight",":mediaId"],"variable":[{"key":"mediaId","value":"ca9cc19b9744"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"05225c47-0209-4bcb-a316-de7cd3a4b8e2"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"65449"},{"key":"ETag","value":"W/\"ffa9-sDr/fppiCaREPdRHc+JYrF+Q8cg\""},{"key":"Date","value":"Tue, 08 Jun 2021 14:47:01 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": {\n    \"count\": {\n      \"wordCount\": 0,\n      \"characterCount\": 0,\n      \"characterCountWithoutSpace\": 0\n    },\n    \"insight\": {\n      \"intents\": {\n        \"needs\": [\n          {\n            \"id\": 32,\n            \"text\": \"Sentence 1\"\n          }\n        ],\n        \"wants\": [\n          {\n            \"id\": 50,\n            \"text\": \"Sentence 1\"\n          }\n        ]\n      },\n      \"state\": \"processed\",\n      \"updatedAt\": \"2021-04-13T00:30:26.720Z\",\n      \"arts\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 512,\n              \"startChar\": 489\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 1397,\n              \"startChar\": 1386\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxxxx\",\n          \"id\": 1\n        }\n      ],\n      \"brands\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 202,\n              \"startChar\": 198\n            },\n            {\n              \"endChar\": 356,\n              \"startChar\": 352\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 333,\n              \"startChar\": 310\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 1\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 721,\n              \"startChar\": 713\n            },\n            {\n              \"endChar\": 3009,\n              \"startChar\": 3001\n            },\n            {\n              \"endChar\": 6074,\n              \"startChar\": 6066\n            },\n            {\n              \"endChar\": 6391,\n              \"startChar\": 6383\n            },\n            {\n              \"endChar\": 6615,\n              \"startChar\": 6607\n            },\n            {\n              \"endChar\": 6854,\n              \"startChar\": 6846\n            },\n            {\n              \"endChar\": 6914,\n              \"startChar\": 6906\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 2\n        }\n      ],\n      \"cardinals\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 1797,\n              \"startChar\": 1794\n            },\n            {\n              \"endChar\": 1850,\n              \"startChar\": 1847\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        },\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 3028,\n              \"startChar\": 3022\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 1\n        }\n      ],\n      \"dates\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 755,\n              \"startChar\": 739\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"events\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 755,\n              \"startChar\": 739\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"facs\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 755,\n              \"startChar\": 739\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"geopolitical\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"keywords\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"languages\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"laws\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"locations\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"money\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 172,\n              \"startChar\": 163\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"nationalities\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 1284,\n              \"startChar\": 1275\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"Republish\",\n          \"id\": 0\n        }\n      ],\n      \"ordinals\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 2812,\n              \"startChar\": 2807\n            },\n            {\n              \"endChar\": 2851,\n              \"startChar\": 2846\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"people\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 196,\n              \"startChar\": 188\n            },\n            {\n              \"endChar\": 350,\n              \"startChar\": 342\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"percentages\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 196,\n              \"startChar\": 188\n            },\n            {\n              \"endChar\": 350,\n              \"startChar\": 342\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"products\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 4930,\n              \"startChar\": 4926\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"quantities\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 4930,\n              \"startChar\": 4926\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"times\": [\n        {\n          \"isDeleted\": false,\n          \"instances\": [\n            {\n              \"endChar\": 4930,\n              \"startChar\": 4926\n            }\n          ],\n          \"isCustom\": false,\n          \"name\": \"xxxxx\",\n          \"id\": 0\n        }\n      ],\n      \"topics\": []\n    },\n    \"description\": \"xxxxx\",\n    \"tags\": [\n      \"tag1\",\n      \"tag2\"\n    ],\n    \"text\": \"<b>Hello, This is sample text</b>\",\n    \"rawText\": \"Hello, This is sample text\",\n    \"state\": \"processed\",\n    \"assignTo\": \"\",\n    \"remark\": \"\",\n    \"sentiment\": [\n      {\n        \"document\": {\n          \"Negative\": 0.00000,\n          \"Neutral\": 0.00000,\n          \"Positive\": 0.00000\n        },\n        \"sentences\": [\n          {\n            \"id\": 1,\n            \"instances\": [],\n            \"score\": {\n              \"compound\": 0,\n              \"neg\": 0,\n              \"neu\": 1,\n              \"pos\": 0\n            },\n            \"text\": \"Sentence 1\"\n          },\n          {\n            \"id\": 2,\n            \"instances\": [],\n            \"score\": {\n              \"compound\": 0,\n              \"neg\": 0,\n              \"neu\": 1,\n              \"pos\": 0\n            },\n            \"text\": \"Sentence 2\"\n          },\n          {\n            \"id\": 3,\n            \"instances\": [],\n            \"score\": {\n              \"compound\": 0.7269,\n              \"neg\": 0.037,\n              \"neu\": 0.809,\n              \"pos\": 0.154\n            },\n            \"text\": \"Sentence 3\"\n          }          \n        ]\n      }\n    ],\n    \"createdAt\": \"2021-04-13T00:30:26.721Z\",\n    \"originalCreatedAt\": \"2021-04-13T00:30:26.721Z\",\n    \"name\": \"xxxxx\"\n  }\n}\n"}],"_postman_id":"d65573c9-98ad-4089-93ad-9d0a173fdeea"},{"name":"ReAnalyze Text","id":"811317b8-996b-41fd-b40c-42f37392f7a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"},{"key":"x-access-token","type":"text","value":"{{x-access-token}}"}],"url":"{{url}}/v1/text/reanalyze/:mediaId","description":"<h2 id=\"endpoint-get-urlv1textreanalyzemediaid\">Endpoint: <code>GET {{url}}/v1/text/reanalyze/:mediaId</code></h2>\n<h3 id=\"purpose\">Purpose</h3>\n<p>This endpoint is designed to trigger a reanalysis of the text associated with a specific media item identified by <code>mediaId</code>. It allows users to refresh the analysis results for a given media item.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<p>This is a <strong>GET</strong> request and does not require a request body. The <code>mediaId</code> should be provided as a path parameter in the URL.</p>\n<h3 id=\"response-format\">Response Format</h3>\n<p>The response will be in JSON format and will include the following keys:</p>\n<ul>\n<li><p><code>status</code>: A string indicating the status of the reanalysis request.</p>\n</li>\n<li><p><code>message</code>: A string providing additional information or context regarding the request.</p>\n</li>\n</ul>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"message\": \"\"\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","text","reanalyze",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"3f8d1ec6ca39","key":"mediaId"}]}},"response":[{"id":"3d300886-1c8c-4d5b-bb33-de6bcdddd28d","name":"ReAnalyze Text","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"},{"key":"x-access-token","type":"text","value":"{{x-access-token}}"}],"url":{"raw":"{{url}}/v1/text/reanalyze/:mediaId","host":["{{url}}"],"path":["v1","text","reanalyze",":mediaId"],"variable":[{"key":"mediaId","value":"3f8d1ec6ca39"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"98c79ec2-f79d-4655-8ade-e5568094edc1"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"81"},{"key":"ETag","value":"W/\"51-Zmv0BGQmw1LZyRA5RhbZSdU2iiw\""},{"key":"Date","value":"Wed, 12 May 2021 15:22:33 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Leon Wednesday Meeting re-analyzed successfully!\"\n}"}],"_postman_id":"811317b8-996b-41fd-b40c-42f37392f7a6"},{"name":"Update Text Note","id":"dd13ff94-db3b-47b3-9120-51f9929abc5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"text file\",\r\n    \"description\": \"description\",\r\n    \"tags\": [\r\n        \"tag1\",\r\n        \"tag2\"\r\n    ],\r\n    \"text\": \"<b>this is my sample text 2</b>\",\r\n    \"rawText\": \"this is my sample text 2. Sample code format. Happy.\",\r\n    \"remark\": \"update any remarks\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/text/update/:mediaId","description":"<h2 id=\"parameters\">PARAMETERS</h2>\n<p>If you want to update your customer unique <code>medicalId</code> key then you can pass as a <code>string</code>.</p>\n<p>The difference between <code>rawText</code> and <code>text</code></p>\n<p><code>text</code> (required): Text is an HTML field to display content on the editor. It helps users to identify <code>bold</code>, <code>italic</code> or any other editor functionality.</p>\n<p><strong>Important:</strong> If you don't have HTML editor in your application then you can pass normal text content.</p>\n<p><code>rawText</code> (required): This helps Speak Ai to analyze text notes. </p>\n<p><code>remark</code>: If you want to pass any remarks from the user to display on Speak and also in your application.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>medicalId: String, // optional\nname: String, // required,\ndescription: string, // optional\ntags: [], // optional\ntext: \"HTML content\", // required\nrawText: \"raw text content\", // required\nremark: \"string\", // optional\n</code></pre>","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","text","update",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"2b12351c8146","key":"mediaId"}]}},"response":[{"id":"325d0bd4-3525-4e64-b8d2-f4d247a75482","name":"Update Text Note","originalRequest":{"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"text file\",\r\n    \"description\": \"description\",\r\n    \"tags\": [\r\n        \"tag1\",\r\n        \"tag2\"\r\n    ],\r\n    \"text\": \"<b>this is my sample text 2</b>\",\r\n    \"rawText\": \"this is my sample text 2. Sample code format. Happy.\",\r\n    \"remark\": \"update any remarks\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/text/update/:mediaId","host":["{{url}}"],"path":["v1","text","update",":mediaId"],"variable":[{"key":"mediaId","value":"2b12351c8146"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dd13ff94-db3b-47b3-9120-51f9929abc5e"},{"name":"Delete Text Note","event":[{"listen":"test","script":{"id":"90bcb3db-edd4-4f07-a722-185989848da0","exec":["pm.test(\"Response status code is 204\", function () {","    pm.expect(pm.response.code).to.equal(204);","});","","","pm.test(\"Response body is empty for successful delete operation\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('object').that.is.empty;","});","","","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","","","pm.test(\"Media ID in request matches deleted resource\", function () {","    const responseData = pm.response.json();","    const mediaId = pm.request.url.split('/').pop(); // Extracting mediaId from the request URL","","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.mediaId).to.exist.and.to.equal(mediaId, \"Media ID should match the deleted resource\");","});","","","pm.test(\"Ensure that the resource is no longer retrievable after deletion\", function () {","    pm.sendRequest({","        url: '{{url}}/v1/text/:mediaId',","        method: 'GET'","    }, function (err, res) {","        pm.expect(res).to.have.property('status', 404);","    });","});",""],"type":"text/javascript","packages":{}}}],"id":"3f934551-d437-4d80-9041-cd6b348ae92e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/text/:mediaId","description":"<h2 id=\"delete-request-to-remove-a-text-resource\">DELETE Request to Remove a Text Resource</h2>\n<p>This endpoint is used to delete a specific text resource identified by its unique <code>mediaId</code>. By sending a DELETE request to this endpoint, the client can remove the text resource from the server.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>mediaId</strong> (path parameter): A unique identifier for the text resource that you wish to delete. This is a required parameter and should be included in the URL.</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successful deletion of the text resource, the server will respond with a status code indicating the outcome of the request:</p>\n<ul>\n<li><p><strong>204 No Content</strong>: Indicates that the resource was successfully deleted and there is no additional content to return.</p>\n</li>\n<li><p><strong>404 Not Found</strong>: Indicates that the specified <code>mediaId</code> does not correspond to any existing resource.</p>\n</li>\n</ul>\n<h3 id=\"example\">Example</h3>\n<p>To delete a text resource with a specific <code>mediaId</code>, the request would look like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>DELETE {{url}}/v1/text/12345\n\n</code></pre><p>This request would attempt to delete the text resource with the ID <code>12345</code>.</p>\n<p>Make sure to handle the response appropriately to confirm the deletion or to manage any errors that may arise.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","text",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"3722e7826784","key":"mediaId"}]}},"response":[{"id":"78d67404-46eb-4579-94b2-5c4b8b553ec2","name":"Delete Text Note","originalRequest":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/text/:mediaId","host":["{{url}}"],"path":["v1","text",":mediaId"],"variable":[{"key":"mediaId","value":"3722e7826784"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3f934551-d437-4d80-9041-cd6b348ae92e"}],"id":"9efb5019-0012-4469-97ed-31e0919e5e92","description":"<p>Text notes are operable as well, complete listing of media can be requested, insight to particular analyzed media, analytics on top of our analysis, and of course, you can delete your note !</p>\n<p>Attention: \n<code>id</code> is the required parameter here instead of <code>mediaId</code> as in Media functionalities</p>\n","event":[{"listen":"prerequest","script":{"id":"630f2a22-bb06-4f20-bb63-5392a6d4fdc2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c04cc527-4d58-41a0-8a3b-1886cdf49c4d","type":"text/javascript","exec":[""]}}],"_postman_id":"9efb5019-0012-4469-97ed-31e0919e5e92","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Exports","item":[{"name":"Export","id":"fcdaa5ed-cd17-48ba-98c7-2a7af4e13ce6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/:mediaType/export/:mediaId/:fileType?isSpeakerNames=true&isTimeStamps=true&isInsightVisualized=true&isRedacted=true","description":"<p>if you want to deliver a hard-copy of your media object you can export it to any of the following formats:</p>\n<ul>\n<li><p>PDF</p>\n</li>\n<li><p>TXT</p>\n</li>\n<li><p>DOCX</p>\n</li>\n<li><p>SRT</p>\n</li>\n<li><p>VTT</p>\n</li>\n<li><p>sourceFile (mp4)</p>\n</li>\n<li><p>PDF</p>\n</li>\n</ul>\n<h3 id=\"unsupported-formats\">Unsupported formats</h3>\n<p>You can't export text to <code>.srt</code>, <code>.ttml</code>, <code>.vtt</code>, as well as you can't export media to <code>.html</code>.</p>\n","urlObject":{"path":["v1",":mediaType","export",":mediaId",":fileType"],"host":["{{url}}"],"query":[{"key":"isSpeakerNames","value":"true"},{"key":"isTimeStamps","value":"true"},{"description":{"content":"<p>Provide anything truthy. To indicate 'falsy' value omit this parameter or leave it empty.</p>\n","type":"text/plain"},"key":"isInsightVisualized","value":"true"},{"key":"isRedacted","value":"true"}],"variable":[{"description":{"content":"<p>Pass mediaType as <code>media</code> or <code>text</code></p>\n","type":"text/plain"},"type":"any","value":"media","key":"mediaType"},{"type":"any","value":"a59b93b67685","key":"mediaId"},{"description":{"content":"<p>pdf, txt, vtt, srt, docx, ttml, word, html, json, csv, csv-insights, csv-transcript</p>\n","type":"text/plain"},"type":"any","value":"csv","key":"fileType"}]}},"response":[{"id":"16d97c8b-0e90-46ae-b81a-6863da456aaf","name":"TXT","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/:mediaType/export/:mediaId/:fileType","host":["{{url}}"],"path":["v1",":mediaType","export",":mediaId",":fileType"],"variable":[{"key":"mediaType","value":"media","description":"Pass mediaType as `media` or `text`"},{"key":"mediaId","value":"b0b8de44cbb5"},{"key":"fileType","value":"txt","description":"pdf, txt, docx, srt, vtt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"c5434a9b-d9f2-488d-8644-3438b8c2b74e"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Disposition","value":"attachment; filename=\"b0b8de44cbb5.txt\""},{"key":"Accept-Ranges","value":"bytes"},{"key":"Cache-Control","value":"public, max-age=0"},{"key":"Last-Modified","value":"Mon, 14 Dec 2020 17:09:11 GMT"},{"key":"ETag","value":"W/\"3a2-176623a3988\""},{"key":"Content-Type","value":"text/plain; charset=UTF-8"},{"key":"Content-Length","value":"930"},{"key":"Date","value":"Mon, 14 Dec 2020 17:09:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"Speak Transcript - txt\nVideo Name: How To Find Your First Analyzed Video\nDate: Monday, December 14, 2020 12:09 PM\n\n0:00:00\r\nSpeaker #1\r\nHey there, in this video will show you how you can actually access the first \r\n\r\n\r\n0:00:03\r\nSpeaker #2\r\nvideo that you've uploaded. So right now we're in the sign in screen. All you have to do hit the sign in button. You're going to be redirected to the dashboard and you can sort of see some of the statistics and everything there, but what you're actually looking to do is hit the button where you can see the little video icon.\r\n\r\nYour list is actually going to appear, then all you have to do is then click on the actual item. The Insights Analytics, the transcripts, everything will merge your video, be pinned on the right, so that's how you find the first video that you uploaded and analyzed and hope you enjoy the insights, transcription and the analysis that you got back. Thank you. "},{"id":"151384cf-6046-406a-91ff-0d2c47c8e4a6","name":"SRT","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/:mediaType/export/:mediaId/:fileType","host":["{{url}}"],"path":["v1",":mediaType","export",":mediaId",":fileType"],"variable":[{"key":"mediaType","value":"media","description":"Pass mediaType as `media` or `text`"},{"key":"mediaId","value":"81c226f66705"},{"key":"fileType","value":"srt","description":"pdf, txt, docx, srt, vtt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"raw","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"afec3c19-265c-4cca-bedf-432bb3e3dcd2"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Disposition","value":"attachment; filename=\"81c226f66705.srt\""},{"key":"Accept-Ranges","value":"bytes"},{"key":"Cache-Control","value":"public, max-age=0"},{"key":"Last-Modified","value":"Tue, 15 Dec 2020 00:39:15 GMT"},{"key":"ETag","value":"W/\"3f4-17663d644e1\""},{"key":"Content-Type","value":"application/x-subrip"},{"key":"Content-Length","value":"1012"},{"key":"Date","value":"Tue, 15 Dec 2020 00:39:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"1\n00:00:00,000 --> 00:00:05,920\nUpdated\n\n2\n00:00:05,920 --> 00:00:08,440\nIs this speak AI? Yes it is.\n\n3\n00:00:08,440 --> 00:00:13,840\nYeah, I was looking at the company and\nnotice here that you develop software\nright?\n\n4\n00:00:13,840 --> 00:00:19,240\nYes, and I wanted to see if your\ncompany's ever applied for the irap\ngrants.\n\n5\n00:00:19,240 --> 00:00:22,480\nYes we have. We have a have a person\n\n6\n00:00:22,480 --> 00:00:25,360\nthat we've sponsored right now and then\nwe,\n\n7\n00:00:25,360 --> 00:00:28,240\nyou know, I wrap your kickoff projects\nhere.\n\n8\n00:00:28,240 --> 00:00:31,840\nSo we've got a representative Local 8\nkeeping Ramsey who's\n\n9\n00:00:31,840 --> 00:00:34,730\nhelping us out with the project right\nnow.\n\n10\n00:00:34,730 --> 00:00:38,010\nIn the R&D you're taking care of as\nwell.\n\n11\n00:00:38,010 --> 00:00:42,240\nYes, yeah, exactly OK, so scrolling to\nsee if I can help you,\n\n12\n00:00:42,240 --> 00:00:44,840\nbut you already OK and not in OK.\n\n13\n00:00:44,840 --> 00:00:47,000\nThank you bye.\n\n"},{"id":"94a27f7d-bb75-476e-aa20-723c8c8d22eb","name":"unsupported format. ","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/media/export/:mediaId/:fileType","host":["{{url}}"],"path":["v1","media","export",":mediaId",":fileType"],"variable":[{"key":"mediaId","value":"ccdf75fc55f4"},{"key":"fileType","value":"docx","description":"pdf, txt, docx, srt, vtt, html (text notes only)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"4cb08974-302e-4d24-9702-d523dab8fb9c"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"92"},{"key":"ETag","value":"W/\"5c-1BUAXDsHYn+yYuqT+7gEB9tRWaw\""},{"key":"Date","value":"Tue, 04 May 2021 16:44:36 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"message\": \"Can't export text object to .srt, try .docx or .pdf instead.\"\n}"},{"id":"0dc329d9-eadf-4bcb-a253-cc62bc83653f","name":"CSV","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/:mediaType/export/:mediaId/:fileType","host":["{{url}}"],"path":["v1",":mediaType","export",":mediaId",":fileType"],"variable":[{"key":"mediaType","value":"media","description":"Pass mediaType as `media` or `text`"},{"key":"mediaId","value":"875777809d88"},{"key":"fileType","value":"csv","description":"pdf, txt, docx, srt, vtt, csv, json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"e5dd70e4-897b-47a0-8d69-b837173e5243"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Date","value":"Mon, 09 Aug 2021 14:38:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"MediaId,Media Name,Tags,Duration,Created At,State,Remark,Summary,Overall sentiment,Sentence id,Speaker name,Sentence start time,Sentence end time,Sentence duration,Transcript,Sentiment,Insight category,Insight,Insight starts at,Insight ends at\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,labels,template,0,1.067,1.067\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,labels,display,0,2.134,2.134\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak ai,4,4.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak ai,0,1.5,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak ai,1,1.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,account,1.5,2,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,account,3,3.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak,4,4.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak,0,1.5,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak,1,1.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak,1,1.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak,0.5,1,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,1,1,0,5.85,5.85,Hi there  in this video I m going to show you how you can actually customize your account globally ,0,keywords,speak,1.5,2,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,2,1,5.85,8.92,3.0700000000000003,so that if you re sharing I frames are custom landing pages ,0.4215,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,3,1,8.92,11.71,2.790000000000001,whether audio or video  that the styles that you want ,0.0772,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,4,1,11.71,16.18,4.469999999999999,that the insights that you want to display are all sort of consistent across the platform.,0.0772,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,5,1,16.18,20.64,4.460000000000001,You do have the ability to go individually into each audio and video and overwrite that ,0.3182,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,6,1,20.64,27.34,6.699999999999999,but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.,0.8569,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,7,1,27.34,30.85,3.5100000000000016,So all I have to do is actually sign in.,0,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,8,1,30.85,32.69,1.8399999999999963,Mr button go up to the top.,0.2023,keywords,premium plan,31,31.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,8,1,30.85,32.69,1.8399999999999963,Mr button go up to the top.,0.2023,keywords,text note,31,31.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,8,1,30.85,32.69,1.8399999999999963,Mr button go up to the top.,0.2023,keywords,video,32,32.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,8,1,30.85,32.69,1.8399999999999963,Mr button go up to the top.,0.2023,keywords,speak,31.5,32,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,8,1,30.85,32.69,1.8399999999999963,Mr button go up to the top.,0.2023,keywords,speak,31,31.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,8,1,30.85,32.69,1.8399999999999963,Mr button go up to the top.,0.2023,topics,Bungie,31.5,32,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,8,1,30.85,32.69,1.8399999999999963,Mr button go up to the top.,0.2023,people,Martin O'Donnell,31.5,32,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,9,1,32.69,34.27,1.5800000000000054,You can see this drop down.,-0.3346,labels,electronics,33.067,34.134,1.0670000000000002\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,9,1,32.69,34.27,1.5800000000000054,You can see this drop down.,-0.3346,keywords,premium plan,33.5,34,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,9,1,32.69,34.27,1.5800000000000054,You can see this drop down.,-0.3346,keywords,account,33.5,34,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,profile overview,35,35.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,brand color,34.5,35,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,payment settings,35,37,2\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,text note,36,36.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,choose color,35,36,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,personal information,36,37,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,subscription settings,36,37,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,background image,35,36,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,speak ai,35.5,37,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,speak success,35.5,37,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,change password,36,37,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,background,34.5,35,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,background,35,36,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,account,35.5,36,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,customization,35.5,36,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,speak,35.5,37,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,speak,35.5,36,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,speak,35.5,37,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,speak,35.5,37,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,10,1,34.27,37.19,2.9199999999999946,I m going to go right into account optimization.,0.3818,keywords,speak,36,37,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,11,1,37.19,42.29,5.100000000000001,And what I can do is then see the areas that I m able to basically change ,0,keywords,background image,40,40.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,11,1,37.19,42.29,5.100000000000001,And what I can do is then see the areas that I m able to basically change ,0,keywords,background,40,40.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,12,1,42.29,44.85,2.5600000000000023,modify that  then will apply across the account.,0,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,13,1,44.85,48.04,3.1899999999999977,So for myself here I m just going to say it.,0,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,14,1,48.04,52.5,4.460000000000001,I don t actually want to display the labels and so that should be good ,0.3975,keywords,speak ai,50,50.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,14,1,48.04,52.5,4.460000000000001,I don t actually want to display the labels and so that should be good ,0.3975,keywords,speak,50,50.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,labels,software,56.533,58.667,2.1340000000000003\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,profile overview,56,56.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,choose color,55,56.5,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,account customization,56.5,57,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,account,56.5,57,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,account,55,60,5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,customization,56.5,57,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,speak,58,58.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,keywords,speak,55,55.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,15,1,52.5,61.13,8.630000000000003,so I can save. And I ve actually decided I don t want to use the red anymore.,0.5009,topics,Epistemology,60,60.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,16,1,61.13,65.19,4.059999999999995,And so I can go and actually pick the new hexadecimal I want.,0.0772,labels,software,62.933,64,1.0670000000000002\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,16,1,61.13,65.19,4.059999999999995,And so I can go and actually pick the new hexadecimal I want.,0.0772,keywords,speak,64,65,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,17,1,65.19,67.13,1.9399999999999977,Now I can hit save.,0.4939,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,keywords,video,67.5,68,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,keywords,speak,67.5,68,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,keywords,speak,67.5,68,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,topics,Companies,68.5,69,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,topics,SoftBank,68.5,69,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,brands,Adobe Premiere Pro,68.5,69,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,brands,Google Drive,68.5,69,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,brands,Google Drive,68.5,69,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,brands,Sprint Corporation,68.5,69,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,18,1,67.13,70.2,3.0700000000000074,And then I m actually going to go through and do the background image.,0,people,Marketing,67.5,69,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,19,1,70.2,71.61,1.4099999999999966,Now this is a bigger file ,0,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,20,1,71.61,74.41,2.799999999999997,so I m hoping it works and it did wonderful.,0.7769,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,21,1,74.41,76.77,2.3599999999999994,And Lastly  speak logo. It,0,brands,Adobe Creative Cloud,75.5,76,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,21,1,74.41,76.77,2.3599999999999994,And Lastly  speak logo. It,0,brands,Google Drive,75.5,76,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,21,1,74.41,76.77,2.3599999999999994,And Lastly  speak logo. It,0,brands,OneDrive,75.5,76,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,22,2,76.77,81.37,4.6000000000000085,should pop up. Beautiful  so now if I go out and,0.5994,labels,electronics,76.8,81.06700000000001,4.26700000000001\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,22,2,76.77,81.37,4.6000000000000085,should pop up. Beautiful  so now if I go out and,0.5994,labels,display,76.8,81.06700000000001,4.26700000000001\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,22,2,76.77,81.37,4.6000000000000085,should pop up. Beautiful  so now if I go out and,0.5994,keywords,speak,80,80.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,labels,electronics,82.133,84.267,2.1340000000000003\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,labels,display,82.133,84.267,2.1340000000000003\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,labels,line,84.267,86.4,2.1330000000000098\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,labels,parallel,84.267,86.4,2.1330000000000098\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,text note,84,85,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment analysis,84,85,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment analysis,85.5,86,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment analysis,86.5,87,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,analysis,84,85,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,analysis,85.5,86,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,analysis,86.5,87,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment,85.5,86,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment,84,85,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment,85.5,86,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment,86.5,87,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,sentiment,86,86.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,video,83.5,84,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,video,87,87.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,video,85.5,86,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,video,86,86.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,keywords,speak,83.5,84,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,23,1,81.37,87.83,6.459999999999994,I go back you can see that still there and now if there is a video that I haven t customized ,0,people,Peter Devlin,85.5,86,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,tyler shows,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,specific moment,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,greatest picture,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,add description,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,dont love,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,highlight engage,92,93,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,text note,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,brought analytics,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,sentiment analysis,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,video insight,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,video insight,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,speak ai,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,analysis,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,sentiment,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,video,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,video,89,89.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,video,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,video,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,speak,91.5,92,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,speak,92,93,1\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,keywords,speak,90.5,91,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,people,Theresa May,88,90.5,2.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,24,1,87.83,93.13,5.299999999999997,let s see if there is one that I haven t done yet.,0,locations,India,92,92.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,tyler shows,96.5,97,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,brand color,95,95.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,brought analytics,96,96.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,background image,95,95.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,analysis,95.5,96,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,sentiment,96.5,97,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,sentiment,95.5,96,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,background,95,95.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,video,96.5,97,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,video,95.5,96,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,speak,95.5,96,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,25,1,93.13,97.46000000000001,4.3300000000000125,There we go. Generate looks like there might have been some swearing in that one.,0.128,keywords,speak,95.5,96,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,labels,nature,101.333,102.4,1.0670000000000073\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,labels,moon,101.333,102.4,1.0670000000000073\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,highlight engage,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,text note,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,brought analytics,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,speak ai,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,analysis,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,sentiment,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,background,98.5,100,1.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,video,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,speak,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,speak,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,26,1,97.46000000000001,102.78,5.319999999999993,Apologize for anyone looking at that and what I can now see if I open in a new tab.,0.1027,keywords,speak,100,100.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,specific moment,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,highlight engage,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,sentiment analysis,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,sentiment analysis,103.5,104,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,sentiment analysis,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,video insight,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,video insight,103.5,104,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,speak ai,105.5,106,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,analysis,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,analysis,103.5,104,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,analysis,103.5,104,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,analysis,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,analysis,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,sentiment,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,sentiment,103.5,104,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,sentiment,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,video,105,105.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,video,103.5,104,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,27,1,102.78,106.25,3.469999999999999,We can see the custom branding s got the speak logo on the top.,0.2023,keywords,speak,105.5,106,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,28,1,106.25,107.85,1.5999999999999943,We ve got the beautiful image here.,0.5994,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,29,1,107.85,111.32,3.469999999999999,Everything is nice and green and now that is standardized across the account.,0.4215,keywords,video,108,108.5,0.5\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,30,1,111.32,116.93,5.610000000000014,Unless you overwrite it on the individual videos and so you can be confident you re sharing out media files that s branded.,0.7184,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,31,1,116.93,120.94,4.009999999999991,It looks like you it feels like you and it s it s beautiful to look at.,0.836,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,32,1,120.94,123.34,2.4000000000000057,It s beautiful to use an very easy and intuitive ,0.796,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,33,1,123.34,129.21,5.8700000000000045,so I hope that helps you set up your account for customization and look forward to seeing how you re customizing your account.,0.6983,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,34,1,129.21,130.82,1.6099999999999852,This is really exciting for us ,0.5413,undefined,undefined,undefined,undefined,NaN\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,35,1,130.82,136.278,5.457999999999998,so hope you enjoy this video and I ll be back in another tutorial video with you.,0.7688,labels,text,135.467,135.5,0.03299999999998704\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,35,1,130.82,136.278,5.457999999999998,so hope you enjoy this video and I ll be back in another tutorial video with you.,0.7688,labels,screenshot,135.467,135.5,0.03299999999998704\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,35,1,130.82,136.278,5.457999999999998,so hope you enjoy this video and I ll be back in another tutorial video with you.,0.7688,labels,template,135.467,135.5,0.03299999999998704\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,35,1,130.82,136.278,5.457999999999998,so hope you enjoy this video and I ll be back in another tutorial video with you.,0.7688,labels,electronics,135.467,135.5,0.03299999999998704\n875777809d88,How To Customize Your Account & Interactive Media Players Globally,speak,136,Tue Aug 18 2020 21:34:31 GMT-0400 (Eastern Daylight Time),processed,,Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\nI don't actually want to display the labels and so that should be good,  so I can save.\nAnd so I can go and actually pick the new hexadecimal I want.\nAnd then I'm actually going to go through and do the background image.\nWe can see the custom branding's got the speak logo on the top.,68.57142857142857,35,1,130.82,136.278,5.457999999999998,so hope you enjoy this video and I ll be back in another tutorial video with you.,0.7688,labels,display,135.467,135.5,0.03299999999998704\n"},{"id":"9395c366-af9e-45b8-a2d2-23be3d6c9616","name":"JSON","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/:mediaType/export/:mediaId/:fileType?isSpeakerNames=true&isTimeStamps=true&isInsightVisualized=true&isRedacted=true","host":["{{url}}"],"path":["v1",":mediaType","export",":mediaId",":fileType"],"query":[{"key":"isSpeakerNames","value":"true","type":"text"},{"key":"isTimeStamps","value":"true","type":"text"},{"key":"isInsightVisualized","value":"true","type":"text"},{"key":"isRedacted","value":"true","type":"text"}],"variable":[{"key":"mediaType","value":"media","description":"Pass mediaType as `media` or `text`"},{"key":"mediaId","value":"875777809d88"},{"key":"fileType","value":"json","description":"pdf, txt, docx, srt, vtt, csv, json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"6884dcff-5292-4b65-817c-38e52e0c2a29"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Date","value":"Mon, 09 Aug 2021 14:46:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\"mediaId\":\"875777809d88\",\"name\":\"How To Customize Your Account & Interactive Media Players Globally\",\"description\":\"Tyler shows you how to customize your account at the global level for audio and video.\",\"tags\":[\"speak\"],\"duration\":\"136\",\"createdAt\":\"2020-08-19T01:34:31.000Z\",\"state\":\"processed\",\"remark\":\"\",\"summary\":\"Hi there, in this video I'm going to show you how you can actually customize your account globally,  so that if you're sharing I frames are custom landing pages,  whether audio or video, that the styles that you want,  that the insights that you want to display are all sort of consistent across the platform.\\nYou do have the ability to go individually into each audio and video and overwrite that,  but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\\nI don't actually want to display the labels and so that should be good,  so I can save.\\nAnd so I can go and actually pick the new hexadecimal I want.\\nAnd then I'm actually going to go through and do the background image.\\nWe can see the custom branding's got the speak logo on the top.\",\"sentiment\":{\"document\":{\"Negative\":2.857142857142857,\"Neutral\":28.57142857142857,\"Positive\":68.57142857142857},\"sentences\":[{\"id\":1,\"instances\":[{\"adjustedEnd\":\"0:00:05.85\",\"adjustedStart\":\"0:00:00\",\"end\":\"0:00:05.85\",\"start\":\"0:00:00\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"Hi there, in this video I'm going to show you how you can actually customize your account globally,\"},{\"id\":2,\"instances\":[{\"adjustedEnd\":\"0:00:08.92\",\"adjustedStart\":\"0:00:05.85\",\"end\":\"0:00:08.92\",\"start\":\"0:00:05.85\"}],\"score\":{\"compound\":0.4215,\"neg\":0,\"neu\":0.781,\"pos\":0.219},\"text\":\"so that if you're sharing I frames are custom landing pages,\"},{\"id\":3,\"instances\":[{\"adjustedEnd\":\"0:00:11.71\",\"adjustedStart\":\"0:00:08.92\",\"end\":\"0:00:11.71\",\"start\":\"0:00:08.92\"}],\"score\":{\"compound\":0.0772,\"neg\":0,\"neu\":0.874,\"pos\":0.126},\"text\":\"whether audio or video, that the styles that you want,\"},{\"id\":4,\"instances\":[{\"adjustedEnd\":\"0:00:16.18\",\"adjustedStart\":\"0:00:11.71\",\"end\":\"0:00:16.18\",\"start\":\"0:00:11.71\"}],\"score\":{\"compound\":0.0772,\"neg\":0,\"neu\":0.92,\"pos\":0.08},\"text\":\"that the insights that you want to display are all sort of consistent across the platform.\"},{\"id\":5,\"instances\":[{\"adjustedEnd\":\"0:00:20.64\",\"adjustedStart\":\"0:00:16.18\",\"end\":\"0:00:20.64\",\"start\":\"0:00:16.18\"}],\"score\":{\"compound\":0.3182,\"neg\":0,\"neu\":0.867,\"pos\":0.133},\"text\":\"You do have the ability to go individually into each audio and video and overwrite that,\"},{\"id\":6,\"instances\":[{\"adjustedEnd\":\"0:00:27.34\",\"adjustedStart\":\"0:00:20.64\",\"end\":\"0:00:27.34\",\"start\":\"0:00:20.64\"}],\"score\":{\"compound\":0.8569,\"neg\":0,\"neu\":0.657,\"pos\":0.343},\"text\":\"but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across.\"},{\"id\":7,\"instances\":[{\"adjustedEnd\":\"0:00:30.85\",\"adjustedStart\":\"0:00:27.34\",\"end\":\"0:00:30.85\",\"start\":\"0:00:27.34\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"So all I have to do is actually sign in.\"},{\"id\":8,\"instances\":[{\"adjustedEnd\":\"0:00:32.69\",\"adjustedStart\":\"0:00:30.85\",\"end\":\"0:00:32.69\",\"start\":\"0:00:30.85\"}],\"score\":{\"compound\":0.2023,\"neg\":0,\"neu\":0.769,\"pos\":0.231},\"text\":\"Mr button go up to the top.\"},{\"id\":9,\"instances\":[{\"adjustedEnd\":\"0:00:34.27\",\"adjustedStart\":\"0:00:32.69\",\"end\":\"0:00:34.27\",\"start\":\"0:00:32.69\"}],\"score\":{\"compound\":-0.3346,\"neg\":0.322,\"neu\":0.678,\"pos\":0},\"text\":\"You can see this drop down.\"},{\"id\":10,\"instances\":[{\"adjustedEnd\":\"0:00:37.19\",\"adjustedStart\":\"0:00:34.27\",\"end\":\"0:00:37.19\",\"start\":\"0:00:34.27\"}],\"score\":{\"compound\":0.3818,\"neg\":0,\"neu\":0.729,\"pos\":0.271},\"text\":\"I'm going to go right into account optimization.\"},{\"id\":11,\"instances\":[{\"adjustedEnd\":\"0:00:42.29\",\"adjustedStart\":\"0:00:37.19\",\"end\":\"0:00:42.29\",\"start\":\"0:00:37.19\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"And what I can do is then see the areas that I'm able to basically change,\"},{\"id\":12,\"instances\":[{\"adjustedEnd\":\"0:00:44.85\",\"adjustedStart\":\"0:00:42.29\",\"end\":\"0:00:44.85\",\"start\":\"0:00:42.29\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"modify that, then will apply across the account.\"},{\"id\":13,\"instances\":[{\"adjustedEnd\":\"0:00:48.04\",\"adjustedStart\":\"0:00:44.85\",\"end\":\"0:00:48.04\",\"start\":\"0:00:44.85\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"So for myself here I'm just going to say it.\"},{\"id\":14,\"instances\":[{\"adjustedEnd\":\"0:00:52.5\",\"adjustedStart\":\"0:00:48.04\",\"end\":\"0:00:52.5\",\"start\":\"0:00:48.04\"}],\"score\":{\"compound\":0.3975,\"neg\":0.076,\"neu\":0.744,\"pos\":0.18},\"text\":\"I don't actually want to display the labels and so that should be good,\"},{\"id\":15,\"instances\":[{\"adjustedEnd\":\"0:01:01.13\",\"adjustedStart\":\"0:00:52.5\",\"end\":\"0:01:01.13\",\"start\":\"0:00:52.5\"}],\"score\":{\"compound\":0.5009,\"neg\":0.065,\"neu\":0.749,\"pos\":0.185},\"text\":\"so I can save. And I've actually decided I don't want to use the red anymore.\"},{\"id\":16,\"instances\":[{\"adjustedEnd\":\"0:01:05.19\",\"adjustedStart\":\"0:01:01.13\",\"end\":\"0:01:05.19\",\"start\":\"0:01:01.13\"}],\"score\":{\"compound\":0.0772,\"neg\":0,\"neu\":0.902,\"pos\":0.098},\"text\":\"And so I can go and actually pick the new hexadecimal I want.\"},{\"id\":17,\"instances\":[{\"adjustedEnd\":\"0:01:07.13\",\"adjustedStart\":\"0:01:05.19\",\"end\":\"0:01:07.13\",\"start\":\"0:01:05.19\"}],\"score\":{\"compound\":0.4939,\"neg\":0,\"neu\":0.556,\"pos\":0.444},\"text\":\"Now I can hit save.\"},{\"id\":18,\"instances\":[{\"adjustedEnd\":\"0:01:10.2\",\"adjustedStart\":\"0:01:07.13\",\"end\":\"0:01:10.2\",\"start\":\"0:01:07.13\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"And then I'm actually going to go through and do the background image.\"},{\"id\":19,\"instances\":[{\"adjustedEnd\":\"0:01:11.61\",\"adjustedStart\":\"0:01:10.2\",\"end\":\"0:01:11.61\",\"start\":\"0:01:10.2\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"Now this is a bigger file,\"},{\"id\":20,\"instances\":[{\"adjustedEnd\":\"0:01:14.41\",\"adjustedStart\":\"0:01:11.61\",\"end\":\"0:01:14.41\",\"start\":\"0:01:11.61\"}],\"score\":{\"compound\":0.7769,\"neg\":0,\"neu\":0.508,\"pos\":0.492},\"text\":\"so I'm hoping it works and it did wonderful.\"},{\"id\":21,\"instances\":[{\"adjustedEnd\":\"0:01:16.77\",\"adjustedStart\":\"0:01:14.41\",\"end\":\"0:01:16.77\",\"start\":\"0:01:14.41\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"And Lastly, speak logo. It\"},{\"id\":22,\"instances\":[{\"adjustedEnd\":\"0:01:21.37\",\"adjustedStart\":\"0:01:16.77\",\"end\":\"0:01:21.37\",\"start\":\"0:01:16.77\"}],\"score\":{\"compound\":0.5994,\"neg\":0,\"neu\":0.719,\"pos\":0.281},\"text\":\"should pop up. Beautiful, so now if I go out and\"},{\"id\":23,\"instances\":[{\"adjustedEnd\":\"0:01:27.83\",\"adjustedStart\":\"0:01:21.37\",\"end\":\"0:01:27.83\",\"start\":\"0:01:21.37\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"I go back you can see that still there and now if there is a video that I haven't customized,\"},{\"id\":24,\"instances\":[{\"adjustedEnd\":\"0:01:33.13\",\"adjustedStart\":\"0:01:27.83\",\"end\":\"0:01:33.13\",\"start\":\"0:01:27.83\"}],\"score\":{\"compound\":0,\"neg\":0,\"neu\":1,\"pos\":0},\"text\":\"let's see if there is one that I haven't done yet.\"},{\"id\":25,\"instances\":[{\"adjustedEnd\":\"0:01:37.46\",\"adjustedStart\":\"0:01:33.13\",\"end\":\"0:01:37.46\",\"start\":\"0:01:33.13\"}],\"score\":{\"compound\":0.128,\"neg\":0.114,\"neu\":0.743,\"pos\":0.143},\"text\":\"There we go. Generate looks like there might have been some swearing in that one.\"},{\"id\":26,\"instances\":[{\"adjustedEnd\":\"0:01:42.78\",\"adjustedStart\":\"0:01:37.46\",\"end\":\"0:01:42.78\",\"start\":\"0:01:37.46\"}],\"score\":{\"compound\":0.1027,\"neg\":0,\"neu\":0.928,\"pos\":0.072},\"text\":\"Apologize for anyone looking at that and what I can now see if I open in a new tab.\"},{\"id\":27,\"instances\":[{\"adjustedEnd\":\"0:01:46.25\",\"adjustedStart\":\"0:01:42.78\",\"end\":\"0:01:46.25\",\"start\":\"0:01:42.78\"}],\"score\":{\"compound\":0.2023,\"neg\":0,\"neu\":0.87,\"pos\":0.13},\"text\":\"We can see the custom branding's got the speak logo on the top.\"},{\"id\":28,\"instances\":[{\"adjustedEnd\":\"0:01:47.85\",\"adjustedStart\":\"0:01:46.25\",\"end\":\"0:01:47.85\",\"start\":\"0:01:46.25\"}],\"score\":{\"compound\":0.5994,\"neg\":0,\"neu\":0.562,\"pos\":0.438},\"text\":\"We've got the beautiful image here.\"},{\"id\":29,\"instances\":[{\"adjustedEnd\":\"0:01:51.32\",\"adjustedStart\":\"0:01:47.85\",\"end\":\"0:01:51.32\",\"start\":\"0:01:47.85\"}],\"score\":{\"compound\":0.4215,\"neg\":0,\"neu\":0.811,\"pos\":0.189},\"text\":\"Everything is nice and green and now that is standardized across the account.\"},{\"id\":30,\"instances\":[{\"adjustedEnd\":\"0:01:56.93\",\"adjustedStart\":\"0:01:51.32\",\"end\":\"0:01:56.93\",\"start\":\"0:01:51.32\"}],\"score\":{\"compound\":0.7184,\"neg\":0,\"neu\":0.76,\"pos\":0.24},\"text\":\"Unless you overwrite it on the individual videos and so you can be confident you're sharing out media files that's branded.\"},{\"id\":31,\"instances\":[{\"adjustedEnd\":\"0:02:00.94\",\"adjustedStart\":\"0:01:56.93\",\"end\":\"0:02:00.94\",\"start\":\"0:01:56.93\"}],\"score\":{\"compound\":0.836,\"neg\":0,\"neu\":0.574,\"pos\":0.426},\"text\":\"It looks like you it feels like you and it's it's beautiful to look at.\"},{\"id\":32,\"instances\":[{\"adjustedEnd\":\"0:02:03.34\",\"adjustedStart\":\"0:02:00.94\",\"end\":\"0:02:03.34\",\"start\":\"0:02:00.94\"}],\"score\":{\"compound\":0.796,\"neg\":0,\"neu\":0.497,\"pos\":0.503},\"text\":\"It's beautiful to use an very easy and intuitive,\"},{\"id\":33,\"instances\":[{\"adjustedEnd\":\"0:02:09.21\",\"adjustedStart\":\"0:02:03.34\",\"end\":\"0:02:09.21\",\"start\":\"0:02:03.34\"}],\"score\":{\"compound\":0.6983,\"neg\":0,\"neu\":0.776,\"pos\":0.224},\"text\":\"so I hope that helps you set up your account for customization and look forward to seeing how you're customizing your account.\"},{\"id\":34,\"instances\":[{\"adjustedEnd\":\"0:02:10.82\",\"adjustedStart\":\"0:02:09.21\",\"end\":\"0:02:10.82\",\"start\":\"0:02:09.21\"}],\"score\":{\"compound\":0.5413,\"neg\":0,\"neu\":0.589,\"pos\":0.411},\"text\":\"This is really exciting for us,\"},{\"id\":35,\"instances\":[{\"adjustedEnd\":\"0:02:16.278\",\"adjustedStart\":\"0:02:10.82\",\"end\":\"0:02:16.278\",\"start\":\"0:02:10.82\"}],\"score\":{\"compound\":0.7688,\"neg\":0,\"neu\":0.678,\"pos\":0.322},\"text\":\"so hope you enjoy this video and I'll be back in another tutorial video with you.\"}]},\"transcript\":[{\"speakerId\":1,\"text\":\"Hi there, in this video I'm going to show you how you can actually customize your account globally, so that if you're sharing I frames are custom landing pages, whether audio or video, that the styles that you want, that the insights that you want to display are all sort of consistent across the platform. You do have the ability to go individually into each audio and video and overwrite that, but this is really good option if you want to create a lot of video and audio assets quickly and then standardize them across. So all I have to do is actually sign in. Mr button go up to the top. You can see this drop down. \",\"start\":\"0:00:00\",\"link\":\"https://app.speakai.co/video/insight/875777809d88?insight=transcript&timeStart=0:00:00\"},{\"speakerId\":1,\"text\":\"You can see this drop down. I'm going to go right into account optimization. And what I can do is then see the areas that I'm able to basically change, modify that, then will apply across the account. So for myself here I'm just going to say it. I don't actually want to display the labels and so that should be good, so I can save. And I've actually decided I don't want to use the red anymore. \",\"start\":\"0:00:32.69\",\"link\":\"https://app.speakai.co/video/insight/875777809d88?insight=transcript&timeStart=0:00:32.69\"},{\"speakerId\":1,\"text\":\"so I can save. And I've actually decided I don't want to use the red anymore. And so I can go and actually pick the new hexadecimal I want. Now I can hit save. And then I'm actually going to go through and do the background image. Now this is a bigger file, so I'm hoping it works and it did wonderful. And Lastly, speak logo. It \",\"start\":\"0:00:52.5\",\"link\":\"https://app.speakai.co/video/insight/875777809d88?insight=transcript&timeStart=0:00:52.5\"},{\"speakerId\":2,\"text\":\"should pop up. Beautiful, so now if I go out and \",\"start\":\"0:01:16.77\",\"link\":\"https://app.speakai.co/video/insight/875777809d88?insight=transcript&timeStart=0:01:16.77\"},{\"speakerId\":1,\"text\":\"I go back you can see that still there and now if there is a video that I haven't customized, let's see if there is one that I haven't done yet. There we go. Generate looks like there might have been some swearing in that one. Apologize for anyone looking at that and what I can now see if I open in a new tab. We can see the custom branding's got the speak logo on the top. \",\"start\":\"0:01:21.37\",\"link\":\"https://app.speakai.co/video/insight/875777809d88?insight=transcript&timeStart=0:01:21.37\"},{\"speakerId\":1,\"text\":\"We can see the custom branding's got the speak logo on the top. We've got the beautiful image here. Everything is nice and green and now that is standardized across the account. Unless you overwrite it on the individual videos and so you can be confident you're sharing out media files that's branded. It looks like you it feels like you and it's it's beautiful to look at. It's beautiful to use an very easy and intuitive, so I hope that helps you set up your account for customization and look forward to seeing how you're customizing your account. \",\"start\":\"0:01:42.78\",\"link\":\"https://app.speakai.co/video/insight/875777809d88?insight=transcript&timeStart=0:01:42.78\"},{\"speakerId\":1,\"text\":\"so I hope that helps you set up your account for customization and look forward to seeing how you're customizing your account. This is really exciting for us, so hope you enjoy this video and I'll be back in another tutorial video with you. \",\"start\":\"0:02:03.34\",\"link\":\"https://app.speakai.co/video/insight/875777809d88?insight=transcript&timeStart=0:02:03.34\"}]}"}],"_postman_id":"fcdaa5ed-cd17-48ba-98c7-2a7af4e13ce6"},{"name":"Multi-export","id":"9000d611-67d1-4259-b0db-a2cf2900b39c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mediaIds\": [\"a59b93b67685\", \"dsd33b676asd\"],\n    \"isSpeakerNames\": true,\n    \"isTimeStamps\": true,\n    \"isInsightVisualized\": true,\n    \"isRedacted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/media/exportMultiple/:exportType?mediaIds=de35dabda9a5&isSpeakerNames=1&isTimeStamps=1&isInsightVisualized=1&isRedacted=1","description":"<p>You can export multiple media at once. We're going to zip the documents and send it to you as an <code>arraybuffer</code>. </p>\n","auth":{"type":"apikey","apikey":{"key":"<key>"},"isInherited":true,"source":{"_postman_id":"49a92f79-6d6e-48d4-ae98-1a1ece719c41","id":"49a92f79-6d6e-48d4-ae98-1a1ece719c41","name":"Exports","type":"folder"}},"urlObject":{"path":["v1","media","exportMultiple",":exportType"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Comma-separated array of mediaIds</p>\n","type":"text/plain"},"key":"mediaIds","value":"de35dabda9a5"},{"key":"isSpeakerNames","value":"1"},{"key":"isTimeStamps","value":"1"},{"key":"isInsightVisualized","value":"1"},{"key":"isRedacted","value":"1"}],"variable":[{"description":{"content":"<p>pdf, txt, vtt, srt, docx, ttml, word, html, json, csv, csv-insights, csv-transcript</p>\n","type":"text/plain"},"type":"any","value":"csv","key":"exportType"}]}},"response":[{"id":"5456fc34-5ad1-4d45-a461-c6389ee72286","name":"Multi-export","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mediaIds\": [\"a59b93b67685\", \"dsd33b676asd\"],\n    \"isSpeakerNames\": true,\n    \"isTimeStamps\": true,\n    \"isInsightVisualized\": true,\n    \"isRedacted\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/media/exportMultiple/:exportType?mediaIds=de35dabda9a5&isSpeakerNames=1&isTimeStamps=1&isInsightVisualized=1&isRedacted=1","host":["{{url}}"],"path":["v1","media","exportMultiple",":exportType"],"query":[{"key":"mediaIds","value":"de35dabda9a5","description":"Comma-separated array of mediaIds"},{"key":"isSpeakerNames","value":"1"},{"key":"isTimeStamps","value":"1"},{"key":"isInsightVisualized","value":"1"},{"key":"isRedacted","value":"1"}],"variable":[{"key":"exportType","value":"csv","description":"pdf, txt, vtt, srt, docx, ttml, word, html, json, csv, csv-insights, csv-transcript"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9000d611-67d1-4259-b0db-a2cf2900b39c"}],"id":"49a92f79-6d6e-48d4-ae98-1a1ece719c41","description":"<p>Export collection enables export of media (audio, video + text) details: transcript, analytics and insights.</p>\n","auth":{"type":"apikey","apikey":{"key":"<key>"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"56628c3a-a9d5-46d0-8f49-5c1b52d4e83e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1b71ef75-58a3-4078-82b1-1563f777ad89","type":"text/javascript","exec":[""]}}],"_postman_id":"49a92f79-6d6e-48d4-ae98-1a1ece719c41"},{"name":"Folder","item":[{"name":"Folder Views","item":[{"name":"Get All Views","id":"0128549f-4908-442d-a8f2-a2ff77a6fba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x_speakai_key}}","type":"text"},{"key":"x-access-token","value":"{{x_access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"http://petstore.swagger.io/v1/api/v1/folders/views","description":"<p>Get all views across all folders for the company. Used to populate dropdown for cloning views.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","folders","views"],"host":["http://petstore.swagger.io/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0128549f-4908-442d-a8f2-a2ff77a6fba2"},{"name":"Get Views by Folder ID","id":"3db4698c-5c8f-42b5-b958-25cef8aa04ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x_speakai_key}}","type":"text"},{"key":"x-access-token","value":"{{x_access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"http://petstore.swagger.io/v1/api/v1/folders/{{folderId}}/views","description":"<p>Get all views for a specific folder</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","folders","{{folderId}}","views"],"host":["http://petstore.swagger.io/v1"],"query":[],"variable":[{"id":"73562862-412d-4c8e-bf62-0b7f9c781f0a","description":{"content":"<p>The ID of the folder to get views for</p>\n","type":"text/plain"},"type":"any","value":"your_folder_id_here","key":"folderId"}]}},"response":[],"_postman_id":"3db4698c-5c8f-42b5-b958-25cef8aa04ff"},{"name":"Create View","id":"258edc49-9320-4e49-b08a-a127b315fdba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x_speakai_key}}","type":"text"},{"key":"x-access-token","value":"{{x_access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"My Custom View\",\n  \"isDefault\": false,\n  \"columns\": [\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Name\",\n      \"type\": \"name\",\n      \"definition\": \"\",\n      \"order\": 0\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Duration\",\n      \"type\": \"duration\",\n      \"definition\": \"duration\",\n      \"order\": 1\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Tags\",\n      \"type\": \"tags\",\n      \"definition\": \"tags\",\n      \"order\": 2\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Sentiment\",\n      \"type\": \"sentiment\",\n      \"definition\": \"sentiment\",\n      \"order\": 3\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Created At\",\n      \"type\": \"datetime\",\n      \"definition\": \"createdAt\",\n      \"order\": 4\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"http://petstore.swagger.io/v1/api/v1/folders/{{folderId}}/views","description":"<p>Create a new view for a specific folder. Column types can be:</p>\n<p><strong>FieldType values:</strong></p>\n<ul>\n<li>text</li>\n<li>url</li>\n<li>boolean</li>\n<li>date</li>\n<li>datetime</li>\n<li>number</li>\n<li>currency</li>\n</ul>\n<p><strong>DefaultViewColumn values:</strong></p>\n<ul>\n<li>name</li>\n<li>duration</li>\n<li>tags</li>\n<li>sentiment</li>\n<li>datetime</li>\n<li>createdAt</li>\n<li>updatedAt</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","folders","{{folderId}}","views"],"host":["http://petstore.swagger.io/v1"],"query":[],"variable":[{"id":"2a14392e-4fb5-49f0-a376-744f8295c97e","description":{"content":"<p>The ID of the folder to create view for</p>\n","type":"text/plain"},"type":"any","value":"your_folder_id_here","key":"folderId"}]}},"response":[],"_postman_id":"258edc49-9320-4e49-b08a-a127b315fdba"},{"name":"Update View","id":"497fdb0f-1d5c-4481-bd99-86933b3ac1b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x_speakai_key}}","type":"text"},{"key":"x-access-token","value":"{{x_access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Updated View Name\",\n  \"isDefault\": true,\n  \"columns\": [\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Name\",\n      \"type\": \"name\",\n      \"definition\": \"\",\n      \"order\": 0\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Duration\",\n      \"type\": \"duration\",\n      \"definition\": \"duration\",\n      \"order\": 1\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Tags\",\n      \"type\": \"tags\",\n      \"definition\": \"tags\",\n      \"order\": 2\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Sentiment\",\n      \"type\": \"sentiment\",\n      \"definition\": \"sentiment\",\n      \"order\": 3\n    },\n    {\n      \"fieldId\": \"\",\n      \"name\": \"Created At\",\n      \"type\": \"datetime\",\n      \"definition\": \"createdAt\",\n      \"order\": 4\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"http://petstore.swagger.io/v1/api/v1/folders/{{folderId}}/views/{{viewId}}","description":"<p>Update an existing view. Note: isDefault is required in update operation.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","folders","{{folderId}}","views","{{viewId}}"],"host":["http://petstore.swagger.io/v1"],"query":[],"variable":[{"description":{"content":"<p>The ID of the folder</p>\n","type":"text/plain"},"type":"any","value":"your_folder_id_here","key":"folderId"},{"description":{"content":"<p>The ID of the view to update</p>\n","type":"text/plain"},"type":"any","value":"your_view_id_here","key":"viewId"}]}},"response":[],"_postman_id":"497fdb0f-1d5c-4481-bd99-86933b3ac1b4"},{"name":"Delete View","id":"36f3f3a0-0ceb-444b-8f54-520ab04532d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x_speakai_key}}","type":"text"},{"key":"x-access-token","value":"{{x_access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"http://petstore.swagger.io/v1/api/v1/folders/{{folderId}}/views/{{viewId}}","description":"<p>Delete a view (soft delete - sets isActive to false)</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","folders","{{folderId}}","views","{{viewId}}"],"host":["http://petstore.swagger.io/v1"],"query":[],"variable":[{"description":{"content":"<p>The ID of the folder</p>\n","type":"text/plain"},"type":"any","value":"your_folder_id_here","key":"folderId"},{"description":{"content":"<p>The ID of the view to delete</p>\n","type":"text/plain"},"type":"any","value":"your_view_id_here","key":"viewId"}]}},"response":[],"_postman_id":"36f3f3a0-0ceb-444b-8f54-520ab04532d6"},{"name":"Clone View","id":"d3526969-7846-408f-b34a-8e018a8cdc2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x_speakai_key}}","type":"text"},{"key":"x-access-token","value":"{{x_access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"sourceFolderId\": \"source_folder_id_here\",\n  \"targetFolderId\": \"target_folder_id_here\",\n  \"viewId\": \"view_id_to_clone_here\",\n  \"name\": \"Cloned View Name\",\n  \"isDefault\": false\n}","options":{"raw":{"language":"json"}}},"url":"http://petstore.swagger.io/v1/api/v1/folders/views/clone","description":"<p>Clone a view from source folder to target folder. Use 'Get All Views' to get available view IDs for cloning.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","folders","views","clone"],"host":["http://petstore.swagger.io/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3526969-7846-408f-b34a-8e018a8cdc2f"}],"id":"0f9ed63c-c291-4641-b5b5-d07972cab419","description":"<p>Collection for managing folder views in Speak application. This collection contains all CRUD operations for folder views including creating, reading, updating, deleting, and cloning views across different folders. </p>\n","_postman_id":"0f9ed63c-c291-4641-b5b5-d07972cab419","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Get folders","id":"718b2911-1f76-40c8-8c21-8782ce357871","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"url":"{{url}}/v1/folder?page=0&pageSize=5&sortBy=createdAt","description":"<h2 id=\"get-folders\">Get Folders</h2>\n<p>This endpoint retrieves a list of folders based on pagination and sorting criteria.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><p><strong>page</strong> (integer, required): The page number to retrieve. This parameter is used for pagination.</p>\n</li>\n<li><p><strong>pageSize</strong> (integer, required): The number of folders to return per page. This parameter controls the size of the result set.</p>\n</li>\n<li><p><strong>sortBy</strong> (string, required): The field by which to sort the folders. In this case, it is sorted by <code>createdAt</code>.</p>\n</li>\n</ul>\n<h3 id=\"response-format\">Response Format</h3>\n<p>The response will contain the following structure:</p>\n<ul>\n<li><p><strong>status</strong> (string): The status of the request.</p>\n</li>\n<li><p><strong>data</strong> (object): Contains the details of the folders retrieved.</p>\n<ul>\n<li><p><strong>totalCount</strong> (integer): The total number of folders available.</p>\n</li>\n<li><p><strong>pages</strong> (integer or null): The total number of pages available based on the pagination.</p>\n</li>\n<li><p><strong>folders</strong> (array): An array of folder objects, each containing:</p>\n<ul>\n<li><p><strong>_id</strong> (string): The unique identifier for the folder.</p>\n</li>\n<li><p><strong>defaultAssignTo</strong> (string): The default user assigned to the folder.</p>\n</li>\n<li><p><strong>showOrder</strong> (integer): The order in which the folder should be displayed.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the folder.</p>\n</li>\n<li><p><strong>folderId</strong> (string): The identifier for the folder.</p>\n</li>\n<li><p><strong>createdAt</strong> (string): The creation date of the folder.</p>\n</li>\n<li><p><strong>updatedAt</strong> (string): The last updated date of the folder.</p>\n</li>\n<li><p><strong>user</strong> (object): An object representing the user associated with the folder.</p>\n<ul>\n<li><p><strong>_id</strong> (string): The unique identifier for the user.</p>\n</li>\n<li><p><strong>firstName</strong> (string): The first name of the user.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the user.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>userId</strong> (string): The identifier for the user associated with the folder.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>page</code> and <code>pageSize</code> parameters are set correctly to retrieve the desired set of folders.</p>\n</li>\n<li><p>The response may return an empty array if no folders are available for the specified page and size.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","folder"],"host":["{{url}}"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"5"},{"key":"sortBy","value":"createdAt"},{"disabled":true,"description":{"content":"<p>You can pass in the dateFormat</p>\n","type":"text/plain"},"key":"from","value":""},{"disabled":true,"description":{"content":"<p>You can pass in the dateFormat</p>\n","type":"text/plain"},"key":"to","value":""}],"variable":[]}},"response":[{"id":"a8857d2f-0769-45f6-aef3-4a6d5d55bf49","name":"Get folders","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"url":{"raw":"{{url}}/v1/folder?page&pageSize&sortBy&from&to","host":["{{url}}"],"path":["v1","folder"],"query":[{"key":"page","value":null},{"key":"pageSize","value":null},{"key":"sortBy","value":null},{"key":"from","value":null},{"key":"to","value":null,"type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"6acdebe4-b96f-47b7-9e03-6df3ba4d95f4"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent, x-app-origin"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"42223"},{"key":"ETag","value":"W/\"a4ef-dT2yUwu6PNQ7HXitdWGUz5XsLno\""},{"key":"Date","value":"Thu, 13 Feb 2025 16:25:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"totalCount\": 93,\n        \"pages\": null,\n        \"folders\": [\n            {\n                \"_id\": \"61e3d27bxxxx5041a7\",\n                \"defaultAssignTo\": \"\",\n                \"showOrder\": 1,\n                \"name\": \"AudioAudioAudioAudioAudioAudioAudioAudioAu\",\n                \"folderId\": \"905c208f1c07\",\n                \"createdAt\": \"2022-01-16T08:08:27.821Z\",\n                \"updatedAt\": \"2025-01-06T15:05:38.939Z\",\n                \"user\": {\n                    \"_id\": \"5d03a9d5xxxx8cf89\",\n                    \"firstName\": \"Vatsal\",\n                    \"lastName\": \"Shah\",\n                },\n                \"userId\": \"5d03a9d5dxxxxc8cf89\"\n            }\n        ]\n    }\n}"}],"_postman_id":"718b2911-1f76-40c8-8c21-8782ce357871"},{"name":"Get folders info","id":"f8daf40d-c996-46ca-8767-ec49e68bf0a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"url":"{{url}}/v1/folder/:folderId","description":"<h2 id=\"get-folder-details\">Get Folder Details</h2>\n<p>This endpoint retrieves the details of a specific folder identified by its unique <code>folderId</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><code>folderId</code> (path parameter): The unique identifier of the folder you want to retrieve. This should be a valid ID corresponding to an existing folder in the system.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><code>status</code>: A string indicating the status of the request.</p>\n</li>\n<li><p><code>data</code>: An object containing detailed information about the folder:</p>\n<ul>\n<li><p><code>_id</code>: The unique identifier of the folder.</p>\n</li>\n<li><p><code>companyId</code>: The ID of the company associated with the folder.</p>\n</li>\n<li><p><code>userId</code>: The ID of the user who owns the folder.</p>\n</li>\n<li><p><code>folderType</code>: The type of folder.</p>\n</li>\n<li><p><code>name</code>: The name of the folder.</p>\n</li>\n<li><p><code>description</code>: A brief description of the folder.</p>\n</li>\n<li><p><code>defaultAssignTo</code>: The default user assigned to the folder (can be null).</p>\n</li>\n<li><p><code>showOrder</code>: An integer indicating the order in which the folder is displayed.</p>\n</li>\n<li><p><code>userShowOrder</code>: An object mapping user IDs to their specific display order for the folder.</p>\n</li>\n<li><p><code>isDeleted</code>: A boolean indicating whether the folder has been deleted.</p>\n</li>\n<li><p><code>folderId</code>: The ID of the folder.</p>\n</li>\n<li><p><code>createdAt</code>: The timestamp when the folder was created.</p>\n</li>\n<li><p><code>updatedAt</code>: The timestamp when the folder was last updated.</p>\n</li>\n<li><p><code>__v</code>: The version key for the document.</p>\n</li>\n<li><p><code>source</code>: An object containing:</p>\n<ul>\n<li><p><code>type</code>: The type of source associated with the folder.</p>\n</li>\n<li><p><code>subCategory</code>: The subcategory of the source.</p>\n</li>\n</ul>\n</li>\n<li><p><code>shared</code>: An array containing information about users or entities with whom the folder is shared.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>folderId</code> provided in the request is valid, as an invalid ID will result in an error response.</p>\n</li>\n<li><p>The <code>isDeleted</code> field in the response indicates whether the folder is currently active or has been marked for deletion.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","folder",":folderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"e88575b384b6","key":"folderId"}]}},"response":[{"id":"35fee1e9-89eb-430c-9408-b998d4d925d1","name":"Get folders info","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"url":{"raw":"{{url}}/v1/folder/:folderId","host":["{{url}}"],"path":["v1","folder",":folderId"],"variable":[{"key":"folderId","value":"e88575b384b6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"e0007096-3d7f-45dd-800b-d275bd5a0db9"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent, x-app-origin"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"464"},{"key":"ETag","value":"W/\"1d0-XUNmoeNNiGeFOyVIX6EFFhB6R7Y\""},{"key":"Date","value":"Thu, 13 Feb 2025 16:25:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"_id\": \"6776f1459df32xxx30f8\",\n        \"companyId\": \"5e21c8ddxxxxxx2c64214816\",\n        \"userId\": \"5d03a9d5d4xxxxxc8cf89\",\n        \"folderType\": \"sub\",\n        \"name\": \"v35\",\n        \"description\": \"\",\n        \"defaultAssignTo\": null,\n        \"showOrder\": 2,\n        \"userShowOrder\": {\n            \"5d03a9d5d4bca272e9c8cf89\": 2\n        },\n        \"isDeleted\": false,\n        \"folderId\": \"e8857xxx4b6\",\n        \"createdAt\": \"2025-01-02T20:04:21.511Z\",\n        \"updatedAt\": \"2025-01-06T15:05:38.939Z\",\n        \"__v\": 0,\n        \"source\": {\n            \"type\": \"content\",\n            \"subCategory\": \"podcast\"\n        },\n        \"shared\": []\n    }\n}"}],"_postman_id":"f8daf40d-c996-46ca-8767-ec49e68bf0a4"},{"name":"Create folder","event":[{"listen":"test","script":{"id":"8c94f427-cd2b-4097-aaa3-89e6917e103a","exec":["pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","pm.test(\"Response has the required fields - status, data\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('data');","});","","","pm.test(\"FolderId is a non-empty string\", function () {","  const responseData = pm.response.json();","  ","  pm.expect(responseData).to.be.an('object');","  pm.expect(responseData.data.folderId).to.be.a('string').and.to.have.lengthOf.at.least(1, \"FolderId should not be empty\");","});","","","pm.test(\"Message is a non-empty string\", function () {","  const responseData = pm.response.json();","","  pm.expect(responseData.data.message).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Message should not be empty\");","});","","","pm.test(\"Verify the presence of specific headers in the response\", function () {","    pm.expect(pm.response.to.have.header(\"Content-Type\"));","    pm.expect(pm.response.to.have.header(\"Date\"));","    pm.expect(pm.response.to.have.header(\"Server\"));","});",""],"type":"text/javascript","packages":{}}}],"id":"4022c583-e3ef-4615-b181-083c6ccc1272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Folder name 2\"\r\n    // \"defaultAssignTo\": \"Group 1\" \r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/folder","description":"<h3 id=\"create-a-new-folder\">Create a New Folder</h3>\n<p>This endpoint allows you to create a new folder by sending an HTTP POST request to the specified URL.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><strong>name</strong> (string, required): The name of the folder to be created.</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Folder name 2\"\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p><strong>status</strong> (string): The status of the request.</p>\n</li>\n<li><p><strong>data</strong></p>\n<ul>\n<li><p><strong>folderId</strong> (string): The ID of the newly created folder.</p>\n</li>\n<li><p><strong>message</strong> (string): A message related to the folder creation.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"data\": {\n    \"folderId\": \"\",\n    \"message\": \"\"\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","folder"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"809aa114-2bb7-4b76-94c3-07540772c5b2","name":"Create folder","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Folder name 2\"\r\n    // \"defaultAssignTo\": \"Group 1\" \r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/folder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"74305ed4-a039-4a95-94ee-757a06c6aa27"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent, x-app-origin"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"109"},{"key":"ETag","value":"W/\"6d-3UwedqDNdnnAxnFYQm9zVlfCDHU\""},{"key":"Date","value":"Thu, 13 Feb 2025 16:23:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"folderId\": \"0648e533f72c\",\n        \"message\": \"Folder name 2 folder created successfully\"\n    }\n}"}],"_postman_id":"4022c583-e3ef-4615-b181-083c6ccc1272"},{"name":"Clone Folder","id":"f6e268b4-576a-4c1f-a32a-e58d1bd8f79a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"folderId\": \"905c208f1c07\",\r\n    // Optionals\r\n    \"name\": \"New Folder Name\",\r\n    \"description\": \"New Folder description\",\r\n    \"defaultAssignTo\": \"\",\r\n    \"isSaveDefaultView\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/folder/clone","description":"<h3 id=\"clone-folder\">Clone Folder</h3>\n<p>This endpoint allows the user to clone a folder by making an HTTP POST request to the specified URL.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>folderId</code> (string) - The ID of the folder to be cloned.</p>\n</li>\n<li><p><code>name</code> (string) - The name of the new folder.</p>\n</li>\n<li><p><code>description</code> (string) - The description of the new folder.</p>\n</li>\n<li><p><code>defaultAssignTo</code> (string) - The default assignee for the new folder.</p>\n</li>\n<li><p><code>isSaveDefaultView</code> (boolean) - Indicates whether the default view should be saved.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response of this request is a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"object\",\n    \"properties\": {\n        \"status\": {\n            \"type\": \"string\"\n        },\n        \"data\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"folderId\": {\n                    \"type\": \"string\"\n                },\n                \"message\": {\n                    \"type\": \"string\"\n                }\n            }\n        }\n    }\n}\n\n</code></pre>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": \"\",\n    \"data\": {\n        \"folderId\": \"\",\n        \"message\": \"\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","folder","clone"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d60fb9c1-f76f-477c-98ac-046aa2a37ce1","name":"Create folder","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Folder name 2\"\r\n    // \"defaultAssignTo\": \"Group 1\" \r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/folder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"74305ed4-a039-4a95-94ee-757a06c6aa27"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent, x-app-origin"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"109"},{"key":"ETag","value":"W/\"6d-3UwedqDNdnnAxnFYQm9zVlfCDHU\""},{"key":"Date","value":"Thu, 13 Feb 2025 16:23:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"folderId\": \"0648e533f72c\",\n        \"message\": \"Folder name 2 folder created successfully\"\n    }\n}"}],"_postman_id":"f6e268b4-576a-4c1f-a32a-e58d1bd8f79a"},{"name":"Update folder","id":"c69a7f0e-1a72-4b5a-b56f-014a6b285113","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Folder name 2 Updated\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/folder/:folderId","description":"<h2 id=\"update-folder\">Update Folder</h2>\n<p>This endpoint allows you to update the details of a specific folder identified by its <code>folderId</code>. </p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><strong>Method</strong>: <code>PUT</code></li>\n<li><strong>Endpoint</strong>: <code>{{url}}/v1/folder/:folderId</code></li>\n<li><strong>Path Parameter</strong>:<ul>\n<li><code>folderId</code> (string): The unique identifier of the folder you wish to update.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be in JSON format and must include the following parameter:</p>\n<ul>\n<li><code>name</code> (string): The new name for the folder.</li>\n</ul>\n<p><strong>Example Request Body</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Folder name 2 Updated\"\n}\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful update, the response will be in JSON format and will include the following fields:</p>\n<ul>\n<li><code>status</code> (string): The status of the request.</li>\n<li><code>data</code> (object): Contains additional information about the update.<ul>\n<li><code>folderId</code> (string): The ID of the updated folder.</li>\n<li><code>message</code> (string): A message indicating the result of the update.</li>\n<li><code>fields</code> (array): An array that may contain any relevant fields related to the update.</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"data\": {\n    \"folderId\": \"\",\n    \"message\": \"\",\n    \"fields\": []\n  }\n}\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<p>Ensure that the <code>folderId</code> in the URL is valid and that you have the necessary permissions to update the folder.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","folder",":folderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"0648e533f72c","key":"folderId"}]}},"response":[{"id":"59518cc0-2cbe-4518-98ba-29fcfec0ac22","name":"Update folder","originalRequest":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Folder name 2 Updated\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/folder/:folderId","host":["{{url}}"],"path":["v1","folder",":folderId"],"variable":[{"key":"folderId","value":"0648e533f72c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"cb8a1e26-470e-46ae-b4b2-f3e4166d7b08"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent, x-app-origin"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"129"},{"key":"ETag","value":"W/\"81-aZoQ9Rh+xEa799FmM/5kdL6z3Aw\""},{"key":"Date","value":"Thu, 13 Feb 2025 16:24:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"folderId\": \"0648e533f72c\",\n        \"message\": \"Folder name 2 Updated folder updated successfully\",\n        \"fields\": []\n    }\n}"}],"_postman_id":"c69a7f0e-1a72-4b5a-b56f-014a6b285113"},{"name":"Delete folder","id":"837cd417-49be-4af0-9249-bfc417ae1a40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"url":"{{url}}/v1/folder/:folderId","description":"<h3 id=\"delete-v1folderfolderid\">DELETE /v1/folder/:folderId</h3>\n<p>This endpoint is used to delete a specific folder identified by the <code>folderId</code>. The deletion operation will remove the folder and all its contents from the system.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><code>folderId</code> (path parameter): The unique identifier of the folder that you wish to delete. This parameter is required.</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>Upon successful deletion, the response will return a JSON object with the following structure:</p>\n<ul>\n<li><p><code>status</code>: A string indicating the status of the operation (e.g., success or failure).</p>\n</li>\n<li><p><code>message</code>: A string providing additional information about the result of the deletion operation.</p>\n</li>\n</ul>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Folder deleted successfully.\"\n}\n\n</code></pre>\n<p>In case of an error, the response may contain an appropriate error message indicating what went wrong.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","folder",":folderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"0648e533f72c","key":"folderId"}]}},"response":[{"id":"43e156de-a44c-4f38-b069-a8e763d582ec","name":"Delete folder","originalRequest":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"default"},{"key":"x-access-token","value":"{{x-access-token}}","type":"default"}],"url":{"raw":"{{url}}/v1/folder/:folderId","host":["{{url}}"],"path":["v1","folder",":folderId"],"variable":[{"key":"folderId","value":"0648e533f72c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"6d9aa9a5-8af1-4509-8437-bdb37ec2db64"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent, x-app-origin"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"ETag","value":"W/\"3d-XnngCZpKqvNLstVOfZhOm2sFNlo\""},{"key":"Date","value":"Thu, 13 Feb 2025 16:24:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Folder successfully deleted.\"\n}"}],"_postman_id":"837cd417-49be-4af0-9249-bfc417ae1a40"}],"id":"847f1468-fe4f-46f9-9a75-595061a0cac3","description":"<p>Manage Folder workflow. Create, Update, Delete folders.</p>\n","_postman_id":"847f1468-fe4f-46f9-9a75-595061a0cac3","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Recorder/Survey","item":[{"name":"Recorder Embed","item":[{"name":"Check Recorder Status","id":"c3baece9-e6d1-40a6-b174-743dc03fb467","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":"{{url}}/v1/recorder/status/:token","description":"<p>Reveals whether recorder is publically open or password-protected</p>\n","urlObject":{"path":["v1","recorder","status",":token"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"recorder-9","key":"token"}]}},"response":[{"id":"5fa74c55-9d47-4da3-980c-630aad2fb7cc","name":"404","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":{"raw":"{{url}}/v1/recorder/status/:token","host":["{{url}}"],"path":["v1","recorder","status",":token"],"variable":[{"key":"token","value":"recorder-7-ec8698a5f351"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"eb3e08b0-3d91-47e1-81bc-8432f76be977"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"223"},{"key":"ETag","value":"W/\"df-AQR8RnFBYjQDpK4E9Tiv3lemc2Y\""},{"key":"Date","value":"Tue, 15 Dec 2020 13:55:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"eb3e08b0-3d91-47e1-81bc-8432f76be977\",\n    \"code\": 404,\n    \"message\": \"Recorder not found!\",\n    \"hints\": [\n        \"The requested operation failed because a resource associated with the request could not be found.\"\n    ]\n}"}],"_postman_id":"c3baece9-e6d1-40a6-b174-743dc03fb467"},{"name":"Verify Password","id":"d97a8c12-ca72-4bdf-98c5-79ee83e6f4d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"token\": \"token\",\r\n    \"password\": \"123\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/verify","description":"<p>User to grant\\prohobit access to a password-protected recorder</p>\n","urlObject":{"path":["v1","recorder","verify"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fb682d1c-9807-4161-ae7f-e7e2f911f7df","name":"404","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"token\": \"token\",\r\n    \"password\": \"123\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/verify"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"32732927-3809-4973-a82b-82663013d36f"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"223"},{"key":"ETag","value":"W/\"df-Xc4yi0uyG0rsmUiUZ0LUJ6aE0RM\""},{"key":"Date","value":"Tue, 15 Dec 2020 13:54:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"32732927-3809-4973-a82b-82663013d36f\",\n    \"code\": 404,\n    \"message\": \"Recorder not found!\",\n    \"hints\": [\n        \"The requested operation failed because a resource associated with the request could not be found.\"\n    ]\n}"}],"_postman_id":"d97a8c12-ca72-4bdf-98c5-79ee83e6f4d4"}],"id":"97d8afb1-4145-45d8-a9c4-10a81d73b4d3","description":"<p>Embed your public recorder APIs. Verify the status and password.</p>\n","_postman_id":"97d8afb1-4145-45d8-a9c4-10a81d73b4d3","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Create Recorder","id":"0e1a7b2c-9e8b-4a22-8560-d6f95a86f124","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Speak test 1\",\r\n    \"description\": \"Speak recorder description\",\r\n    \"folderId\": \"0648e533f72c\",\r\n    \"sourceLanguage\": \"en-US\",\r\n    \"duration\": {\r\n        \"minDuration\": 120,\r\n        \"maxDuration\": 300\r\n    },\r\n    \"options\": {\r\n        \"audio\": true,\r\n        \"video\": true,\r\n        \"screenShare\": true,\r\n        \"upload\": {\r\n            \"file\": false,\r\n            \"text\": true,\r\n            \"multiple\": true,\r\n            \"url\": false\r\n        }\r\n    },\r\n    \"notification\": {\r\n        \"upload\": true,\r\n        \"client\": false\r\n    },\r\n    \"clientInformation\": {\r\n        \"name\": true,\r\n        \"email\": true,\r\n        \"questions\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/create","description":"<p><strong>Create a recorder and integrate with your platform easily.</strong></p>\n<p><strong>All the required fields are as below:</strong></p>\n<p><code>name</code> - Name of the recorder</p>\n<p>All the other fields are optional. Your recorder will be created automatically.</p>\n<p><code>description</code> - Assign description of the recorder for internal purpose.</p>\n<p><code>folderId</code> - Save all your recordings to the assigned FolderId.</p>\n<hr />\n<p><strong>Duration of the recorder:</strong></p>\n<ul>\n<li><p><code>minDuration</code> - 15 seconds (min) &amp; 5 min (max)</p>\n<ul>\n<li>Pass the duration in <strong>seconds</strong></li>\n</ul>\n</li>\n<li><p><code>maxDuration</code> - 10 seconds (min) &amp; 3 hours (max)</p>\n<ul>\n<li>Pass the duration in seconds</li>\n</ul>\n</li>\n</ul>\n<hr />\n<p><strong>Source Language:</strong></p>\n<ul>\n<li><p>You can pass the <code>sourceLanguage</code> as a code.</p>\n</li>\n<li><p>Other language codes available at the top of the page.</p>\n</li>\n</ul>\n<hr />\n<p><strong>Recorder options:</strong></p>\n<ul>\n<li>We allow to support creating recorder with the multiple options such as:<ul>\n<li><p><code>audio</code> - Audio recorder</p>\n</li>\n<li><p><code>video</code> - Video recorder</p>\n</li>\n<li><p><code>screeShare</code> - Allow to screen share on browser (Mobile not supported)</p>\n</li>\n<li><p><code>uploadFile</code> - Allow to upload various file formats</p>\n<ul>\n<li><code>allowMultiple</code> - Supporting multiple file uploads</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<hr />\n<p><strong>Notifications:</strong></p>\n<p><code>upload</code> - Recieve an email notification when anyone uploads a recording on the recorder</p>\n<p><code>client</code> - When your user submits a recording (have the email address in a form) - they will receive an submittion email</p>\n<hr />\n<p><strong>Client Information Questions:</strong></p>\n<p><code>name</code> - Ask for their name</p>\n<p><code>email</code> - Ask for their email address</p>\n<p><code>questions</code> - Check an API endpoint to update different types of questions.</p>\n","urlObject":{"path":["v1","recorder","create"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5c4abf46-bbb9-4a5d-8043-0158393dd03d","name":"Create Recorder","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Speak test\",\r\n    \"description\": \"Speak recorder description\",\r\n    \"folderId\": \"0648e533f72c\",\r\n    \"sourceLanguage\": \"en-US\",\r\n    \"duration\": {\r\n        \"minDuration\": 120,\r\n        \"maxDuration\": 300\r\n    },\r\n    \"options\": {\r\n        \"audio\": true,\r\n        \"video\": true,\r\n        \"screenShare\": true,\r\n        \"upload\": {\r\n            \"file\": false,\r\n            \"text\": true,\r\n            \"multiple\": true,\r\n            \"url\": false\r\n        }\r\n    },\r\n    \"notification\": {\r\n        \"upload\": true,\r\n        \"client\": false\r\n    },\r\n    \"clientInformation\": {\r\n        \"name\": true,\r\n        \"email\": true,\r\n        \"questions\": []\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"be52313e-de8e-41fa-a053-cac47a161cb9"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1149"},{"key":"ETag","value":"W/\"47d-8JjCBSAr4neMPznwSzCj3mmJBYk\""},{"key":"Date","value":"Mon, 13 Mar 2023 17:23:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"recorderData\": {\n            \"notification\": {\n                \"upload\": true,\n                \"client\": false\n            },\n            \"recordings\": [],\n            \"minDuration\": 120,\n            \"maxDuration\": 300,\n            \"privacyMode\": \"public\",\n            \"password\": \"\",\n            \"isAutoAnalyze\": true,\n            \"assignTo\": \"\",\n            \"folderId\": \"\",\n            \"sourceLanguage\": \"en-US\",\n            \"isActive\": true,\n            \"isDisabled\": false,\n            \"isDeleted\": false,\n            \"_id\": \"640f5c18a33c35424caa86fc\",\n            \"name\": \"Speak test\",\n            \"description\": \"Speak recorder description\",\n            \"companyId\": \"5e21c8dd2d77242c64214816\",\n            \"userId\": \"5d03a9d5d4bca272e9c8cf89\",\n            \"recorderId\": \"3a1c8f68f2de\",\n            \"token\": \"speak-test-5b87d2c2d21e\",\n            \"meta\": {\n                \"backgroundImg\": \"https://speakai-storage.s3.amazonaws.com/backgroundImg/prod/5d03a9d5d4bca272e9c8cf89/1649768360045-blob\",\n                \"logo\": \"https://speakai-storage.s3.amazonaws.com/logo/prod/5d03a9d5d4bca272e9c8cf89/1649768327203-Speak---Rectange-Logo---Black---5000px-Wide.png\",\n                \"primaryColor\": \"#000000\",\n                \"type\": {\n                    \"audio\": true,\n                    \"video\": true,\n                    \"screenShare\": true,\n                    \"upload\": {\n                        \"file\": true,\n                        \"multiple\": false,\n                        \"text\": true\n                    }\n                },\n                \"client\": {\n                    \"name\": true,\n                    \"email\": true,\n                    \"questions\": []\n                }\n            },\n            \"createdAt\": \"2023-03-13T17:23:36.374Z\",\n            \"updatedAt\": \"2023-03-13T17:23:36.374Z\",\n            \"__v\": 0\n        },\n        \"recorderId\": \"3a1c8f68f2de\",\n        \"token\": \"speak-test-5b87d2c2d21e\"\n    }\n}"}],"_postman_id":"0e1a7b2c-9e8b-4a22-8560-d6f95a86f124"},{"name":"Recorder List","id":"cfd4b7ea-0b58-4719-b5a9-213954d1da44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":"{{url}}/v1/recorder?page=0&pageSize=20&sortBy=createdAt:desc","description":"<h2 id=\"api-endpoint-retrieve-recorders\">API Endpoint: Retrieve Recorders</h2>\n<p>This endpoint retrieves a list of recorders with pagination and sorting options. It allows users to fetch details about available recorders based on specified parameters.</p>\n<h3 id=\"request\">Request</h3>\n<p><strong>Method:</strong> GET<br /><strong>URL:</strong> <code>{{url}}/v1/recorder</code></p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li><p><code>page</code> (integer): The page number of the results to retrieve. Default is <code>0</code>.</p>\n</li>\n<li><p><code>pageSize</code> (integer): The number of records to return per page. Default is <code>20</code>.</p>\n</li>\n<li><p><code>sortBy</code> (string): The field by which to sort the results, followed by the sorting order. For example, <code>createdAt:desc</code> sorts by the creation date in descending order.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><code>status</code> (string): The status of the request.</p>\n</li>\n<li><p><code>data</code> (object): Contains the results of the request.</p>\n<ul>\n<li><p><code>totalCount</code> (integer): The total number of recorders available.</p>\n</li>\n<li><p><code>page</code> (integer): The current page number of the results.</p>\n</li>\n<li><p><code>recorderList</code> (array): A list of recorder objects, each containing:</p>\n<ul>\n<li><p><code>duration</code> (integer): The duration of the recording.</p>\n</li>\n<li><p><code>isAutoAnalyze</code> (boolean): Indicates if the recorder is set for automatic analysis.</p>\n</li>\n<li><p><code>isActive</code> (boolean): Indicates if the recorder is currently active.</p>\n</li>\n<li><p><code>recordings</code> (array): An array of recordings associated with the recorder.</p>\n</li>\n<li><p><code>createdAt</code> (string): The timestamp when the recorder was created.</p>\n</li>\n<li><p><code>updatedAt</code> (string): The timestamp when the recorder was last updated.</p>\n</li>\n<li><p><code>userId</code> (string): The ID of the user associated with the recorder.</p>\n</li>\n<li><p><code>recorderId</code> (string): The unique ID of the recorder.</p>\n</li>\n<li><p><code>token</code> (string): A token associated with the recorder.</p>\n</li>\n<li><p><code>name</code> (string): The name of the recorder.</p>\n</li>\n<li><p><code>meta</code> (object): Metadata about the recorder, including:</p>\n<ul>\n<li><p><code>type</code> (object): Specifies the types of media supported (e.g., video and audio).</p>\n</li>\n<li><p><code>client</code> (object): Information about the client, including name and email.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"data\": {\n    \"totalCount\": 0,\n    \"page\": \"\",\n    \"recorderList\": [\n      {\n        \"duration\": 0,\n        \"isAutoAnalyze\": true,\n        \"isActive\": true,\n        \"recordings\": [],\n        \"createdAt\": \"\",\n        \"updatedAt\": \"\",\n        \"userId\": \"\",\n        \"recorderId\": \"\",\n        \"token\": \"\",\n        \"name\": \"\",\n        \"meta\": {\n          \"type\": {\n            \"video\": true,\n            \"audio\": true\n          },\n          \"client\": {\n            \"name\": true,\n            \"email\": true\n          }\n        }\n      }\n    ]\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["v1","recorder"],"host":["{{url}}"],"query":[{"key":"page","value":"0"},{"key":"pageSize","value":"20"},{"disabled":true,"key":"filterName","value":"recorder"},{"key":"sortBy","value":"createdAt:desc"}],"variable":[]}},"response":[{"id":"9c9dcbed-0502-4109-b983-4b0244ce2c4a","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"url":{"raw":"{{url}}/v1/recorder?page=1&pageSize=20&filterName=recorder&sortBy=createdAt:desc","host":["{{url}}"],"path":["v1","recorder"],"query":[{"key":"page","value":"1"},{"key":"pageSize","value":"20"},{"key":"filterName","value":"recorder"},{"key":"sortBy","value":"createdAt:desc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"050dd050-9320-4940-a0c3-04c1fc43240a"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"422"},{"key":"ETag","value":"W/\"1a6-pVpEPpiZ0+FOrdvDqhQ84KvcBUs\""},{"key":"Date","value":"Tue, 15 Dec 2020 14:03:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"totalCount\": 1,\n        \"page\": \"1\",\n        \"recorderList\": [\n            {\n                \"duration\": 120,\n                \"isAutoAnalyze\": false,\n                \"isActive\": true,\n                \"recordings\": [],\n                \"createdAt\": \"2020-12-15T14:02:21.615Z\",\n                \"updatedAt\": \"2020-12-15T14:02:21.616Z\",\n                \"userId\": \"5d03a9d5d4bca272e9c8cf89\",\n                \"recorderId\": \"70ea4d569736\",\n                \"token\": \"recorder-9-4fb7713e267a\",\n                \"name\": \"recorder-9\",\n                \"meta\": {\n                    \"type\": {\n                        \"video\": false,\n                        \"audio\": true\n                    },\n                    \"client\": {\n                        \"name\": false,\n                        \"email\": false\n                    }\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"cfd4b7ea-0b58-4719-b5a9-213954d1da44"},{"name":"Clone Recorder","id":"dc3e472c-b829-475e-9dfb-d775cb1ce5da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"recorderId\": \"ce8f9465763c\",\r\n    \"name\": \"Speak Clone test\"\r\n    // \"description\": \"Speak recorder description\",\r\n    // \"folderId\": \"0648e533f72c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/clone","description":"<p><strong>Clone Recorder to copy all the settings from the existing recorders</strong></p>\n<p><strong>All the required fields are as below:</strong></p>\n<p><code>recorderId</code> - Pass the recorderId from the existing recorder</p>\n<p><strong>Optional:</strong></p>\n<p><code>name</code> - New name for the recorder. If not pass, it will take the existing recorder name and add <code>(clone)</code> to the new recorder</p>\n<p><code>description</code> - New description for the recorder. If not pass, it will take the existing recorder description as is.</p>\n<p><code>folderId</code> - IMPORTANT! We recommend to pass the <code>folderId</code> to ensure the recordings save in the specific folder. If not pass, it will take the existing recorder folderId setting.</p>\n<hr />\n<p>If you need to change any other settings, we recommend to use the <code>Create Recorder</code> API call.</p>\n","urlObject":{"path":["v1","recorder","clone"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f687a362-50d5-4ff8-afad-e236dd5543ce","name":"Clone Recorder","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"recorderId\": \"ce8f9465763c\",\r\n    \"name\": \"Speak Clone test\"\r\n    // \"description\": \"Speak recorder description\",\r\n    // \"folderId\": \"0648e533f72c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/clone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"be52313e-de8e-41fa-a053-cac47a161cb9"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1149"},{"key":"ETag","value":"W/\"47d-8JjCBSAr4neMPznwSzCj3mmJBYk\""},{"key":"Date","value":"Mon, 13 Mar 2023 17:23:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"recorderData\": {\n            \"notification\": {\n                \"upload\": true,\n                \"client\": false\n            },\n            \"recordings\": [],\n            \"minDuration\": 120,\n            \"maxDuration\": 300,\n            \"privacyMode\": \"public\",\n            \"password\": \"\",\n            \"isAutoAnalyze\": true,\n            \"assignTo\": \"\",\n            \"folderId\": \"\",\n            \"sourceLanguage\": \"en-US\",\n            \"isActive\": true,\n            \"isDisabled\": false,\n            \"isDeleted\": false,\n            \"_id\": \"640f5c18a33c35424caa86fc\",\n            \"name\": \"Speak test\",\n            \"description\": \"Speak recorder description\",\n            \"companyId\": \"5e21c8dd2d77242c64214816\",\n            \"userId\": \"5d03a9d5d4bca272e9c8cf89\",\n            \"recorderId\": \"3a1c8f68f2de\",\n            \"token\": \"speak-test-5b87d2c2d21e\",\n            \"meta\": {\n                \"backgroundImg\": \"https://speakai-storage.s3.amazonaws.com/backgroundImg/prod/5d03a9d5d4bca272e9c8cf89/1649768360045-blob\",\n                \"logo\": \"https://speakai-storage.s3.amazonaws.com/logo/prod/5d03a9d5d4bca272e9c8cf89/1649768327203-Speak---Rectange-Logo---Black---5000px-Wide.png\",\n                \"primaryColor\": \"#000000\",\n                \"type\": {\n                    \"audio\": true,\n                    \"video\": true,\n                    \"screenShare\": true,\n                    \"upload\": {\n                        \"file\": true,\n                        \"multiple\": false,\n                        \"text\": true\n                    }\n                },\n                \"client\": {\n                    \"name\": true,\n                    \"email\": true,\n                    \"questions\": []\n                }\n            },\n            \"createdAt\": \"2023-03-13T17:23:36.374Z\",\n            \"updatedAt\": \"2023-03-13T17:23:36.374Z\",\n            \"__v\": 0\n        },\n        \"recorderId\": \"3a1c8f68f2de\",\n        \"token\": \"speak-test-5b87d2c2d21e\"\n    }\n}"}],"_postman_id":"dc3e472c-b829-475e-9dfb-d775cb1ce5da"},{"name":"Recorder info","id":"9de4ec29-7bcc-438c-96e5-f8a7f7566b74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"url":"{{url}}/v1/recorder/:recorderId","description":"<h3 id=\"api-endpoint-get-recorder-details\">API Endpoint: Get Recorder Details</h3>\n<p><strong>Method:</strong> GET<br /><strong>Endpoint:</strong> <code>{{url}}/v1/recorder/:recorderId</code></p>\n<p>This endpoint retrieves detailed information about a specific recorder identified by the <code>recorderId</code>. The response includes various attributes related to the recorder, such as its name, description, user information, recording settings, privacy options, and metadata.</p>\n<h4 id=\"response-structure\">Response Structure:</h4>\n<ul>\n<li><p><strong>status</strong>: Status of the request.</p>\n</li>\n<li><p><strong>data</strong>: Contains the details of the recorder:</p>\n<ul>\n<li><p><strong>recorderId</strong>: Unique identifier for the recorder.</p>\n</li>\n<li><p><strong>userId</strong>: Identifier for the user associated with the recorder.</p>\n</li>\n<li><p><strong>name</strong>: Name of the recorder.</p>\n</li>\n<li><p><strong>description</strong>: Description of the recorder.</p>\n</li>\n<li><p><strong>token</strong>: Authentication token for the recorder.</p>\n</li>\n<li><p><strong>recordings</strong>: Array of recordings associated with the recorder.</p>\n</li>\n<li><p><strong>minDuration</strong>: Minimum duration for recordings.</p>\n</li>\n<li><p><strong>maxDuration</strong>: Maximum duration for recordings.</p>\n</li>\n<li><p><strong>privacyMode</strong>: Privacy settings for the recorder.</p>\n</li>\n<li><p><strong>password</strong>: Password for accessing the recorder, if applicable.</p>\n</li>\n<li><p><strong>isAutoAnalyze</strong>: Indicates if automatic analysis is enabled.</p>\n</li>\n<li><p><strong>assignTo</strong>: User or entity to which the recorder is assigned.</p>\n</li>\n<li><p><strong>folderId</strong>: Identifier for the folder containing the recorder.</p>\n</li>\n<li><p><strong>sourceLanguage</strong>: Language settings for the recorder.</p>\n</li>\n<li><p><strong>meta</strong>: Metadata related to the recorder, including:</p>\n<ul>\n<li><p><strong>backgroundImg</strong>: Background image URL.</p>\n</li>\n<li><p><strong>logo</strong>: Logo URL.</p>\n</li>\n<li><p><strong>primaryColor</strong>: Primary color used in the recorder interface.</p>\n</li>\n<li><p><strong>type</strong>: Supported types of recordings (audio, video, screen share, etc.).</p>\n</li>\n<li><p><strong>client</strong>: Client-related information including name, email, and questions.</p>\n</li>\n<li><p><strong>callToActionButtons</strong>: Action buttons associated with the recorder.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>notification</strong>: Notification settings for the recorder.</p>\n</li>\n<li><p><strong>isActive</strong>: Indicates if the recorder is currently active.</p>\n</li>\n<li><p><strong>createdAt</strong>: Timestamp of when the recorder was created.</p>\n</li>\n<li><p><strong>updatedAt</strong>: Timestamp of when the recorder was last updated.</p>\n</li>\n<li><p><strong>domain</strong>: Domain associated with the recorder.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["v1","recorder",":recorderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"recorderId"}]}},"response":[{"id":"56688d35-0806-4d73-8f17-3aec4cb6924b","name":"Recorder info","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":{"raw":"{{url}}/v1/recorder/:recorderId","host":["{{url}}"],"path":["v1","recorder",":recorderId"],"variable":[{"key":"recorderId","value":"2f93b3d68937"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"1bf0c049-af61-4c41-bbf0-5cc144e4997d"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1122"},{"key":"ETag","value":"W/\"462-Q/ITYRN4seKjGOpI7N/9mXzG3pw\""},{"key":"Date","value":"Fri, 20 Sep 2024 18:43:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"recorderId\": \"2f93b3d68937\",\n        \"userId\": \"5d03a9d5d4bca272e9c8cf89\",\n        \"name\": \"Recorder Mon Jun 24 2024\",\n        \"description\": \"\",\n        \"token\": \"recorder-mon-jun-24-2024-a3535823b1a8\",\n        \"recordings\": [\n            \"667c643820f2e801e047953c\",\n            \"667c64a220f2e801e0479575\",\n            \"667c658a20f2e801e04795b2\",\n            \"66bd00cfddad1d65cf641b3c\",\n            \"66bd01659f05abb6aa49a926\",\n            \"66bd022e507d6766980287eb\"\n        ],\n        \"minDuration\": 15,\n        \"maxDuration\": 300,\n        \"privacyMode\": \"public\",\n        \"password\": \"\",\n        \"isAutoAnalyze\": true,\n        \"assignTo\": \"\",\n        \"folderId\": \"f89a9eac1b62\",\n        \"sourceLanguage\": \"en-AU\",\n        \"meta\": {\n            \"backgroundImg\": \"\",\n            \"logo\": \"\",\n            \"primaryColor\": \"#c42860\",\n            \"type\": {\n                \"audio\": true,\n                \"video\": true,\n                \"screenShare\": false,\n                \"upload\": {\n                    \"file\": true,\n                    \"url\": true,\n                    \"multiple\": false,\n                    \"text\": null\n                }\n            },\n            \"client\": {\n                \"name\": false,\n                \"email\": false,\n                \"questions\": [\n                    {\n                        \"id\": \"41db9890bab9\",\n                        \"question\": \"test question\",\n                        \"isRequired\": true,\n                        \"answerType\": \"single\",\n                        \"options\": [],\n                        \"includeOther\": false,\n                        \"fieldId\": \"\",\n                        \"_id\": \"66bd01f4507d676698028770\"\n                    }\n                ]\n            },\n            \"callToActionButtons\": []\n        },\n        \"notification\": {\n            \"client\": true,\n            \"upload\": true,\n            \"notifyUsers\": []\n        },\n        \"isActive\": true,\n        \"createdAt\": \"2024-06-24T15:05:41.703Z\",\n        \"updatedAt\": \"2024-06-24T15:05:41.703Z\",\n        \"domain\": \"\"\n    }\n}"}],"_postman_id":"9de4ec29-7bcc-438c-96e5-f8a7f7566b74"},{"name":"Recording Details","id":"59e79c75-f5a3-474a-baf8-897d68390385","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}"},{"key":"x-speakai-key","value":"{{x-speakai-key}}"}],"url":"{{url}}/v1/recorder/recordings/:recorderId","description":"<p>Get Recording meta details such as:</p>\n<ul>\n<li>Name</li>\n<li>Email</li>\n<li>Other asked questions</li>\n</ul>\n","urlObject":{"path":["v1","recorder","recordings",":recorderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"recorderId"}]}},"response":[{"id":"70ec8b66-c325-4f5d-a88f-9c6edfdbb673","name":"Recording Details","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":{"raw":"{{url}}/v1/recorder/recordings/:recorderId","host":["{{url}}"],"path":["v1","recorder","recordings",":recorderId"],"variable":[{"key":"recorderId","value":"2f93b3d68937"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"985b964c-3997-4e41-97a2-be7e1daa766e"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token, user-agent"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3227"},{"key":"ETag","value":"W/\"c9b-42pGBYLma6Nwt/OcAcKE9beiCiU\""},{"key":"Date","value":"Fri, 20 Sep 2024 18:42:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"totalCount\": 3,\n        \"recordings\": [\n            {\n                \"_id\": \"66bd022e507d6766980287eb\",\n                \"recorderId\": \"66798b454a53154b90d40077\",\n                \"mediaId\": {\n                    \"_id\": \"66bd022e507d6766980287e9\",\n                    \"folderId\": \"f89a9eac1b62\",\n                    \"name\": \"Wed Aug 14 2024 15:14:54 GMT-0400 (Eastern Daylight Time)\",\n                    \"description\": \"Client's recording for Recorder Mon Jun 24 2024\",\n                    \"tags\": [\n                        \"Recorder Mon Jun 24 2024\"\n                    ],\n                    \"state\": \"processed\",\n                    \"duration\": {\n                        \"inSecond\": 15,\n                        \"end\": \"00:00:15.504\",\n                        \"start\": \"00:00:00.080\"\n                    },\n                    \"mediaId\": \"dc49faf822df\",\n                    \"createdAt\": \"2024-08-14T19:14:54.194Z\",\n                    \"publishedUrl\": \"media/5d03a9d5d4bca272e9c8cf89/audio/1723662893381-recorder_mon_jun_24_2024.mp3\"\n                },\n                \"client\": {\n                    \"name\": \"\",\n                    \"email\": \"\",\n                    \"questions\": [\n                        {\n                            \"id\": \"41db9890bab9\",\n                            \"question\": \"test question\",\n                            \"answer\": \"test 3\",\n                            \"answerType\": \"single\"\n                        }\n                    ]\n                },\n                \"isDeleted\": false,\n                \"meta\": {\n                    \"isScreenShare\": false,\n                    \"microphoneMuted\": false,\n                    \"microphoneReadyState\": \"live\",\n                    \"microphoneName\": \"Default - MacBook Pro Microphone (Built-in)\",\n                    \"microphoneNumber\": 5,\n                    \"cameraMuted\": false,\n                    \"cameraReadyState\": \"live\",\n                    \"cameraName\": \"\",\n                    \"cameraNumber\": 1\n                },\n                \"createdAt\": \"2024-08-14T19:14:54.586Z\",\n                \"updatedAt\": \"2024-08-14T19:14:54.586Z\",\n                \"__v\": 0\n            },\n            {\n                \"_id\": \"66bd01659f05abb6aa49a926\",\n                \"recorderId\": \"66798b454a53154b90d40077\",\n                \"mediaId\": {\n                    \"_id\": \"66bd01659f05abb6aa49a924\",\n                    \"folderId\": \"f89a9eac1b62\",\n                    \"name\": \"Wed Aug 14 2024 15:11:33 GMT-0400 (Eastern Daylight Time)\",\n                    \"description\": \"Client's recording for Recorder Mon Jun 24 2024\",\n                    \"tags\": [\n                        \"Recorder Mon Jun 24 2024\"\n                    ],\n                    \"state\": \"processed\",\n                    \"duration\": {\n                        \"inSecond\": 15,\n                        \"end\": \"00:00:15.355\",\n                        \"start\": \"00:00:00.480\"\n                    },\n                    \"mediaId\": \"dda3a52b39f1\",\n                    \"createdAt\": \"2024-08-14T19:11:33.023Z\",\n                    \"publishedUrl\": \"media/5d03a9d5d4bca272e9c8cf89/audio/1723662691849-recorder_mon_jun_24_2024.mp3\"\n                },\n                \"client\": {\n                    \"name\": \"\",\n                    \"email\": \"\",\n                    \"questions\": [\n                        {\n                            \"id\": \"41db9890bab9\",\n                            \"question\": \"test question\",\n                            \"answer\": \"second field\",\n                            \"answerType\": \"single\"\n                        }\n                    ]\n                },\n                \"isDeleted\": false,\n                \"meta\": {\n                    \"isScreenShare\": false,\n                    \"microphoneMuted\": false,\n                    \"microphoneReadyState\": \"live\",\n                    \"microphoneName\": \"Default - MacBook Pro Microphone (Built-in)\",\n                    \"microphoneNumber\": 5,\n                    \"cameraMuted\": false,\n                    \"cameraReadyState\": \"live\",\n                    \"cameraName\": \"\",\n                    \"cameraNumber\": 1\n                },\n                \"createdAt\": \"2024-08-14T19:11:33.300Z\",\n                \"updatedAt\": \"2024-08-14T19:11:33.300Z\",\n                \"__v\": 0\n            },\n            {\n                \"_id\": \"66bd00cfddad1d65cf641b3c\",\n                \"recorderId\": \"66798b454a53154b90d40077\",\n                \"mediaId\": {\n                    \"_id\": \"66bd00ceddad1d65cf641b3a\",\n                    \"folderId\": \"f89a9eac1b62\",\n                    \"name\": \"Wed Aug 14 2024 15:09:02 GMT-0400 (Eastern Daylight Time)\",\n                    \"description\": \"Client's recording for Recorder Mon Jun 24 2024\",\n                    \"tags\": [\n                        \"Recorder Mon Jun 24 2024\"\n                    ],\n                    \"state\": \"processed\",\n                    \"duration\": {\n                        \"inSecond\": 17,\n                        \"end\": \"00:00:17.025\",\n                        \"start\": \"00:00:00.640\"\n                    },\n                    \"mediaId\": \"db4f2d0f7131\",\n                    \"createdAt\": \"2024-08-14T19:09:02.966Z\",\n                    \"publishedUrl\": \"media/5d03a9d5d4bca272e9c8cf89/audio/1723662541882-recorder_mon_jun_24_2024.mp3\"\n                },\n                \"client\": {\n                    \"name\": \"\",\n                    \"email\": \"\",\n                    \"questions\": [\n                        {\n                            \"id\": \"41db9890bab9\",\n                            \"question\": \"test question\",\n                            \"answer\": \"Field Value \",\n                            \"answerType\": \"single\"\n                        }\n                    ]\n                },\n                \"isDeleted\": false,\n                \"meta\": {\n                    \"isScreenShare\": false,\n                    \"microphoneMuted\": false,\n                    \"microphoneReadyState\": \"live\",\n                    \"microphoneName\": \"Default - MacBook Pro Microphone (Built-in)\",\n                    \"microphoneNumber\": 5,\n                    \"cameraMuted\": false,\n                    \"cameraReadyState\": \"live\",\n                    \"cameraName\": \"\",\n                    \"cameraNumber\": 1\n                },\n                \"createdAt\": \"2024-08-14T19:09:03.252Z\",\n                \"updatedAt\": \"2024-08-14T19:09:03.252Z\",\n                \"__v\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"59e79c75-f5a3-474a-baf8-897d68390385"},{"name":"Generate Recorder URL","id":"db367677-dbcc-4b74-a5c1-ccdbfb1c63ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"url":"{{url}}/v1/recorder/url/:recorderId","description":"<h3 id=\"api-endpoint-get-recorder-url\">API Endpoint: Get Recorder URL</h3>\n<p><strong>Method:</strong> <code>GET</code><br /><strong>Endpoint:</strong> <code>{{url}}/v1/recorder/url/:recorderId</code></p>\n<h4 id=\"description\">Description</h4>\n<p>This endpoint retrieves the URL associated with a specific recorder identified by <code>recorderId</code>. It is used to obtain the necessary information to access the recorder's iframe and page details.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><strong>recorderId</strong> (path parameter): The unique identifier for the recorder whose URL is being requested.</li>\n</ul>\n<h4 id=\"response-format\">Response Format</h4>\n<p>The response will be in JSON format and includes the following fields:</p>\n<ul>\n<li><p><strong>status</strong>: A string indicating the status of the request.</p>\n</li>\n<li><p><strong>data</strong>: An object containing:</p>\n<ul>\n<li><p><strong>iframe</strong>: A string representing the iframe URL for the recorder.</p>\n</li>\n<li><p><strong>page</strong>: A string representing the page URL for the recorder.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"data\": {\n    \"iframe\": \"\",\n    \"page\": \"\"\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["v1","recorder","url",":recorderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"recorderId"}]}},"response":[{"id":"8b76b5c5-52d9-498c-bb11-e5d2ef74c1ee","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"url":{"raw":"{{url}}/v1/recorder/url/:recorderId","host":["{{url}}"],"path":["v1","recorder","url",":recorderId"],"variable":[{"key":"recorderId","value":"70ea4d569736"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"e04af0ad-62ad-4290-84c7-ecbf1bd470de"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"282"},{"key":"ETag","value":"W/\"11a-goA0Wgg2+4/kT7Nl07HP6Y67iXQ\""},{"key":"Date","value":"Tue, 15 Dec 2020 14:02:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"iframe\": \"<iframe style=\\\"height: 800px !important; width: 960px !important;\\\" src=\\\"https://recorder.speakai.co/iframe/recorder-9-4fb7713e267a\\\" frameborder=\\\"0\\\" scrolling=\\\"no\\\"></iframe>\",\n        \"page\": \"https://recorder.speakai.co/recorder-9-4fb7713e267a\"\n    }\n}"},{"id":"f59db9d7-81d0-49e3-8850-86c46c9114b5","name":"404","originalRequest":{"method":"GET","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"key":"x-speakai-key","type":"text","value":"{{x-speakai-key}}"}],"url":{"raw":"{{url}}/v1/recorder/url/:recorderId","host":["{{url}}"],"path":["v1","recorder","url",":recorderId"],"variable":[{"key":"recorderId","value":"675a046f4fcc"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"1babfc3a-9f8f-4c22-83c8-0367cb2b7cb1"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"226"},{"key":"ETag","value":"W/\"e2-pPWZkkqWVWrPVpYCnZtU8d4P8g8\""},{"key":"Date","value":"Tue, 15 Dec 2020 13:56:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"1babfc3a-9f8f-4c22-83c8-0367cb2b7cb1\",\n    \"code\": 404,\n    \"message\": \"Recorder Id not found!\",\n    \"hints\": [\n        \"The requested operation failed because a resource associated with the request could not be found.\"\n    ]\n}"}],"_postman_id":"db367677-dbcc-4b74-a5c1-ccdbfb1c63ae"},{"name":"Update Recorder Settings","id":"c9618c76-dd24-4ba4-9d94-3f076b999fd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"recorder-9\",\r\n    \"description\": \"recorder-9 description\",\r\n    \"folderId\": \"0648e533f72c\",\r\n    \"sourceLanguage\": \"en-US\",\r\n    \"duration\": {\r\n        \"minDuration\": 120,\r\n        \"maxDuration\": 300\r\n    },\r\n    \"options\": {\r\n         \"audio\": true,\r\n        \"video\": true,\r\n        \"screenShare\": true,\r\n        \"upload\": {\r\n            \"file\": false,\r\n            \"text\": true,\r\n            \"multiple\": true,\r\n            \"url\": false\r\n        }\r\n    },\r\n    \"notification\": {\r\n        \"upload\": true,\r\n        \"client\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/settings/:recorderId","description":"<p><strong>Update a recorder details.</strong></p>\n<p><code>name</code> - Name of the recorder</p>\n<p>All the other fields are optional. Your recorder will be updated automatically.</p>\n<hr />\n<p><strong>Duration of the recorder:</strong></p>\n<ul>\n<li><code>minDuration</code> - 15 seconds (min) &amp; 5 min (max)<ul>\n<li>Pass the duration in <strong>seconds</strong></li>\n</ul>\n</li>\n<li><code>maxDuration</code> - 10 seconds (min) &amp; 3 hours (max)<ul>\n<li>Pass the duration in seconds</li>\n</ul>\n</li>\n</ul>\n<hr />\n<p><strong>Source Language:</strong></p>\n<ul>\n<li>You can pass the <code>sourceLanguage</code> as a code.</li>\n<li>Other language codes available at the top of the page.</li>\n</ul>\n<hr />\n<p><strong>Recorder options:</strong></p>\n<ul>\n<li>We allow to support creating recorder with the multiple options such as:<ul>\n<li><code>audio</code> - Audio recorder</li>\n<li><code>video</code> - Video recorder</li>\n<li><code>screeShare</code> - Allow to screen share on browser (Mobile not supported)</li>\n<li><code>uploadFile</code> - Allow to upload various file formats<ul>\n<li><code>allowMultiple</code> - Supporting multiple file uploads</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<hr />\n<p><strong>Notifications:</strong></p>\n<p><code>upload</code> - Recieve an email notification when anyone uploads a recording on the recorder</p>\n<p><code>client</code> - When your user submits a recording (have the email address in a form) - they will receive an submittion email</p>\n","urlObject":{"path":["v1","recorder","settings",":recorderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":null,"key":"recorderId"}]}},"response":[{"id":"185f53a8-4938-4481-a672-b1aa8364615a","name":"200","originalRequest":{"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"recorder-9 updated\",\r\n    \"description\": \"recorder-9 description\",\r\n    \"duration\": 120,\r\n    \"meta\": {\r\n        \"type\": {\r\n            \"audio\": true,\r\n            \"video\": false\r\n        },\r\n        \"client\": {\r\n            \"name\": false,\r\n            \"email\": false\r\n        }        \r\n    },\r\n    \"notification\": {\r\n        \"upload\": true  \r\n    },\r\n    \"isAutoAnalyze\": false\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/recorder/:recorderId","host":["{{url}}"],"path":["v1","recorder",":recorderId"],"variable":[{"key":"recorderId","value":"70ea4d569736"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"9c68ce29-32c0-4981-bcc1-bd1073f0dcfa"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"112"},{"key":"ETag","value":"W/\"70-WL7273il/nBtVmCJZ8BVCUSDlXo\""},{"key":"Date","value":"Tue, 15 Dec 2020 14:05:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"message\": \"recorder-9 updated is successfully updated\",\n        \"recorderId\": \"70ea4d569736\"\n    }\n}"}],"_postman_id":"c9618c76-dd24-4ba4-9d94-3f076b999fd8"},{"name":"Update Recorder Questions","id":"9fabcdff-7f8d-43ff-a834-98b386416e92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"question\": \"My First Sample Question\",\r\n    \"isRequired\": true,\r\n    \"answerType\": \"single\",\r\n    \"options\": [],\r\n    \"includeOther\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/recorder/questions/:recorderId","description":"<p><strong>Update a recorder questions:</strong></p>\n<p><code>questions</code> - Speak offer different set of questions to create and ask to your clients.</p>\n<p>Here're the few examples with value:</p>\n<ol>\n<li>Single Line - \"single\"</li>\n<li>Multi Line - \"multiple\"</li>\n<li>Checkbox* - \"checkbox\"</li>\n<li>Radio Button* - \"radiobutton\"</li>\n<li>Dropdown* - \"dropdownlist\"</li>\n<li>Date - \"date\"</li>\n<li>Date &amp; Time - \"datetime\"</li>\n</ol>\n<p>Checkbox, Radio Button, Dropdown offers \"Include Others\" option.</p>\n<p>Checkbox Sample:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"question\":\"My Checkbox question\",\n\"isRequired\":true,\n\"answerType\":\"checkbox\",\n\"options\":[\"Option A\",\"Option B\"],\n\"includeOther\":false\n}\n\n</code></pre>\n<p>Dropdown Sample with Include Other:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"question\": \"My Dropdown Question with Include Others\",\n  \"isRequired\": true,\n  \"answerType\": \"dropdownlist\",\n  \"options\": [\n    \"Value 1\",\n    \"Value 2\"\n  ],\n  \"includeOther\": true\n}\n\n</code></pre>\n","urlObject":{"path":["v1","recorder","questions",":recorderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":null,"key":"recorderId"}]}},"response":[{"id":"f58e3af3-45e1-452b-b3c3-b3cca3d914a3","name":"200","originalRequest":{"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"recorder-9 updated\",\r\n    \"description\": \"recorder-9 description\",\r\n    \"duration\": 120,\r\n    \"meta\": {\r\n        \"type\": {\r\n            \"audio\": true,\r\n            \"video\": false\r\n        },\r\n        \"client\": {\r\n            \"name\": false,\r\n            \"email\": false\r\n        }        \r\n    },\r\n    \"notification\": {\r\n        \"upload\": true  \r\n    },\r\n    \"isAutoAnalyze\": false\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/recorder/:recorderId","host":["{{url}}"],"path":["v1","recorder",":recorderId"],"variable":[{"key":"recorderId","value":"70ea4d569736"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"9c68ce29-32c0-4981-bcc1-bd1073f0dcfa"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"112"},{"key":"ETag","value":"W/\"70-WL7273il/nBtVmCJZ8BVCUSDlXo\""},{"key":"Date","value":"Tue, 15 Dec 2020 14:05:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"message\": \"recorder-9 updated is successfully updated\",\n        \"recorderId\": \"70ea4d569736\"\n    }\n}"}],"_postman_id":"9fabcdff-7f8d-43ff-a834-98b386416e92"},{"name":"Delete Recorder","id":"a3728753-731d-4586-86cf-7d4af9b236c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":"{{url}}/v1/recorder/:recorderId","description":"<h2 id=\"delete-v1recorderrecorderid\">DELETE /v1/recorder/:recorderId</h2>\n<p>This endpoint allows clients to delete a specific recorder resource identified by the <code>recorderId</code>.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<ul>\n<li><strong>recorderId</strong> (path parameter): The unique identifier of the recorder that you wish to delete. This parameter is required.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful deletion, the server will respond with a confirmation message indicating the result of the operation. The structure of the response will typically include:</p>\n<ul>\n<li><p>A status code indicating the success or failure of the operation.</p>\n</li>\n<li><p>A message providing additional context about the deletion.</p>\n</li>\n</ul>\n<p>Ensure that the <code>recorderId</code> provided corresponds to an existing recorder, as attempting to delete a non-existent recorder may result in an error response.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","recorder",":recorderId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"recorderId"}]}},"response":[{"id":"c2d88a92-1c0a-4eee-a6a9-0fda60f5604c","name":"404","originalRequest":{"method":"DELETE","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":{"raw":"{{url}}/v1/recorder/:recorderId","host":["{{url}}"],"path":["v1","recorder",":recorderId"],"variable":[{"key":"recorderId","value":"511cdd17ec48a"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"8389bb88-ad28-4210-a72b-b9326e51d9cd"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"228"},{"key":"ETag","value":"W/\"e4-Sm16zZP+qYvYK2dd8O1HNlSUFiM\""},{"key":"Date","value":"Tue, 15 Dec 2020 14:04:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"requestId\": \"8389bb88-ad28-4210-a72b-b9326e51d9cd\",\n    \"code\": 404,\n    \"message\": \"Recorder Note not found!\",\n    \"hints\": [\n        \"The requested operation failed because a resource associated with the request could not be found.\"\n    ]\n}"}],"_postman_id":"a3728753-731d-4586-86cf-7d4af9b236c0"}],"id":"7107c9ff-8b57-47a2-83fa-8728af5be00e","description":"<p>Suvery endpoints serve the purpose of operating an surveys: listing the files, getting info, creating\\updating\\deleting a recorder, generating embeddable URL for it.</p>\n<p>Embeddable supports checking it's status,uploading of the recordings directly and verification of password to access the recorder as a user.</p>\n","event":[{"listen":"prerequest","script":{"id":"5f3a6428-47f8-41fc-9b29-8445e1bd31c9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e7d558c1-8c9d-4612-acb9-8dd0b0e81007","type":"text/javascript","exec":[""]}}],"_postman_id":"7107c9ff-8b57-47a2-83fa-8728af5be00e","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Media Embed","item":[{"name":"Create Embed","id":"23095a11-485d-4a3e-8124-440592564aa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t// \"mediaId\": \"3afc714552cd\"\n    \"folderIds\": [\"e88575b384b6\"]\n}"},"url":"{{url}}/v1/embed","description":"<p>Create an Interactive Media Player by passing the value for <code>mediaId</code> OR <code>folderIds</code></p>\n<ul>\n<li><p>By passing <code>mediaId</code> - Create an individual media player.</p>\n</li>\n<li><p>By passing <code>folderIds</code> - Create a repository for a folder to share with others.</p>\n</li>\n</ul>\n<p>Make sure you have access to Shareable Media Repository in your subscription.</p>\n","urlObject":{"path":["v1","embed"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"804406cb-0799-42a4-887f-87bc0a8a8f76","name":"Create Embed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"mediaId\": \"3afc714552cd\"\n}"},"url":"{{url}}/v1/embed"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"fd6de568-53cf-4480-b0bd-8c30ecede800"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1018"},{"key":"ETag","value":"W/\"3fa-OJfZA6xSLbszBOIQSAskk0UkCDg\""},{"key":"Date","value":"Tue, 28 Nov 2023 15:49:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"_id\": \"65660bf97f916888ccc2f4ca\",\n        \"meta\": {\n            \"callToActionButtons\": [\n                {\n                    \"url\": \"https://speakai.co\",\n                    \"label\": \"Speak Ai\"\n                },\n                {\n                    \"url\": \"vatsal.com\",\n                    \"label\": \"test\"\n                }\n            ],\n            \"features\": [\n                {\n                    \"name\": \"labels\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"transcript\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"brands\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"keywords\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"people\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"topics\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"sentiment\",\n                    \"isActive\": true\n                }\n            ],\n            \"isDataVizDownloadable\": false,\n            \"isDescription\": false,\n            \"isSEOIndexing\": false,\n            \"isRemarks\": true,\n            \"isPromptAsk\": true,\n            \"isPromptHistory\": true,\n            \"isTitle\": true,\n            \"primaryColor\": \"#c42860\"\n        },\n        \"mediaId\": \"3afc714552cd\",\n        \"folderIds\": [],\n        \"mediaType\": \"video\",\n        \"token\": \"how-to-edit-the-transcript-79a590aa126b\",\n        \"privacyMode\": \"private\",\n        \"page\":\"\",\n        \"iframe\": \"\"\n    }\n}"}],"_postman_id":"23095a11-485d-4a3e-8124-440592564aa7"},{"name":"Update Embed","id":"66c509ba-3742-42ff-ab8f-2807653e09cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"_id\": \"65660bf97f916888ccc2f4ca\",\n    \"mediaId\": \"3afc714552cd\",\n    \"meta\": {\n        \"backgroundImg\": \"\",\n        \"callToActionButtons\": [\n            {\n                \"url\": \"https://speakai.co\",\n                \"label\": \"Speak Ai\"\n            }\n        ],\n        \"features\": [\n            {\n                \"name\": \"keywords\",\n                \"isActive\": true\n            },\n            {\n                \"name\": \"transcript\",\n                \"isActive\": true\n            }\n        ],\n        \"isDataVizDownloadable\": true,\n        \"isDescription\": true,\n        \"isSEOIndexing\": true,\n        \"isRemarks\": true,\n        \"isPromptAsk\": false,\n        \"isPromptHistory\": true,\n        \"isTitle\": true,\n        \"logo\": \"\",\n        \"primaryColor\": \"#c42860\"\n    }\n}"},"url":"{{url}}/v1/embed/:embedId","description":"<p>Update an existing Embed Media Player.</p>\n<ul>\n<li>Make sure to pass in path <code>embedId</code> to update your existing player</li>\n</ul>\n","urlObject":{"path":["v1","embed",":embedId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"65660bf97f916888ccc2f4ca","key":"embedId"}]}},"response":[{"id":"5fb0024a-15e8-44e3-bbe9-bfd4ac7c0e93","name":"Update Embed","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"_id\": \"65660bf97f916888ccc2f4ca\",\n    \"mediaId\": \"3afc714552cd\",\n    \"meta\": {\n        \"backgroundImg\": \"\",\n        \"callToActionButtons\": [\n            {\n                \"url\": \"https://speakai.co\",\n                \"label\": \"Speak Ai\"\n            }\n        ],\n        \"features\": [\n            {\n                \"name\": \"keywords\",\n                \"isActive\": true\n            },\n            {\n                \"name\": \"transcript\",\n                \"isActive\": true\n            }\n        ],\n        \"isDataVizDownloadable\": true,\n        \"isDescription\": true,\n        \"isSEOIndexing\": true,\n        \"isRemarks\": true,\n        \"isPromptAsk\": false,\n        \"isPromptHistory\": true,\n        \"isTitle\": true,\n        \"logo\": \"\",\n        \"primaryColor\": \"#c42860\"\n    }\n}"},"url":{"raw":"{{url}}/v1/embed/:embedId","host":["{{url}}"],"path":["v1","embed",":embedId"],"variable":[{"key":"embedId","value":"65660bf97f916888ccc2f4ca"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"ce47d79d-3a6f-4954-906f-2fe881af8220"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"790"},{"key":"ETag","value":"W/\"316-r1g17eCwsS99O99DjjS6Tj1E6aM\""},{"key":"Date","value":"Tue, 28 Nov 2023 15:55:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"_id\": \"65660bf97f916888ccc2f4ca\",\n        \"meta\": {\n            \"backgroundImg\": \"\",\n            \"callToActionButtons\": [\n                {\n                    \"url\": \"https://speakai.co\",\n                    \"label\": \"Speak Ai\"\n                }\n            ],\n            \"features\": [\n                {\n                    \"name\": \"keywords\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"transcript\",\n                    \"isActive\": true\n                }\n            ],\n            \"isDataVizDownloadable\": true,\n            \"isDescription\": true,\n            \"isSEOIndexing\": true,\n            \"isRemarks\": true,\n            \"isPromptAsk\": false,\n            \"isPromptHistory\": true,\n            \"isTitle\": true,\n            \"logo\": \"\",\n            \"primaryColor\": \"#c42860\"\n        },\n        \"mediaId\": \"3afc714552cd\",\n        \"folderIds\": [],\n        \"embedType\": \"mediaPlayer\",\n        \"isActive\": true,\n        \"isDeleted\": false,\n        \"analytics\": [],\n        \"companyId\": \"5e21c8dd2d77242c64214816\",\n        \"userId\": \"5d03a9d5d4bca272e9c8cf89\",\n        \"mediaType\": \"video\",\n        \"token\": \"how-to-edit-the-transcript-79a590aa126b\",\n        \"createdAt\": \"2023-11-28T15:49:13.511Z\",\n        \"updatedAt\": \"2023-11-28T15:55:58.403Z\",\n        \"__v\": 0,\n        \"password\": \"\"\n    }\n}"}],"_postman_id":"66c509ba-3742-42ff-ab8f-2807653e09cf"},{"name":"Check Embed","id":"a1921daa-8085-4e3b-a319-3a94877593a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/embed/:mediaId","description":"<p>Checks if an embed already exits and returns status and token id.</p>\n","urlObject":{"path":["v1","embed",":mediaId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"mediaId"}]}},"response":[{"id":"d78b06b7-c82f-4f8c-8a05-022ac8d37351","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/embed/:mediaId","host":["{{url}}"],"path":["v1","embed",":mediaId"],"variable":[{"key":"mediaId","value":"e4e3079e3da9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"e35e0b6d-b988-46a6-b366-c521983564d1"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1589"},{"key":"ETag","value":"W/\"635-6bEA2q1lb3/z32YKti1enDqYU+k\""},{"key":"Date","value":"Thu, 26 Aug 2021 21:28:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"meta\": {\n            \"backgroundImg\": \"\",\n            \"logo\": \"\",\n            \"primaryColor\": \"\",\n            \"isDataVizDownloadable\": true,\n            \"isSEOIndexing\": true,\n            \"isTitle\": true,\n            \"isDescription\": true,\n            \"callToActionButtons\": [],\n            \"features\": [\n                {\n                    \"name\": \"transcript\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"brands\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"cardinals\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"dates\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"geopolitical\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"keywords\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"locations\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"nationalities\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"ordinals\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"people\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"percentages\",\n                    \"isActive\": false\n                },\n                {\n                    \"name\": \"times\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"topics\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Absolutist Words\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Action Items\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Anger\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Causation\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Commercial Intent\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Communication\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Comparisons\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Contrast\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Editorializing\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Fillers\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Fundraising\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Future Focus\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Happiness\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Marketing\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Past Focus\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Present Focus\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Puffery\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Sales\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"Tentative\",\n                    \"isActive\": true\n                },\n                {\n                    \"name\": \"sentiment\",\n                    \"isActive\": true\n                }\n            ]\n        },\n        \"_id\": \"61280763ec13780791f004b2\",\n        \"mediaId\": \"e4e3079e3da9\",\n        \"token\": \"daily-standup-august-23-2021-239819a49b2d\",\n        \"privacyMode\": \"public\"\n    }\n}"}],"_postman_id":"a1921daa-8085-4e3b-a319-3a94877593a0"},{"name":"Check Embed Privacy Mode","id":"2586a39a-7d86-4a9b-a10c-8a7f7f16c341","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/embed/privacyState?token=","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint retrieves the privacy state of the application based on the provided token. It is primarily used to check whether the current privacy settings are secure.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{url}}/v1/embed/privacyState?token={token}</code></p>\n</li>\n</ul>\n<h4 id=\"query-parameters\">Query Parameters</h4>\n<ul>\n<li><code>token</code> (string): A unique token that identifies the user's session or request. This parameter is required for the request to be processed.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain the following structure:</p>\n<ul>\n<li><p><strong>status</strong> (string): A status message indicating the result of the request.</p>\n</li>\n<li><p><strong>data</strong> (object): An object containing the privacy state information.</p>\n<ul>\n<li><strong>isSecure</strong> (boolean): A boolean value indicating whether the privacy settings are secure (<code>true</code> or <code>false</code>).</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"data\": {\n    \"isSecure\": true\n  }\n}\n\n</code></pre>\n<p>This response indicates that the privacy settings are currently secure.</p>\n","urlObject":{"path":["v1","embed","privacyState"],"host":["{{url}}"],"query":[{"key":"token","value":""}],"variable":[]}},"response":[{"id":"70a1345c-bfd0-403c-8d66-d3542dc23121","name":"Check Embed Privacy Mode","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/embed/privacyState?token=portfolio-creation-for-software-developer-and-introduction-to-ai-ml-and-voice-applications-py8exhngbe","host":["{{url}}"],"path":["v1","embed","privacyState"],"query":[{"key":"token","value":"portfolio-creation-for-software-developer-and-introduction-to-ai-ml-and-voice-applications-py8exhngbe"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"6da62339-6ae2-4fdd-bcb7-6b9c039f4127"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"46"},{"key":"ETag","value":"W/\"2e-8FnkJXsu25YmWKlxjHOQV599nX4\""},{"key":"Date","value":"Mon, 14 Dec 2020 17:07:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"isSecure\": false\n    }\n}"}],"_postman_id":"2586a39a-7d86-4a9b-a10c-8a7f7f16c341"},{"name":"Get Iframe URL","id":"de358246-204d-4aa8-8127-f9acea1c1d2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/embed/iframe?mediaId=''","description":"<p>Get Embed Iframe and Page URL</p>\n<p>Either pass <code>mediaId</code> for individaul file.</p>\n<p>OR</p>\n<p>Pass <code>folderId</code> for a repository URLs.</p>\n","urlObject":{"path":["v1","embed","iframe"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Either Folder ID or Media ID</p>\n","type":"text/plain"},"key":"mediaId","value":"''"},{"disabled":true,"description":{"content":"<p>Either Folder ID or Media ID</p>\n","type":"text/plain"},"key":"folderId","value":""}],"variable":[]}},"response":[{"id":"6e4d5c01-841f-4a69-b8ed-4740546c27e0","name":"Get Iframe URL","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/embed/iframe/:mediaId","host":["{{url}}"],"path":["v1","embed","iframe",":mediaId"],"variable":[{"key":"mediaId","value":"b0b8de44cbb5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"b14bf092-0e0b-4acd-a99b-d6b976a1994f"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"ETag","value":"W/\"148-BBYq0/fgWdif8HzfRgbbGhuozIg\""},{"key":"Date","value":"Mon, 14 Dec 2020 17:08:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"iframe\": \"<iframe style=\\\"height: 800px !important; width: 960px !important;\\\" src=\\\"https://embed.speakai.co/iframe/how-to-find-your-first-analyzed-video-edq6fuxmemn\\\" frameborder=\\\"0\\\" scrolling=\\\"no\\\"></iframe>\",\n        \"page\": \"https://embed.speakai.co/how-to-find-your-first-analyzed-video-edq6fuxmemn\"\n    }\n}"}],"_postman_id":"de358246-204d-4aa8-8127-f9acea1c1d2d"}],"id":"8f6232f3-4f00-408d-8186-7a3e03d53f94","description":"<p>Embed Individual Media Player or the Folder (as repository) to make the insights, transcription and insights publicly visible or share with others.</p>\n","_postman_id":"8f6232f3-4f00-408d-8186-7a3e03d53f94","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Magic Prompt","item":[{"name":"All Prompts","id":"468ead75-ca40-40b6-a94a-6b2c30d2587a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/prompt","description":"<p>Get Magic Prompt History.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","prompt"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6c0e045e-bab4-4098-9cfb-27b159196d08","name":"List of Prompts","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/prompt"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"6bb1eccc-1b1d-4a52-812b-70b94b009eee"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"56053"},{"key":"ETag","value":"W/\"daf5-yGrGWpJS0puSwayrgmXAVdQSteI\""},{"key":"Date","value":"Mon, 21 Aug 2023 14:42:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"totalCount\": 2,\n        \"pages\": 1,\n        \"history\": [\n            {\n                \"id\": \"64b04ce76db5f05cba07a3ff\",\n                \"prompt\": \"Identify the top 5 action items to prioritize for maximum impact\",\n                \"answer\": \"\",\n                \"createdAt\": \"2023-07-13T19:13:43.953Z\",\n                \"assistantType\": \"general\",\n                \"mediaName\": \"How To Upload A Video File On Desktop\",\n                \"mediaIds\": [\n                    \"de737309a4e9\"\n                ],\n                \"state\": \"failed\",\n                \"link\": \"https://app.speakai.co/media/insight/MEDIA_URL\"\n            },\n            {\n                \"id\": \"64b04ccc54adf95c9c5ca117\",\n                \"prompt\": \"Summarize the main discussion points in a concise bullet-point list\",\n                \"answer\": \"- Sign into your account to reach the dashboard area.\\n- Click on the upload button to reach the upload screen.\\n- Choose the file you want to upload and drop it into the system.\\n- Review the duration, amount, and status of the video.\\n- Choose whether you want insights and transcription or just the transcript.\\n- You have the option to edit the name of the video and choose different languages.\\n- Confirm and pay for the upload, with the total calculated for you.\\n- Payment options include credit card or your speak balance.\\n- After confirming the transaction, wait for the system to prepare your insights.\\n- Go to your video/audio page to see the uploaded video.\\n- The system will analyze the video and provide insights and transcription.\\n- You can then manipulate and play with the video in various ways.\",\n                \"createdAt\": \"2023-07-13T19:13:16.925Z\",\n                \"assistantType\": \"general\",\n                \"mediaName\": \"How To Upload A Video File On Desktop\",\n                \"mediaIds\": [\n                    \"de737309a4e9\"\n                ],\n                \"state\": \"completed\",\n                \"link\": \"https://app.speakai.co/media/insight/MEDIA_URL\"\n            }\n        ]\n    }\n}"}],"_postman_id":"468ead75-ca40-40b6-a94a-6b2c30d2587a"},{"name":"Ask Magic Prompt (Beta)","id":"fad5f220-c0c2-4752-ae7f-c8cd4777d8d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"prompt\": \"Tell me how my speaking pace was. Did I speak too fast, at a good pace or too slowly? A good pace is between 140 and 170 words per minute. Less than 140 words per minute is too slow and more than 170\",\n    \"mediaIds\": [\n        \"923884998a91\"\n    ],\n    \"assistantType\": \"general\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/prompt","description":"<p>Magic Prompt API allows you to run your own prompt via API.</p>\n<p><code>Prompt</code> (<strong>required</strong>) - It will be your query - please be as descriptive as possible to get an accurate output</p>\n<p><code>assistantType</code> (<strong>default: general</strong>) - Allow values are - general, researcher, marketer, sales, recruiter</p>\n<p><code>mediaIds</code> (<strong>required</strong>) - You can pass multiple <code>mediaIds</code> to run your prompt OR pass a single mediaId in an array</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","prompt"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0235c6f5-26a4-4fe4-a265-41ea0ec71de1","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"prompt\": \"Summarize the main discussion points in a concise bullet-point list and provide more context in a table format with next action items in markdown format and with timestamp.\",\n    \"mediaIds\": [\n        \"de737309a4e9\"\n    ],\n    \"assistantType\": \"general\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/prompt"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"2396c1b4-9980-4e9b-8398-e4b1691fb169"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Embedder-Policy","value":"require-corp"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-RateLimit-Limit","value":"15"},{"key":"X-RateLimit-Remaining","value":"14"},{"key":"Date","value":"Wed, 04 Oct 2023 14:45:46 GMT"},{"key":"X-RateLimit-Reset","value":"1696430805"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1306"},{"key":"ETag","value":"W/\"51a-ob51kvcKuZx9iB7BPjeDJiUP30U\""},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"state\": \"completed\",\n        \"answer\": \"Main discussion points:\\n\\n- The video demonstrates how to upload a video file through Speak.\\n- The process involves signing in, accessing the dashboard, and hitting the upload button.\\n- Users can choose to include insights and transcription or just the transcript.\\n- The name and language of the video can be edited.\\n- Payment options include credit card or using the Speak balance.\\n- After confirming the payment, the video is analyzed and insights and transcription are generated.\\n- Users can manipulate and play with the video and its content.\\n\\nNext action items:\\n\\n| Action Item | Description | Timestamp |\\n|-------------|-------------|-----------|\\n| Sign in to Speak | Access the dashboard | 0:00:00 |\\n| Hit the upload button | Begin the file upload process | 0:00:00 |\\n| Choose desired options | Select insights and transcription preferences | 0:00:26.83 |\\n| Edit video details | Modify the name and language of the video | 0:00:26.83 |\\n| Confirm and pay | Select payment method and complete the transaction | 0:01:00.46 |\\n| Access video page | Go to the video page to view the analysis | 0:01:03.8 |\\n| Manipulate and play with content | Explore the insights and transcription | 0:01:03.8 |\",\n        \"totalMedia\": 1,\n        \"references\": []\n    }\n}"}],"_postman_id":"fad5f220-c0c2-4752-ae7f-c8cd4777d8d5"}],"id":"e469eeff-7223-4bad-850c-fb78496e56fa","description":"<p>Fetch all your Speak Magic Prompt Responses.</p>\n","_postman_id":"e469eeff-7223-4bad-850c-fb78496e56fa","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Meeting Assistant Events","item":[{"name":"Events List","id":"806d3bc2-c0f8-4f66-91ea-d2df87eddfad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/meeting-assistant/events?platformType=&meetingStatus=&page=0&pageSize=25","description":"<p>Get All the Meeting Assistants Events.</p>\n<p>You can have more flexibily by passing query params.</p>\n<p><code>page</code> - Page number. Default is 0.</p>\n<p><code>pageSize</code> - Total records per page. Default is 25.</p>\n<p><code>platformType</code> - Default value is <code>\"\"</code></p>\n<p>Please ensure to pass the correct platformType from the list below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>googleMeet\nzoom\nmicrosoftTeams\nwebex\n\n</code></pre><p><code>meetingStatus</code> - Default value is <code>\"\"</code></p>\n<p>Please ensure to pass the correct meetingStatus from the list below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>willJoin\nscheduled\ncancelled\nready\njoiningCall\ninCallRecording\ncallEnded\n\n</code></pre>","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","meeting-assistant","events"],"host":["{{url}}"],"query":[{"key":"platformType","value":""},{"key":"meetingStatus","value":""},{"key":"page","value":"0"},{"key":"pageSize","value":"25"}],"variable":[]}},"response":[{"id":"387629e3-2302-45b7-8a4e-e03349a3e0ca","name":"Events List","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/meeting-assistant/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"80928c30-3412-46d3-baea-267269e7a716"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"51544"},{"key":"ETag","value":"W/\"c958-efX1YVoEkRfRjAQKkzRv2SLbRns\""},{"key":"Date","value":"Tue, 19 Dec 2023 20:23:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"totalCount\": 1,\n        \"events\": [\n            {\n                \"source\": \"instant\",\n                \"_id\": \"64d2633e0d3c560cd10c73fd\",\n                \"currentStatus\": \"callEnded\",\n                \"companyId\": \"5e21xxxxx772xxxxxxx\",\n                \"userId\": \"5d0xxxxxxbca272xxxxxx\",\n                \"platform\": \"zoom\",\n                \"title\": \"Speak Ai Test Meeting\",\n                \"meetingURL\": \"{{vault:zoom-meeting-link}}\",\n                \"startTime\": \"2023-08-08T15:45:41.629Z\",\n                \"meetingAssistantEventId\": \"84f8f7d1cb13\",\n                \"attendees\": [],\n                \"history\": [\n                    {\n                        \"status\": \"joiningCall\",\n                        \"createdAt\": \"2023-08-08T15:46:10.004Z\"\n                    },\n                    {\n                        \"status\": \"inCallNotRecording\",\n                        \"createdAt\": \"2023-08-08T15:46:29.557Z\"\n                    },\n                    {\n                        \"status\": \"inCallRecording\",\n                        \"createdAt\": \"2023-08-08T15:46:29.636Z\"\n                    },\n                    {\n                        \"status\": \"callEnded\",\n                        \"createdAt\": \"2023-08-08T16:31:14.600Z\"\n                    }\n                ],\n                \"createdAt\": \"2023-08-08T15:46:06.570Z\",\n                \"updatedAt\": \"2023-08-08T16:31:15.046Z\",\n                \"__v\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"806d3bc2-c0f8-4f66-91ea-d2df87eddfad"},{"name":"Schedule Event","id":"7ee226a1-2271-48b2-b07b-27506ca4269b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    // \"meetingDate\": \"2023-12-20T13:30:35.041Z\",\n    \"meetingLanguage\": \"en-US\",\n    \"meetingURL\": \"https://meet.google.com/ctg-wcqv-ftz\",\n    \"title\": \"Meeting Title\",\n    \"tags\": [\"meeting-assistant\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/meeting-assistant/events/schedule","description":"<h3 id=\"schedule-meeting-event\">Schedule Meeting Event</h3>\n<p>This endpoint allows you to schedule a meeting event by providing the meeting details.</p>\n<p><strong>Request Body</strong></p>\n<ul>\n<li><p><code>meetingDate</code> (optional): The date and time for the scheduled meeting. If not provided, the meeting will be joined instantly.</p>\n</li>\n<li><p><code>meetingLanguage</code> (optional): The language for the meeting. Default is en-US.</p>\n</li>\n<li><p><code>meetingURL</code> (required): The URL of the meeting.</p>\n</li>\n<li><p><code>title</code> (required): The title of the meeting.</p>\n</li>\n<li><p><code>tags</code> (optional): You can pass comma seprated values to store as tags for your media files.</p>\n</li>\n</ul>\n<p><strong>Response</strong></p>\n<ul>\n<li><p><code>status</code>: The status of the response.</p>\n</li>\n<li><p><code>data</code>: An object containing details of the scheduled meeting event, including the company ID, user ID, meeting assistant ID, platform, source, meeting URL, start time, title, meeting language, current status, event ID, attendees, history, chat messages, creation and update timestamps, and version.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","meeting-assistant","events","schedule"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"88f5116a-55f2-4cc1-8fb0-9e03ab9ad1cd","name":"Schedule Event","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    //\"meetingDate\": \"2023-12-18T13:30:35.041Z\",\n    \"meetingLanguage\": \"en-US\",\n    \"meetingURL\": \"https://meet.google.com/ctg-wcqv-ftz\",\n    \"title\": \"Meeting Title\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/meeting-assistant/events/schedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"bb141f8d-11fc-49ad-8a43-0039632e3ad3"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"547"},{"key":"ETag","value":"W/\"223-Q7ge4bxZQABd1N/VnZhb2L6KDpc\""},{"key":"Date","value":"Tue, 19 Dec 2023 20:20:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"companyId\": \"5e28dd2d77242c222222222\",\n        \"userId\": \"5d03a9d225d42a272e9c229\",\n        \"platform\": \"googleMeet\",\n        \"source\": \"instant\",\n        \"meetingURL\": \"https://meet.google.com/ctg-wcqv-xxxx\",\n        \"startTime\": \"2023-12-19T20:20:06.823Z\",\n        \"title\": \"Meeting Title\",\n        \"meetingLanguage\": \"en-US\",\n        \"currentStatus\": \"scheduled\",\n        \"_id\": \"6581faf3e7435ce0e78ad6b0\",\n        \"meetingAssistantEventId\": \"89c69e5afcc3\",\n        \"attendees\": [],\n        \"history\": [],\n        \"createdAt\": \"2023-12-19T20:20:03.208Z\",\n        \"updatedAt\": \"2023-12-19T20:20:03.208Z\",\n        \"__v\": 0,\n        \"message\": \"Meeting scheduled Successfully\"\n    }\n}"}],"_postman_id":"7ee226a1-2271-48b2-b07b-27506ca4269b"},{"name":"Remove Assistant from Meeting","id":"a0423d81-c9c4-4ff0-a699-927a292e083d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/meeting-assistant/events/remove?meetingAssistantEventId=0c982483505f","description":"<p>Remove your Assistant from the meeting.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","meeting-assistant","events","remove"],"host":["{{url}}"],"query":[{"description":{"content":"<p>required field</p>\n","type":"text/plain"},"key":"meetingAssistantEventId","value":"0c982483505f"}],"variable":[]}},"response":[{"id":"a032c831-6248-44e9-a49e-a4dba0277b41","name":"Remove a Assistant From Meeting","originalRequest":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/meeting-assistant/events/remove?meetingAssistantEventId=0c982483505f","host":["{{url}}"],"path":["v1","meeting-assistant","events","remove"],"query":[{"key":"meetingAssistantEventId","value":"0c982483505f","description":"required field"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"ac7ee146-3a48-42f6-991a-b545ff352a35"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"96"},{"key":"ETag","value":"W/\"60-yvtjdw/mIqeZ2UhjQ3He6qaAsPY\""},{"key":"Date","value":"Tue, 19 Dec 2023 20:29:54 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"status\": \"success\",\n        \"data\": \"Meeting Assistant Removed Successfully\"\n    }\n}"}],"_postman_id":"a0423d81-c9c4-4ff0-a699-927a292e083d"},{"name":"Delete Scheduled Assistant","id":"52aaa59e-0e14-4f37-9e29-c0986c497c3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/meeting-assistant/events?meetingAssistantEventId=7c583b090b1f","description":"<p>Delete <code>scheduled</code> assistant for an event.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","meeting-assistant","events"],"host":["{{url}}"],"query":[{"description":{"content":"<p>required field</p>\n","type":"text/plain"},"key":"meetingAssistantEventId","value":"7c583b090b1f"}],"variable":[]}},"response":[{"id":"2c7421aa-7aab-4563-86db-57dfd4e5e7de","name":"Delete a Scheduled Meeting Assistant","originalRequest":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/meeting-assistant/events?meetingAssistantEventId=7c583b090b1f","host":["{{url}}"],"path":["v1","meeting-assistant","events"],"query":[{"key":"meetingAssistantEventId","value":"7c583b090b1f","description":"required field"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"e291c54f-1538-47ec-8951-c19e48773fd2"},{"key":"Access-Control-Allow-Headers","value":"Origin, x-speakai-key, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token, x-speakai-embed-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"},{"key":"Cross-Origin-Resource-Policy","value":"same-origin"},{"key":"Origin-Agent-Cluster","value":"?1"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"84"},{"key":"ETag","value":"W/\"54-N8C4O1nHU/iw95oGG7UfSFpyBas\""},{"key":"Date","value":"Tue, 19 Dec 2023 20:28:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"status\": \"success\",\n        \"data\": \"Event Deleted Successfully\"\n    }\n}"}],"_postman_id":"52aaa59e-0e14-4f37-9e29-c0986c497c3e"}],"id":"53946c86-9aa0-4174-a57d-d1e6887c9e9f","description":"<p>Manage Meeting Assistant Events.</p>\n<p>Fetch all your scheduled, complete or pending meeting assistant events.</p>\n","_postman_id":"53946c86-9aa0-4174-a57d-d1e6887c9e9f","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Fields","item":[{"name":"Get All Fields","id":"ea9adba2-60b3-4256-983a-0a7b65793a13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/fields","description":"<h3 id=\"retrieve-fields\">Retrieve Fields</h3>\n<p>This endpoint makes an HTTP GET request to retrieve a list of fields.</p>\n<h4 id=\"request\">Request</h4>\n<p>The request does not require a request body. It simply makes a GET request to the endpoint <code>{{url}}/v1/fields</code>.</p>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON object representing the list of fields. Below is a JSON schema representing the structure of the response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"fields\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"fieldId\": {\n            \"type\": \"string\"\n          },\n          \"name\": {\n            \"type\": \"string\"\n          },\n          \"type\": {\n            \"type\": \"string\"\n          },\n          \"description\": {\n            \"type\": \"string\"\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n<p>The <code>fields</code> array contains objects with <code>fieldId</code>, <code>name</code>, <code>type</code>, and <code>description</code> properties, representing the details of each field.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","fields"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6fffce76-6ccd-42bd-888d-99ed025c9987","name":"Get All Fields","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/fields"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ea9adba2-60b3-4256-983a-0a7b65793a13"},{"name":"Create Field","id":"b942e104-e704-4633-b3de-8c22b8f75c8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Currency\",\n    \"name\": \"Currency\",\n    \"type\": \"currency\",\n    \"privacyMode\": \"public\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/fields","description":"<h3 id=\"add-field\">Add Field</h3>\n<p>This endpoint allows you to add a new field.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>description</code> (string, required): A description of the field.</p>\n</li>\n<li><p><code>name</code> (string, required): The name of the field.</p>\n</li>\n<li><p><code>type</code> (string, required): The type of the field.</p>\n</li>\n<li><p><code>privacyMode</code> (string, required): The privacy mode of the field. \"public\" or \"private\".</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the details of the newly added field.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","fields"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a521638f-eb65-4db7-b5f3-a7f57d25bc76","name":"Create Field","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Currency\",\n    \"name\": \"Currency\",\n    \"type\": \"currency\",\n    \"privacyMode\": \"public\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/fields"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b942e104-e704-4633-b3de-8c22b8f75c8f"},{"name":"Update Multiple Fields","id":"f4b01ecc-4525-4ed2-afe4-0965c9220b34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"folderId\": \"\",\n    // \"mediaIds\": [],\n    \"fields\": [\n        {\n            \"id\": \"\", // Ensure you have the correct fieldId by using /Get All fields\n            \"vale\": \"\" // The value you want to add or overwrite\n        },\n        {\n            \"id\": \"\",\n            \"vale\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/fields/multi","description":"<h3 id=\"add-field\">Add Field</h3>\n<p>This endpoint allows you to add a new field to a specified folder.</p>\n<h4 id=\"request-method\">Request Method</h4>\n<ul>\n<li><strong>POST</strong></li>\n</ul>\n<h4 id=\"endpoint\">Endpoint</h4>\n<ul>\n<li><code>{{url}}/v1/fields/multi</code></li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><code>folderId</code> (string, optional): The identifier of the folder where the field will be updated.</p>\n</li>\n<li><p><code>mediaIds</code> (array optional): The identifier of the multiple media files where the fields will be updated.</p>\n</li>\n<li><p><code>fields</code> (array, required): An array of field objects to be added. Each field object must contain:</p>\n<ul>\n<li><p><code>id</code> (string, required): The unique identifier for the field. Use <code>Get All Fields</code> API to get the <code>fieldId</code></p>\n</li>\n<li><p><code>vale</code> (string, required): The value associated with the field. (Note: There seems to be a typo in the key; it should likely be <code>value</code>.)</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the details of the newly added field, including its unique identifier and any other relevant information about the field.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","fields","multi"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"46b2f0ff-ea81-4547-b53a-43218771d4c5","name":"Update Multiple Fields","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"folderId\": \"\",\n    \"mediaIds\": [],\n    \"fields\": [\n        {\n            \"id\": \"\",\n            \"vale\": \"\"\n        },\n        {\n            \"id\": \"\",\n            \"vale\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/fields"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f4b01ecc-4525-4ed2-afe4-0965c9220b34"},{"name":"Update Field By Id","id":"eb0423c0-a514-4665-a1ac-65745a168b5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Currency Description Updated\",\n    \"name\": \"New Updated Name\",\n    \"privacyMode\": \"public\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/fields/:id","description":"<h3 id=\"update-field-information\">Update Field Information</h3>\n<p>This endpoint allows you to update the information of a specific field.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>description</code> (string, required): The updated description of the field.</p>\n</li>\n<li><p><code>name</code> (string, required): The new name of the field.</p>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"description\": \"Currency Description Updated\",\n    \"name\": \"New Updated Name\",\n    \"privacyMode\": \"public\"\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p><code>status</code> (string): The status of the response.</p>\n</li>\n<li><p><code>data</code> (object): An object containing the updated field information.</p>\n<ul>\n<li><p><code>id</code> (string): The ID of the field.</p>\n</li>\n<li><p><code>name</code> (string): The name of the field.</p>\n</li>\n<li><p><code>description</code> (string): The description of the field.</p>\n</li>\n<li><p><code>type</code> (string): The type of the field.</p>\n</li>\n<li><p><code>isActive</code> (boolean): Indicates if the field is active.</p>\n</li>\n<li><p><code>privacyMode</code> (string): The privacy mode of the field.</p>\n</li>\n<li><p><code>createdAt</code> (string): The date and time of creation.</p>\n</li>\n<li><p><code>updatedAt</code> (string): The date and time of the last update.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": \"\",\n    \"data\": {\n        \"id\": \"\",\n        \"name\": \"\",\n        \"description\": \"\",\n        \"type\": \"\",\n        \"isActive\": true,\n        \"privacyMode\": \"\",\n        \"createdAt\": \"\",\n        \"updatedAt\": \"\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","fields",":id"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"0172d3abbdd1","key":"id"}]}},"response":[{"id":"fe3fe350-cb20-4e8f-bae2-f1f573544942","name":"Update Field By Id","originalRequest":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Currency Description Updated\",\n    \"name\": \"New Updated Name\",\n    \"privacyMode\": \"public\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/fields/:id","host":["{{url}}"],"path":["v1","fields",":id"],"variable":[{"key":"id","value":"0172d3abbdd1"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eb0423c0-a514-4665-a1ac-65745a168b5e"}],"id":"59a9af97-9205-4c09-8aaa-c31df1054518","description":"<p>Manage Fields.</p>\n","_postman_id":"59a9af97-9205-4c09-8aaa-c31df1054518","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Automations","item":[{"name":"Get Automations","event":[{"listen":"test","script":{"id":"67c486f5-3a4c-4e62-a53a-9218e13ebc20","exec":["// Test to check if the response status is 'success'","pm.test(\"Response status is 'success'\", function () {","    pm.expect(pm.response.json().status).to.equal('success');","});",""],"type":"text/javascript","packages":{}}}],"id":"6caa888c-2cc0-4c86-8de0-8f2c9ce6da8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/automations","description":"<p>The endpoint retrieves a list of automations via an HTTP GET request to {{url}}/v1/automations.</p>\n<h3 id=\"response\">Response</h3>\n<p>The response will be in the form of a JSON schema, with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"data\": {\n    \"totalCount\": 0,\n    \"automationList\": [\n      {\n        \"trigger\": {\n          \"folderIds\": [\n            {\n              \"name\": \"\",\n              \"folderId\": \"\"\n            }\n          ],\n          \"values\": [],\n          \"type\": \"\"\n        },\n        \"action\": {\n          \"magicPrompt\": {\n            \"title\": \"\",\n            \"assistantType\": \"\",\n            \"prompt\": \"\"\n          },\n          \"type\": \"\"\n        },\n        \"name\": \"\",\n        \"description\": \"\",\n        \"runType\": \"\",\n        \"isActive\": true,\n        \"automationId\": \"\",\n        \"actionHistory\": [\n          {\n            \"type\": \"\"\n          }\n        ],\n        \"createdAt\": \"\",\n        \"updatedAt\": \"\",\n        \"history\": 0\n      }\n    ]\n  }\n}\n\n</code></pre>\n<p>The response will have a status code of 200 upon successful retrieval of the automation list.</p>\n<p>For related responses from other endpoints of this API, the data model will be largely similar, with the addition of \"email\", \"accessToken\", and \"refreshToken\" fields in the \"data\" object, and a status code of 200.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","automations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"51f8b4ec-7642-459a-a174-217a99739d28","name":"Get Automations","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/automations"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6caa888c-2cc0-4c86-8de0-8f2c9ce6da8c"},{"name":"Get Automation","id":"9883e39f-c94b-4b23-a307-d04b53f43015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/automations/:automationId","description":"<p>The endpoint makes an HTTP GET request to retrieve a list of automations from the specified URL.</p>\n<p>The response of this request can be documented as a JSON schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"status\": {\n      \"type\": \"string\"\n    },\n    \"data\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"totalCount\": {\n          \"type\": \"integer\"\n        },\n        \"automationList\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"trigger\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"type\": {\n                    \"type\": \"string\"\n                  },\n                  \"folderIds\": {\n                    \"type\": \"array\",\n                    \"items\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"name\": {\n                          \"type\": \"string\"\n                        },\n                        \"folderId\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    }\n                  },\n                  \"values\": {\n                    \"type\": \"array\"\n                  }\n                }\n              },\n              \"action\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"magicPrompt\": {\n                    \"type\": \"object\",\n                    \"properties\": {\n                      \"title\": {\n                        \"type\": \"string\"\n                      },\n                      \"assistantType\": {\n                        \"type\": \"string\"\n                      },\n                      \"assistantTemplateId\": {\n                        \"type\": \"string\"\n                      },\n                      \"prompt\": {\n                        \"type\": \"string\"\n                      }\n                    }\n                  },\n                  \"type\": {\n                    \"type\": \"string\"\n                  }\n                }\n              },\n              \"name\": {\n                \"type\": \"string\"\n              },\n              \"description\": {\n                \"type\": \"string\"\n              },\n              \"runType\": {\n                \"type\": \"string\"\n              },\n              \"isActive\": {\n                \"type\": \"boolean\"\n              },\n              \"automationId\": {\n                \"type\": \"string\"\n              },\n              \"actionHistory\": {\n                \"type\": \"array\",\n                \"items\": {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"type\": {\n                      \"type\": \"string\"\n                    }\n                  }\n                }\n              },\n              \"createdAt\": {\n                \"type\": \"string\"\n              },\n              \"updatedAt\": {\n                \"type\": \"string\"\n              },\n              \"history\": {\n                \"type\": \"integer\"\n              }\n            }\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","automations",":automationId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"97c57afd7ff1","key":"automationId"}]}},"response":[{"id":"c0c305de-0760-4966-a6e3-d7df88b3d2b0","name":"Get Automation","originalRequest":{"method":"GET","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/automations/:automationId","host":["{{url}}"],"path":["v1","automations",":automationId"],"variable":[{"key":"automationId","value":"97c57afd7ff1"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9883e39f-c94b-4b23-a307-d04b53f43015"},{"name":"Delete Automation","id":"f5540761-ff60-4cb5-83fe-366a0ed17044","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/automations/:automationId","description":"<h3 id=\"delete-automation\">DELETE Automation</h3>\n<p>This endpoint is used to delete a specific automation identified by its unique <code>automationId</code>. By sending a DELETE request to this endpoint, you can remove an automation from the system.</p>\n<h4 id=\"request-format\">Request Format</h4>\n<ul>\n<li><p><strong>Method</strong>: DELETE</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{url}}/v1/automations/:automationId</code></p>\n</li>\n<li><p><strong>Path Parameter</strong>:</p>\n<ul>\n<li><code>automationId</code> (string): The unique identifier of the automation that you wish to delete. This parameter is required and should be included in the URL.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>Upon successful deletion of the automation, the server will respond with a confirmation message. The expected response is typically structured as follows:</p>\n<ul>\n<li><p><strong>Status Code</strong>: <code>204 No Content</code></p>\n<ul>\n<li>Indicates that the request was successful and there is no additional content to send in the response body.</li>\n</ul>\n</li>\n</ul>\n<p>In case of an error, the server may return a different status code along with an error message detailing the issue encountered.</p>\n<p>Ensure to handle responses appropriately based on the status code received.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","automations",":automationId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":null,"key":"automationId"}]}},"response":[{"id":"4947bcc4-fe27-4d89-8974-0c6bcfd11881","name":"Delete Automation","originalRequest":{"method":"DELETE","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/automations/:automationId","host":["{{url}}"],"path":["v1","automations",":automationId"],"variable":[{"key":"automationId","value":null}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f5540761-ff60-4cb5-83fe-366a0ed17044"},{"name":"Create Automation","event":[{"listen":"test","script":{"id":"cff042d0-d465-43a7-b7ca-3930a881d4a2","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"017d96de-9ac1-4b3e-826c-7fca8605ff2d","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b7af91df-8da2-477e-bab2-5c62d2c7a08b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Daily Marketing Report\",\n  \"description\": \"Generate daily marketing insights from campaign data\",\n  \"runType\": \"schedule\",\n  \"schedule\": {\n    \"timePeriod\": \"yesterday\",\n    \"repeatAt\": \"08:00\"\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"marketing-data\", \"campaign-reports\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Marketing Daily Digest\",\n      \"assistantType\": \"marketer\",\n      \"prompt\": \"Analyze yesterday's marketing data and provide: 1) Top performing campaigns, 2) Key metrics summary, 3) Trends identified, 4) Recommendations for today\",\n      \"assistantTemplateId\": \"marketing-template-001\"\n    }\n  },\n  \"fieldId\": \"marketing-field-123\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/automations/","description":"<p>The API request creates an automation by sending an HTTP POST request to the specified endpoint. The request body is in JSON format and includes the name, description, runType, trigger, and action details. The trigger type is \"folders\" with specific folder IDs, and the action type is \"magic-prompt\" with associated details like title, assistantType, prompt, and assistantTemplateId.</p>\n<p>The last call to this request used the following payload with the raw request body type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"First Automation\",\n  \"description\": \"Test\",\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"prompt\": \"Summarize my meetings\",\n      \"assistantType\": \"general\"\n    }\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"3711858e52a6\"]\n  }\n}\n\n</code></pre>\n<p>The response to the last execution returned a 200 status code with the following content in JSON format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"\",\n  \"data\": {\n    \"automationId\": \"\",\n    \"message\": \"\"\n  }\n}\n\n</code></pre>\n<p>Additionally, related responses from other endpoints of this API also returned 200 status codes with similar data models, including email, access token, refresh token, totalCount, automation list, and trigger details.</p>\n<p>Please note that the specific values (such as automationId, email, accessToken, refreshToken, folderIds, etc.) have been intentionally masked for privacy.</p>\n<h3 id=\"1-instant-automation-with-magic-prompt-action\">1. <strong>Instant Automation with Magic Prompt Action</strong></h3>\n<p><strong>Body (JSON):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Instant Folder Analysis\",\n  \"description\": \"Automatically analyze documents in specific folders using AI assistant\",\n  \"runType\": \"instant\",\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"folder123\", \"folder456\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Document Analysis\",\n      \"assistantType\": \"researcher\",\n      \"prompt\": \"Analyze the document content and provide key insights, main topics, and actionable recommendations.\",\n      \"assistantTemplateId\": \"template123\"\n    }\n  },\n  \"fieldId\": \"field789\"\n}\n\n</code></pre>\n<h3 id=\"2-scheduled-automation-with-translation-action\">2. <strong>Scheduled Automation with Translation Action</strong></h3>\n<p><strong>Method:</strong> <code>POST</code></p>\n<p><strong>Body (JSON):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Weekly Document Translation\",\n  \"description\": \"Translate documents in selected folders every week\",\n  \"runType\": \"schedule\",\n  \"schedule\": {\n    \"timePeriod\": \"last7days\",\n    \"repeatAt\": \"09:00\"\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"folder789\", \"folder101\"]\n  },\n  \"action\": {\n    \"type\": \"translation\",\n    \"translation\": {\n      \"targetLanguage\": \"spanish\"\n    }\n  }\n}\n\n</code></pre>\n<h3 id=\"3-instant-automation-with-custom-magic-prompt\">3. <strong>Instant Automation with Custom Magic Prompt</strong></h3>\n<p><strong>Method:</strong> <code>POST</code></p>\n<p><strong>Body (JSON):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Sales Lead Analysis\",\n  \"description\": \"Analyze potential leads and generate sales insights\",\n  \"runType\": \"instant\",\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"leads-folder\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Sales Intelligence\",\n      \"assistantType\": \"sales\",\n      \"prompt\": \"Review the lead information and provide: 1) Lead quality score (1-10), 2) Key pain points identified, 3) Recommended follow-up strategy, 4) Potential deal size estimate\",\n      \"assistantTemplateId\": \"\"\n    }\n  }\n}\n\n</code></pre>\n<h3 id=\"4-scheduled-automation-with-marketing-analysis\">4. <strong>Scheduled Automation with Marketing Analysis</strong></h3>\n<p><strong>Method:</strong> <code>POST</code></p>\n<p><strong>Body (JSON):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Daily Marketing Report\",\n  \"description\": \"Generate daily marketing insights from campaign data\",\n  \"runType\": \"schedule\",\n  \"schedule\": {\n    \"timePeriod\": \"yesterday\",\n    \"repeatAt\": \"08:00\"\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"marketing-data\", \"campaign-reports\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Marketing Daily Digest\",\n      \"assistantType\": \"marketer\",\n      \"prompt\": \"Analyze yesterday's marketing data and provide: 1) Top performing campaigns, 2) Key metrics summary, 3) Trends identified, 4) Recommendations for today\",\n      \"assistantTemplateId\": \"marketing-template-001\"\n    }\n  },\n  \"fieldId\": \"marketing-field-123\"\n}\n\n</code></pre>\n<h2 id=\"available-enum-values\"><strong>Available Enum Values:</strong></h2>\n<p><strong>Run Types:</strong></p>\n<ul>\n<li><p><code>\"instant\"</code> - Executes immediately when triggered</p>\n</li>\n<li><p><code>\"schedule\"</code> - Executes based on schedule configuration</p>\n</li>\n</ul>\n<p><strong>Trigger Types:</strong></p>\n<ul>\n<li><p><code>\"folders\"</code> - Triggered by folder changes</p>\n</li>\n<li><p><code>\"tags\"</code> - Triggered by tag changes</p>\n</li>\n<li><p><code>\"keywords\"</code> - Triggered by keyword matches</p>\n</li>\n</ul>\n<p><strong>Action Types:</strong></p>\n<ul>\n<li><p><code>\"magic-prompt\"</code> - AI-powered content analysis</p>\n</li>\n<li><p><code>\"translation\"</code> - Document translation</p>\n</li>\n</ul>\n<p><strong>Assistant Types (for magic-prompt):</strong></p>\n<ul>\n<li><code>\"researcher\"</code>, <code>\"marketer\"</code>, <code>\"sales\"</code>, <code>\"general\"</code>, <code>\"recruiter\"</code>, <code>\"custom\"</code></li>\n</ul>\n<p><strong>Schedule Time Periods:</strong></p>\n<ul>\n<li><code>\"today\"</code>, <code>\"yesterday\"</code>, <code>\"last7days\"</code>, <code>\"last14days\"</code>, <code>\"thisWeek\"</code></li>\n</ul>\n<p>These examples cover both instant and scheduled automation types with different actions. Make sure to replace the placeholder values (folder IDs, template IDs, etc.) with actual values from your system.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","automations",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8ac7d383-62fc-48c6-a69c-3b1f7cceca5c","name":"Create Automation","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Daily Marketing Report\",\n  \"description\": \"Generate daily marketing insights from campaign data\",\n  \"runType\": \"schedule\",\n  \"schedule\": {\n    \"timePeriod\": \"yesterday\",\n    \"repeatAt\": \"08:00\"\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"marketing-data\", \"campaign-reports\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Marketing Daily Digest\",\n      \"assistantType\": \"marketer\",\n      \"prompt\": \"Analyze yesterday's marketing data and provide: 1) Top performing campaigns, 2) Key metrics summary, 3) Trends identified, 4) Recommendations for today\",\n      \"assistantTemplateId\": \"marketing-template-001\"\n    }\n  },\n  \"fieldId\": \"marketing-field-123\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/automations/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b7af91df-8da2-477e-bab2-5c62d2c7a08b"},{"name":"Update Automation","id":"9bbde31f-3bc4-40ee-94c8-7403ccaaf840","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Updated Marketing Analysis\",\n  \"description\": \"Enhanced automation with schedule and new assistant type\",\n  \"isActive\": true,\n  \"runType\": \"schedule\",\n  \"schedule\": {\n    \"timePeriod\": \"last7days\",\n    \"repeatAt\": \"09:30\"\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"folder123\", \"folder456\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Weekly Marketing Report\",\n      \"assistantType\": \"marketer\",\n      \"prompt\": \"Analyze marketing data and provide insights, trends, and recommendations\",\n      \"assistantTemplateId\": \"marketing-template-001\"\n    }\n  },\n  \"fieldId\": \"marketing-field-123\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/automations/:automationId","description":"<h2 id=\"update-automation\">Update Automation</h2>\n<p><strong>Body (JSON):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"Updated Marketing Analysis\",\n  \"description\": \"Enhanced automation with schedule and new assistant type\",\n  \"isActive\": true,\n  \"runType\": \"schedule\",\n  \"schedule\": {\n    \"timePeriod\": \"last7days\",\n    \"repeatAt\": \"09:30\"\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"folder123\", \"folder456\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Weekly Marketing Report\",\n      \"assistantType\": \"marketer\",\n      \"prompt\": \"Analyze marketing data and provide insights, trends, and recommendations\",\n      \"assistantTemplateId\": \"marketing-template-001\"\n    }\n  },\n  \"fieldId\": \"marketing-field-123\"\n}\n\n</code></pre>\n<h2 id=\"key-points\"><strong>Key Points:</strong></h2>\n<p>• <strong>Path Parameter Required:</strong> <code>automationId</code> must be included in the URL path<br />• <strong>Partial Updates Supported:</strong> You can update only specific fields, not all fields are required<br />• <strong>Run Type Changes:</strong> When changing to <code>\"schedule\"</code>, include the <code>schedule</code> object with <code>timePeriod</code> and <code>repeatAt</code><br />• <strong>Trigger &amp; Action Required:</strong> Both <code>trigger</code> and <code>action</code> objects appear to be required in the request body<br />• <strong>Assistant Type :</strong> The <code>assistantType</code> is for custom Assistant selected<br />• <strong>Status Control:</strong> Use <code>isActive: true/false</code> to enable or disable the automation<br />• <strong>Optional Fields:</strong> <code>fieldId</code> is optional and only used with magic-prompt actions<br />• <strong>Schedule Time Periods:</strong> Available options - <code>\"today\"</code>, <code>\"yesterday\"</code>, <code>\"last7days\"</code>, <code>\"last14days\"</code>, <code>\"thisWeek\"</code><br />• <strong>Action Types:</strong> Support for <code>\"magic-prompt\"</code> and <code>\"translation\"</code> action types<br />• <strong>Trigger Types:</strong> Support for <code>\"folders\"</code>, <code>\"tags\"</code>, and <code>\"keywords\"</code> trigger types<br />• <strong>Assistant Types:</strong> Available options - <code>\"researcher\"</code>, <code>\"marketer\"</code>, <code>\"sales\"</code>, <code>\"general\"</code>, <code>\"recruiter\"</code>, <code>\"custom\"</code></p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","automations",":automationId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"","key":"automationId"}]}},"response":[{"id":"e3a857d6-9cc8-44f1-ae6e-dcb0635ea0dc","name":"Update Automation","originalRequest":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Updated Marketing Analysis\",\n  \"description\": \"Enhanced automation with schedule and new assistant type\",\n  \"isActive\": true,\n  \"runType\": \"schedule\",\n  \"schedule\": {\n    \"timePeriod\": \"last7days\",\n    \"repeatAt\": \"09:30\"\n  },\n  \"trigger\": {\n    \"type\": \"folders\",\n    \"folderIds\": [\"folder123\", \"folder456\"]\n  },\n  \"action\": {\n    \"type\": \"magic-prompt\",\n    \"magicPrompt\": {\n      \"title\": \"Weekly Marketing Report\",\n      \"assistantType\": \"marketer\",\n      \"prompt\": \"Analyze marketing data and provide insights, trends, and recommendations\",\n      \"assistantTemplateId\": \"marketing-template-001\"\n    }\n  },\n  \"fieldId\": \"marketing-field-123\"\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/automations/:automationId","host":["{{url}}"],"path":["v1","automations",":automationId"],"variable":[{"key":"automationId","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9bbde31f-3bc4-40ee-94c8-7403ccaaf840"},{"name":"Enable or Disable Automation","id":"5cf7b15f-c8cf-44f8-ba5f-fdf7193b592f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":"{{url}}/v1/automations/status/:automationId","description":"<h1 id=\"update-automation-status\">Update Automation Status</h1>\n<p>This endpoint allows you to update the status of a specific automation to enable or disable by providing the automation ID in the URL path.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain the following parameters:</p>\n<ul>\n<li><p><code>status</code>: (string) The new status for the automation.</p>\n</li>\n<li><p><code>message</code>: (string) An optional message related to the status update.</p>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<p>The response will have a status code of 200 and a JSON body with the following structure:</p>\n<ul>\n<li><p><code>status</code>: (string) Indicates the status of the request.</p>\n</li>\n<li><p><code>message</code>: (string) Provides additional information about the status.</p>\n</li>\n</ul>\n<h2 id=\"sample-response\">Sample Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": \"\",\n    \"message\": \"\"\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","automations","status",":automationId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"97c57afd7ff1","key":"automationId"}]}},"response":[{"id":"5475fbb9-d606-48ec-bc08-c3dcdaa45bd1","name":"Enable or Disable Automation","originalRequest":{"method":"PUT","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/automations/status/:automationId","host":["{{url}}"],"path":["v1","automations","status",":automationId"],"variable":[{"key":"automationId","value":"97c57afd7ff1"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5cf7b15f-c8cf-44f8-ba5f-fdf7193b592f"}],"id":"956061f2-225b-4831-b629-a1684dd47f3a","description":"<p>Best way to automate your workflow with Automations.</p>\n","_postman_id":"956061f2-225b-4831-b629-a1684dd47f3a","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Admin","item":[{"name":"Create New User","id":"929fe555-70ee-4a29-a126-aa03fabeba72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Vatsal\",\r\n    \"lastName\": \"Shah\",\r\n    \"email\": \"test@abc.com\",\r\n    \"isActive\": true,\r\n    \"isVerified\": true,\r\n    \"permission\": {\r\n        \"audio\": true,\r\n        \"video\": true,\r\n        \"text\": true,\r\n        \"addPayment\": false,\r\n        \"userManagement\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/admin/user","description":"<h2 id=\"add-user-endpoint\">Add User Endpoint</h2>\n<p>This endpoint allows administrators to add a new user to the system. The request requires a JSON payload containing user details.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body should be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><code>firstName</code> (string): The first name of the user.</p>\n</li>\n<li><p><code>lastName</code> (string): The last name of the user.</p>\n</li>\n<li><p><code>email</code> (string): The email address of the user.</p>\n</li>\n<li><p><code>isActive</code> (boolean): Indicates whether the user account is active.</p>\n</li>\n<li><p><code>isVerified</code> (boolean): Indicates whether the user's email has been verified.</p>\n</li>\n<li><p><code>permission</code> (object): An object specifying the permissions granted to the user:</p>\n<ul>\n<li><p><code>audio</code> (boolean): Permission to access audio features.</p>\n</li>\n<li><p><code>video</code> (boolean): Permission to access video features.</p>\n</li>\n<li><p><code>text</code> (boolean): Permission to access text features.</p>\n</li>\n<li><p><code>addPayment</code> (boolean): Permission to manage payment options.</p>\n</li>\n<li><p><code>userManagement</code> (boolean): Permission to manage other users.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the server will respond with a confirmation of the user creation, typically including the user ID and any other relevant details about the newly created user.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the email provided is unique and valid to avoid conflicts.</p>\n</li>\n<li><p>Permissions should be assigned based on the user's role within the organization.</p>\n</li>\n<li><p>This endpoint is restricted to users with administrative privileges.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","admin","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3cfbe63a-312e-45ed-8afb-f7eb5d501286","name":"Create New User","originalRequest":{"method":"POST","header":[{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"},{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Vatsal\",\r\n    \"lastName\": \"Shah\",\r\n    \"email\": \"test@abc.com\",\r\n    \"isActive\": true,\r\n    \"isVerified\": true,\r\n    \"permission\": {\r\n        \"audio\": true,\r\n        \"video\": true,\r\n        \"text\": true,\r\n        \"addPayment\": false,\r\n        \"userManagement\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/admin/user"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"929fe555-70ee-4a29-a126-aa03fabeba72"},{"name":"Update User","id":"912d798e-c7cc-48a8-8a0b-06d8474ae8d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"string\",\r\n    \"email\" : \"\",\r\n    \"firstName\": \"Vatsal\",\r\n    \"lastName\": \"Shah\",\r\n    \"isActive\": true,\r\n    \"isVerified\": true,\r\n    \"permission\": {\r\n        \"audio\": true,\r\n        \"video\": true,\r\n        \"text\": true,\r\n        \"addPayment\": false,\r\n        \"userManagement\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/admin/user","description":"<h2 id=\"update-user-details\">Update User Details</h2>\n<p>This endpoint allows administrators to update the details of a user in the system. It is a PUT request that modifies the user's information based on the provided payload.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body should be a JSON object with the following parameters:</p>\n<ul>\n<li><p><strong>_id</strong> (string): The unique identifier of the user to be updated.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the user. This field can be left empty if no change is required.</p>\n</li>\n<li><p><strong>firstName</strong> (string): The first name of the user.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the user.</p>\n</li>\n<li><p><strong>isActive</strong> (boolean): Indicates whether the user account is active.</p>\n</li>\n<li><p><strong>isVerified</strong> (boolean): Indicates whether the user's email has been verified.</p>\n</li>\n<li><p><strong>permission</strong> (object): An object that defines the permissions for the user with the following keys:</p>\n<ul>\n<li><p><strong>audio</strong> (boolean): Permission to access audio features.</p>\n</li>\n<li><p><strong>video</strong> (boolean): Permission to access video features.</p>\n</li>\n<li><p><strong>text</strong> (boolean): Permission to access text features.</p>\n</li>\n<li><p><strong>addPayment</strong> (boolean): Permission to add payment methods.</p>\n</li>\n<li><p><strong>userManagement</strong> (boolean): Permission to manage other users.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful update, the API will return a response indicating the status of the operation. The response typically includes a success message and may also return the updated user details.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the user ID provided in the request is valid and corresponds to an existing user in the system.</p>\n</li>\n<li><p>The permissions object allows for fine-grained control over what the user can access, so be sure to set these values according to your application's requirements.</p>\n</li>\n<li><p>If any required fields are missing or invalid, the API will return an error response with details about the issue.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","admin","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7edd9534-6620-4aae-8c6c-3d642c406e69","name":"Update User","originalRequest":{"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"string\",\r\n    \"email\" : \"\",\r\n    \"firstName\": \"Vatsal\",\r\n    \"lastName\": \"Shah\",\r\n    \"isActive\": true,\r\n    \"isVerified\": true,\r\n    \"permission\": {\r\n        \"audio\": true,\r\n        \"video\": true,\r\n        \"text\": true,\r\n        \"addPayment\": false,\r\n        \"userManagement\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/admin/user"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"912d798e-c7cc-48a8-8a0b-06d8474ae8d1"},{"name":"List users","id":"be814ad2-bb3e-43c1-9eef-5b237f6f6824","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":"{{url}}/v1/admin/users","description":"<h2 id=\"get-users\">Get Users</h2>\n<p>This endpoint retrieves a list of users from the admin panel. It is primarily used by administrators to access user information stored in the system.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{url}}/v1/admin/users</code></p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will contain a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>users</strong>: An array of user objects, where each user object includes:</p>\n<ul>\n<li><p><strong>id</strong>: Unique identifier for the user.</p>\n</li>\n<li><p><strong>name</strong>: The name of the user.</p>\n</li>\n<li><p><strong>email</strong>: The email address of the user.</p>\n</li>\n<li><p><strong>role</strong>: The role assigned to the user (e.g., admin, user).</p>\n</li>\n<li><p><strong>status</strong>: The current status of the user (e.g., active, inactive).</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"users\": [\n    {\n      \"id\": \"123\",\n      \"name\": \"John Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"role\": \"admin\",\n      \"status\": \"active\"\n    },\n    {\n      \"id\": \"124\",\n      \"name\": \"Jane Smith\",\n      \"email\": \"jane.smith@example.com\",\n      \"role\": \"user\",\n      \"status\": \"inactive\"\n    }\n  ]\n}\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that appropriate authentication and authorization headers are included in the request to access this endpoint.</p>\n</li>\n<li><p>The response may vary based on the user's permissions and the number of users in the system.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","admin","users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"af77d33b-e45b-4a67-bb58-8abb0a0d9043","name":"List users","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":"{{url}}/v1/admin/users"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"be814ad2-bb3e-43c1-9eef-5b237f6f6824"}],"id":"09f07bfc-daca-4aea-9e49-49560d6e749a","description":"<p>Manage your team.</p>\n","_postman_id":"09f07bfc-daca-4aea-9e49-49560d6e749a","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Webhook","item":[{"name":"Create Webhook","id":"5777a89c-a6c3-4d0e-aab1-d33fdec5cbe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"callbackUrl\": \"http://localhost:5003/self-test\",\r\n    \"metaData\": {\r\n        \"providedInternalUUID\": \"111222333\"\r\n    },\r\n    \"events\": [\r\n        \"media.created\",\r\n        \"media.analyzed\",\r\n        \"text.created\",\r\n        \"text.analyzed\",\r\n        \"text.reanalyzed\",\r\n        \"text.failed\",\r\n        \"text.deleted\",\r\n        \"media.reanalyzed\",\r\n        \"media.failed\",\r\n        \"media.deleted\"\r\n    ],\r\n    \"description\": \"This is a readable explanation of what this webhook does on your side.\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/webhook","description":"<p>Webhooks are the means by which you receive notification in the instant event you are subscribed to is triggered. We support several media events right now:</p>\n<p>Speak will send you a <code>POST</code> request to the webhookUrl.</p>\n<p>We will send you related keys in the <code>body</code> params such as <code>mediaId</code>, <code>recorderId</code>, <code>state</code> , <code>meetingAssistantId</code> or <code>meetingAssistantStatus</code></p>\n<p><strong>For Media Files:</strong></p>\n<ul>\n<li><p><code>media.created</code></p>\n</li>\n<li><p><code>media.analyzed</code></p>\n</li>\n<li><p><code>media.reanalyzed</code></p>\n</li>\n<li><p><code>media.failed</code></p>\n</li>\n<li><p><code>media.deleted</code></p>\n</li>\n</ul>\n<p><strong>For Text Files:</strong></p>\n<ul>\n<li><p><code>text.created</code></p>\n<ul>\n<li>You will receive the foll</li>\n</ul>\n</li>\n<li><p><code>text.analyzed</code></p>\n<ul>\n<li>You will receive following keys: <code>mediaId</code>, <code>state</code></li>\n</ul>\n</li>\n<li><p><code>text.reanalyzed</code></p>\n<ul>\n<li>You will receive following keys: <code>mediaId</code>, <code>state</code></li>\n</ul>\n</li>\n<li><p><code>text.failed</code></p>\n<ul>\n<li>You wil receive following keys: <code>mediaId</code></li>\n</ul>\n</li>\n<li><p><code>text.deleted</code></p>\n<ul>\n<li>You will receive the following keys: <code>mediaId</code></li>\n</ul>\n</li>\n</ul>\n<p><strong>For Embed Recorder:</strong></p>\n<ul>\n<li><p><code>embed_recorder.created</code></p>\n<ul>\n<li>You will receive following keys: <code>recorderId</code></li>\n</ul>\n</li>\n<li><p><code>embed_recorder.deleted</code></p>\n<ul>\n<li>You will receive following keys: <code>recorderId</code></li>\n</ul>\n</li>\n<li><p><code>embed_recorder.recording_received</code></p>\n<ul>\n<li>You will receive following keys: <code>recorderId</code> , <code>mediaId</code></li>\n</ul>\n</li>\n</ul>\n<p><strong>For Meeting Assistant:</strong></p>\n<ul>\n<li><p><code>meeting_assistant.status</code></p>\n<ul>\n<li><p>Trigger a webhook for meeting assistant status changes for following status: Joining call, Waiting room, In call not recording, In call recording, Call ended, Error.</p>\n</li>\n<li><p>You will receive following keys: <strong><code>mediaId, meetingAssistantId</code></strong>, and <strong><code>meetingAssistantStatus</code></strong></p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>For AI Chat:</strong></p>\n<ul>\n<li><p><code>chat.status</code></p>\n<ul>\n<li><p>AI Chat response with the final answer.</p>\n</li>\n<li><p>You will receive follwoing keys: <code>mediaIds, folderId, state, promptId, messageId and answer</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>For CSV Files:</strong></p>\n<ul>\n<li><p><code>csv.uploaded</code></p>\n<ul>\n<li>When you upload the CSV file, it will return with <code>fileId, totalRecords, succeededRecords</code></li>\n</ul>\n</li>\n<li><p><code>csv.failed</code></p>\n<ul>\n<li>When there is a failure or few records failed, you will receive fileId<br />  <code>fileId, totalRecords, failedRecords, failedRecordsList</code></li>\n</ul>\n</li>\n</ul>\n<p>You can subscribe to one or more events at once for one media, and then later update your webhook as needed.<br />Internally, Speak Ai system will <code>POST</code> to <code>callbackURL</code> with provided <code>metaData</code> as a request body, the attempt will be recorded and you can access the results, errors and response times in <a href=\"https://app.speakai.co/developers/webhooks\">https://app.speakai.co/developers/webhooks</a></p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","webhook"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3ae9766c-c248-4402-bd54-7a20c16c6fa5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-access-token","type":"text","value":"{{x-access-token}}"},{"key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"callbackUrl\": \"http://localhost:5003/self-test\",\r\n    \"metaData\": {\r\n        \"providedInternalUUID\": \"111222333\"\r\n    },\r\n    \"events\": [\r\n        \"media.created\",\r\n        \"media.analyzed\"\r\n    ],\r\n    \"description\": \"This is a readable explanation of what this webhook does on your side.\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/webhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"92738402-2531-40d9-aa97-f7211e776363"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"459"},{"key":"ETag","value":"W/\"1cb-uCXtOUtx8W5LVAlG+YzIUi8uTMw\""},{"key":"Date","value":"Tue, 27 Apr 2021 17:59:09 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"events\": [\n            \"media.created\",\n            \"media.analyzed\"\n        ],\n        \"attempts\": [],\n        \"isActive\": true,\n        \"isDeleted\": false,\n        \"_id\": \"608850ed4cb70a295c0ddf5b\",\n        \"companyId\": \"5e21c8dd2d77242c64214816\",\n        \"userId\": \"5d03a9d5d4bca272e9c8cf89\",\n        \"callbackUrl\": \"http://localhost:5003/self-test\",\n        \"metaData\": {\n            \"providedInternalUUID\": \"111222333\"\n        },\n        \"description\": \"This is a readable explanation of what this webhook does on your side.\",\n        \"createdAt\": \"2021-04-27T17:59:09.862Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"5777a89c-a6c3-4d0e-aab1-d33fdec5cbe8"},{"name":"Test","id":"ff82c06b-2668-4ac1-80ff-99c121bf0b56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"media.created\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/webhook/test/:webhookId","description":"<p>Looking to test the webhook without uploading much media in your account ? Testing is made easier using this endpoint. You can trigger an event on a particular webhook and get the request\\response or error.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","webhook","test",":webhookId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"659ee5c7350d7f6593fd36ea","key":"webhookId"}]}},"response":[{"id":"35e41701-24a0-4bd6-b695-283911d9e909","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"media.created\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/webhook/test/:webhookId","host":["{{url}}"],"path":["v1","webhook","test",":webhookId"],"variable":[{"key":"webhookId","value":"60884fec4cb70a295c0ddf59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"7b05707a-3c97-40f7-9f66-0cefc66c1490"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"441"},{"key":"ETag","value":"W/\"1b9-mRUIW9GhIJ5VXktXrn1SIMtEt8U\""},{"key":"Date","value":"Tue, 27 Apr 2021 18:15:51 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"isFirstAttempt\": true,\n        \"_id\": \"608854d7368c102ad3d3ad53\",\n        \"webhookId\": \"60884fec4cb70a295c0ddf59\",\n        \"event\": \"media.created\",\n        \"requestBody\": \"{\\\"providedInternalUUID\\\":\\\"111222333\\\"}\",\n        \"responseBody\": \"{\\\"message\\\":\\\"My UUID is 111222333.\\\"}\",\n        \"responseTime\": 48,\n        \"createdAt\": \"2021-04-27T18:15:51.686Z\",\n        \"__v\": 0\n    }\n}"},{"id":"e8f45cf4-6dff-4430-9d14-8b00737c1045","name":"Error","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"event\": \"media.created\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/webhook/test/:webhookId","host":["{{url}}"],"path":["v1","webhook","test",":webhookId"],"variable":[{"key":"webhookId","value":"60884fec4cb70a295c0ddf59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"7b05707a-3c97-40f7-9f66-0cefc66c1490"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"441"},{"key":"ETag","value":"W/\"1b9-mRUIW9GhIJ5VXktXrn1SIMtEt8U\""},{"key":"Date","value":"Tue, 27 Apr 2021 18:15:51 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"isFirstAttempt\": true,\n        \"_id\": \"608854d7368c102ad3d3ad53\",\n        \"webhookId\": \"60884fec4cb70a295c0ddf59\",\n        \"event\": \"media.created\",\n        \"requestBody\": \"{\\\"providedInternalUUID\\\":\\\"111222333\\\"}\",\n        \"responseBody\": \"{\\\"message\\\":\\\"invalid json response body at http://localhost:5003/self-test reason: Unexpected token < in JSON at position 0\\\",\\\"type\\\":\\\"invalid-json\\\"}\",\n        \"responseTime\": 48,\n        \"createdAt\": \"2021-04-27T18:15:51.686Z\",\n        \"__v\": 0\n    }\n}"}],"_postman_id":"ff82c06b-2668-4ac1-80ff-99c121bf0b56"},{"name":"List","id":"29d6d75b-5ec5-4a6e-9dc8-0473eb48bc06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":"{{url}}/v1/webhook","description":"<p>If you want to list all the exisitng webhooks</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","webhook"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9857c84d-25fa-412c-87da-d24c3a4d4154","name":"List Webhooks","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/v1/webhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"4f544fb1-f26e-40f5-a986-5dac1e1c65b9"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"905"},{"key":"ETag","value":"W/\"389-vd9W9f8iKYiIM++T/jdyXsYghdc\""},{"key":"Date","value":"Tue, 27 Apr 2021 18:08:48 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"events\": [\n                \"media.created\",\n                \"media.analyzed\",\n                \"media.deleted\"\n            ],\n            \"isActive\": true,\n            \"_id\": \"60884fec4cb70a295c0ddf59\",\n            \"callbackUrl\": \"http://localhost:5003/self-test\",\n            \"metaData\": {\n                \"providedInternalUUID\": \"111222333\"\n            },\n            \"description\": \"This is an edited explanation.\",\n            \"createdAt\": \"2021-04-27T17:54:52.250Z\"\n        }\n    ]\n}"}],"_postman_id":"29d6d75b-5ec5-4a6e-9dc8-0473eb48bc06"},{"name":"Update","id":"d1ed54ca-0a02-4aac-ab85-afa990833725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"callbackUrl\": \"http://localhost:5003/self-test\",\r\n    \"metaData\": {\r\n        \"providedInternalUUID\": \"777888999\"\r\n    },\r\n    \"events\": [\r\n        \"media.created\",\r\n        \"media.analyzed\",\r\n        \"media.deleted\"\r\n    ],\r\n    \"description\": \"This is an edited explanation.\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/webhook/:webhookId","description":"<p>You can update definition of an existing webhook: change events it's subscribed to, edit description or your <code>metaData</code>.</p>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","webhook",":webhookId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"609d7de35bde285f4c98ca63","key":"webhookId"}]}},"response":[{"id":"a6e1c7f7-38e4-4446-876f-eeb3105c040b","name":"Successful","originalRequest":{"method":"PUT","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"callbackUrl\": \"http://localhost:5003/self-test\",\r\n    \"metaData\": {\r\n        \"providedInternalUUID\": \"777888999\"\r\n    },\r\n    \"events\": [\r\n        \"media.created\",\r\n        \"media.analyzed\",\r\n        \"media.deleted\"\r\n    ],\r\n    \"description\": \"This is an edited explanation.\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/v1/webhook/:webhookId","host":["{{url}}"],"path":["v1","webhook",":webhookId"],"variable":[{"key":"webhookId","value":"608850ed4cb70a295c0ddf5b"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"f69348fd-e6c3-4f53-a2a8-d68ab5fb30c4"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"48"},{"key":"ETag","value":"W/\"30-n7cgGXEpIV+LNfgxLbRK09Tqvbs\""},{"key":"Date","value":"Tue, 27 Apr 2021 18:01:21 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Webhook updated\"\n}"}],"_postman_id":"d1ed54ca-0a02-4aac-ab85-afa990833725"},{"name":"Delete","id":"af939acb-acd5-45ab-a8e5-652943eec0e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"},{"warning":"This is a duplicate header and will be overridden by the x-speakai-key header generated by Postman.","key":"x-speakai-key","value":"{{x-speakai-key}}","type":"text"}],"url":"{{url}}/v1/webhook/:webhookId","description":"<h2 id=\"delete-webhook\">DELETE Webhook</h2>\n<p>This endpoint allows you to delete a specific webhook identified by its unique <code>webhookId</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><code>webhookId</code> (path parameter): The unique identifier of the webhook you wish to delete.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful deletion of the webhook, the API will return a JSON object with the following structure:</p>\n<ul>\n<li><p><code>status</code>: A string indicating the status of the request.</p>\n</li>\n<li><p><code>message</code>: A string providing additional information about the result of the operation.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>webhookId</code> provided in the request is valid and corresponds to an existing webhook.</p>\n</li>\n<li><p>Deleting a webhook is irreversible; once deleted, the webhook cannot be recovered.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}},"urlObject":{"path":["v1","webhook",":webhookId"],"host":["{{url}}"],"query":[],"variable":[{"type":"any","value":"609d7de35bde285f4c98ca63","key":"webhookId"}]}},"response":[{"id":"ccbc3a59-245b-4560-a05e-43a312c58c91","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"x-access-token","value":"{{x-access-token}}","type":"text"}],"url":{"raw":"{{url}}/v1/webhook/:webhookId","host":["{{url}}"],"path":["v1","webhook",":webhookId"],"variable":[{"key":"webhookId","value":"60884fec4cb70a295c0ddf59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"0b74693d-61f8-48ef-91bc-8f792b10b121"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, x-access-token, x-refresh-token"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"49"},{"key":"ETag","value":"W/\"31-zCeG3OjQi37iNPRECnELR52tMEI\""},{"key":"Date","value":"Tue, 27 Apr 2021 18:10:32 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Webhook deleted!\"\n}"}],"_postman_id":"af939acb-acd5-45ab-a8e5-652943eec0e0"}],"id":"8a384ab5-f2c6-436d-bbe7-93b621a7c856","description":"<p>Receive Webhooks from Speak to your platform. Manage webhook workflows and select events.</p>\n","_postman_id":"8a384ab5-f2c6-436d-bbe7-93b621a7c856","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Live Transcription","item":[],"id":"db8787f9-47ce-4488-89a3-08a3d1b0fb27","description":"<p>The Speak Live Transcription API provides real-time speech-to-text capabilities through WebSocket connections. You can stream audio data and receive live transcription results, or subscribe to existing transcription sessions to receive results.</p>\n<h2 id=\"quick-start\">Quick Start</h2>\n<h2 id=\"1-get-your-api-key\">1. Get Your API Key</h2>\n<p>First, you'll need an API key from your Speak dashboard. This key authenticates your requests and tracks usage.</p>\n<h2 id=\"2-choose-your-connection-method\">2. Choose Your Connection Method</h2>\n<p>We support two connection types:</p>\n<ul>\n<li><p><strong>Socket.IO</strong> (Recommended): Easier to implement, better error handling</p>\n</li>\n<li><p><strong>WebSocket</strong>: Lightweight, direct WebSocket connection</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"socketio-integration-recommended\">Socket.IO Integration (Recommended)</h2>\n<h2 id=\"step-1-connect-to-the-server\">Step 1: Connect to the Server</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Using Socket.IO client\nimport { io } from 'socket.io-client';\nconst socket = io('wss://your-speak-server.com/v1/live', {\n  query: {\n    'speak-api-key': 'your-api-key-here',\n    'sourceLanguage': 'en', // Optional: language code\n    'folderId': 'your-folder-id', // Optional: organize transcripts\n    'mediaType': 'audio/webm' // Optional: specify audio format\n  }\n});\n\n</code></pre>\n<h2 id=\"step-2-start-live-streaming\">Step 2: Start Live Streaming</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Start the transcription session\nsocket.emit('start-live-stream');\n// Listen for successful setup\nsocket.on('metadata', (response) =&gt; {\n  console.log('Media session created:', response.mediaId);\n  console.log('Ready to send audio data');\n});\n\n</code></pre>\n<h2 id=\"step-3-send-audio-data\">Step 3: Send Audio Data</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Send audio chunks as they become available\nsocket.emit('audio-data', audioBuffer);\n// Example with microphone input\nnavigator.mediaDevices.getUserMedia({ audio: true })\n  .then(stream =&gt; {\n    const mediaRecorder = new MediaRecorder(stream);\n    mediaRecorder.ondataavailable = (event) =&gt; {\n      if (event.data.size &gt; 0) {\n        // Convert to buffer and send\n        event.data.arrayBuffer().then(buffer =&gt; {\n          socket.emit('audio-data', Buffer.from(buffer));\n        });\n      }\n    };\n    mediaRecorder.start(1000); // Send chunks every second\n  });\n\n</code></pre>\n<h2 id=\"step-4-receive-transcription-results\">Step 4: Receive Transcription Results</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Listen for transcription results\nsocket.on('transcript', (response) =&gt; {\n  console.log('New word:', response.word.text);\n  console.log('Confidence:', response.word.confidence);\n  console.log('Speaker ID:', response.word.speakerId);\n  console.log('Timing:', response.word.instances);\n});\n// Listen for errors\nsocket.on('error', (error) =&gt; {\n  console.error('Transcription error:', error);\n});\n\n</code></pre>\n<h2 id=\"step-5-stop-transcription\">Step 5: Stop Transcription</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Stop the transcription session\nsocket.emit('stop-transcription');\n// Listen for close confirmation\nsocket.on('close', (response) =&gt; {\n  console.log('Transcription stopped');\n  socket.disconnect();\n});\n\n</code></pre>\n<hr />\n<h2 id=\"websocket-integration\">WebSocket Integration</h2>\n<h2 id=\"step-1-connect-to-websocket\">Step 1: Connect to WebSocket</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Direct WebSocket connection\nconst ws = new WebSocket('wss://your-speak-server.com:8083/v1/live-bot?speak-api-key=your-api-key-here');\nws.onopen = () =&gt; {\n  console.log('WebSocket connected');\n  // Send start-live-stream message\n  ws.send(JSON.stringify({\n    event: 'start-live-stream'\n  }));\n};\n\n</code></pre>\n<h2 id=\"step-2-send-audio-data\">Step 2: Send Audio Data</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Send audio data as binary\nws.onopen = () =&gt; {\n  // After receiving successful setup response\n  ws.send(audioBuffer); // Send raw audio buffer\n};\n\n</code></pre>\n<hr />\n<h2 id=\"subscribing-to-existing-media-sessions\">Subscribing to Existing Media Sessions</h2>\n<p>You can subscribe to receive transcription results from existing sessions without sending audio data.</p>\n<h2 id=\"step-1-connect-for-subscription\">Step 1: Connect for Subscription</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const socket = io('wss://your-speak-server.com/v1/live', {\n  query: {\n    'speak-api-key': 'your-api-key-here'\n  }\n});\n\n</code></pre>\n<h2 id=\"step-2-subscribe-to-media\">Step 2: Subscribe to Media</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Subscribe to a specific media session\nsocket.emit('subscribe-to-media', 'media-id-here');\n// Listen for subscription confirmation\nsocket.on('metadata', (response) =&gt; {\n  if (response.status === 'subscribed') {\n    console.log('Successfully subscribed to media session');\n  }\n});\n\n</code></pre>\n<h2 id=\"step-3-receive-results\">Step 3: Receive Results</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Receive transcription results from the subscribed session\nsocket.on('transcript', (response) =&gt; {\n  console.log('Received word:', response.word.text);\n});\n// Unsubscribe when done\nsocket.emit('unsubscribe-from-media', 'media-id-here');\n\n</code></pre>\n<hr />\n<h2 id=\"audio-format-requirements\">Audio Format Requirements</h2>\n<h2 id=\"supported-formats\">Supported Formats</h2>\n<ul>\n<li><p><strong>WebM</strong> (recommended)</p>\n</li>\n<li><p><strong>MP4</strong></p>\n</li>\n<li><p><strong>WAV</strong></p>\n</li>\n</ul>\n<h2 id=\"recommended-settings\">Recommended Settings</h2>\n<ul>\n<li><p><strong>Sample Rate</strong>: 16kHz or 48kHz</p>\n</li>\n<li><p><strong>Channels</strong>: Mono (1 channel)</p>\n</li>\n<li><p><strong>Bitrate</strong>: 128kbps or higher</p>\n</li>\n<li><p><strong>Chunk Size</strong>: 1-2 seconds</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"response-format\">Response Format</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  \"type\": \"transcript\",\n  \"mediaId\": \"media-123\",\n  \"timestamp\": \"2024-01-15T10:30:00.000Z\",\n  \"word\": {\n    \"id\": 1,\n    \"text\": \"hello\",\n    \"confidence\": 0.95,\n    \"language\": \"en\",\n    \"speakerId\": \"speaker-1\",\n    \"instances\": {\n      \"startInSec\": 1.2,\n      \"endInSec\": 1.5\n    }\n  },\n  \"message\": \"New word received\",\n}\n\n</code></pre>\n<h2 id=\"metadata-response\">Metadata Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  \"type\": \"metadata\",\n  \"mediaId\": \"media-123\",\n  \"folderId\": \"folder-456\",\n  \"userId\": \"user-789\",\n  \"name\": \"Live Transcription Session\",\n  \"timestamp\": \"2024-01-15T10:30:00.000Z\",\n  \"message\": \"Media session initialized\"\n}\n\n</code></pre>\n<hr />\n<h2 id=\"supported-langauges\">Supported Langauges</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n<th>name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>en-US</td>\n<td>English (US)</td>\n</tr>\n<tr>\n<td>en-AU</td>\n<td>English (Australia)</td>\n</tr>\n<tr>\n<td>en-GB</td>\n<td>English (British)</td>\n</tr>\n<tr>\n<td>en-IN</td>\n<td>English (Indian)</td>\n</tr>\n<tr>\n<td>en-IE</td>\n<td>English (Irish)</td>\n</tr>\n<tr>\n<td>en-NZ</td>\n<td>English (New Zealand)</td>\n</tr>\n<tr>\n<td>en-AB</td>\n<td>English (Scottish)</td>\n</tr>\n<tr>\n<td>en-ZA</td>\n<td>English (South African)</td>\n</tr>\n<tr>\n<td>en-ES</td>\n<td>English + Spanish (Multiple)</td>\n</tr>\n<tr>\n<td>fr-FR</td>\n<td>French</td>\n</tr>\n<tr>\n<td>fr-CA</td>\n<td>French (Canada)</td>\n</tr>\n<tr>\n<td>es-ES</td>\n<td>Spanish</td>\n</tr>\n<tr>\n<td>es-MX</td>\n<td>Spanish (Mexico)</td>\n</tr>\n<tr>\n<td>bg-BG</td>\n<td>Bulgarian</td>\n</tr>\n<tr>\n<td>ca-ES</td>\n<td>Catalan</td>\n</tr>\n<tr>\n<td>zh-CN</td>\n<td>Chinese (Simplified)</td>\n</tr>\n<tr>\n<td>zh-TW</td>\n<td>Chinese (Traditional)</td>\n</tr>\n<tr>\n<td>zh-HK</td>\n<td>Chinese (Cantonese, Traditional)</td>\n</tr>\n<tr>\n<td>cs-CZ</td>\n<td>Czech</td>\n</tr>\n<tr>\n<td>da-DK</td>\n<td>Danish</td>\n</tr>\n<tr>\n<td>nl-NL</td>\n<td>Dutch</td>\n</tr>\n<tr>\n<td>et-EE</td>\n<td>Estonian</td>\n</tr>\n<tr>\n<td>nl-BE</td>\n<td>Flemish</td>\n</tr>\n<tr>\n<td>fi-FI</td>\n<td>Finnish</td>\n</tr>\n<tr>\n<td>de-CH</td>\n<td>German (Swiss)</td>\n</tr>\n<tr>\n<td>de-DE</td>\n<td>German</td>\n</tr>\n<tr>\n<td>el-GR</td>\n<td>Greek</td>\n</tr>\n<tr>\n<td>hi-IN</td>\n<td>Hindi</td>\n</tr>\n<tr>\n<td>hi-Latn</td>\n<td>Hindi (Latin)</td>\n</tr>\n<tr>\n<td>hu-HU</td>\n<td>Hungarian</td>\n</tr>\n<tr>\n<td>id-ID</td>\n<td>Indonesian</td>\n</tr>\n<tr>\n<td>it-IT</td>\n<td>Italian</td>\n</tr>\n<tr>\n<td>ja-JP</td>\n<td>Japanese</td>\n</tr>\n<tr>\n<td>ko-KR</td>\n<td>Korean</td>\n</tr>\n<tr>\n<td>lt-LT</td>\n<td>Lithuanian</td>\n</tr>\n<tr>\n<td>lv-LV</td>\n<td>Latvian</td>\n</tr>\n<tr>\n<td>ms-MY</td>\n<td>Malay</td>\n</tr>\n<tr>\n<td>nb-NO</td>\n<td>Norwegian</td>\n</tr>\n<tr>\n<td>pl-PL</td>\n<td>Polish</td>\n</tr>\n<tr>\n<td>pt-BR</td>\n<td>Portuguese (Brazilian)</td>\n</tr>\n<tr>\n<td>pt-PT</td>\n<td>Portuguese (Portugal)</td>\n</tr>\n<tr>\n<td>ro-RO</td>\n<td>Romanian</td>\n</tr>\n<tr>\n<td>ru-RU</td>\n<td>Russian</td>\n</tr>\n<tr>\n<td>sk-SK</td>\n<td>Slovak</td>\n</tr>\n<tr>\n<td>sv-SE</td>\n<td>Swedish</td>\n</tr>\n<tr>\n<td>taq</td>\n<td>Tamasheq</td>\n</tr>\n<tr>\n<td>th-TH</td>\n<td>Thai</td>\n</tr>\n<tr>\n<td>tr-TR</td>\n<td>Turkish</td>\n</tr>\n<tr>\n<td>uk-UA</td>\n<td>Ukrainian</td>\n</tr>\n<tr>\n<td>vi-VN</td>\n<td>Vietnamese</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"best-practices\">Best Practices</h2>\n<h2 id=\"1-connection-management\">1. Connection Management</h2>\n<ul>\n<li><p>Always handle connection errors and reconnection</p>\n</li>\n<li><p>Implement exponential backoff for reconnection attempts</p>\n</li>\n<li><p>Monitor connection health</p>\n</li>\n</ul>\n<h2 id=\"2-audio-quality\">2. Audio Quality</h2>\n<ul>\n<li><p>Use consistent audio settings throughout the session</p>\n</li>\n<li><p>Avoid changing audio format mid-session</p>\n</li>\n<li><p>Ensure a stable internet connection</p>\n</li>\n</ul>\n<h2 id=\"3-error-handling\">3. Error Handling</h2>\n<ul>\n<li><p>Implement proper error handling for all events</p>\n</li>\n<li><p>Log errors for debugging</p>\n</li>\n<li><p>Provide user feedback for connection issues</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"support\">Support</h2>\n<p>If you encounter any issues or need help with integration:</p>\n<ol>\n<li><p>Check our <a href=\"https://docs.speakai.co/\">API documentation</a></p>\n</li>\n<li><p>Review the error messages in your browser console</p>\n</li>\n<li><p>Contact our support team with your API key and error details.</p>\n</li>\n</ol>\n","_postman_id":"db8787f9-47ce-4488-89a3-08a3d1b0fb27","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}},{"name":"Translation","item":[],"id":"905b3a3e-3b9a-422b-a6c2-327535b02b2b","_postman_id":"905b3a3e-3b9a-422b-a6c2-327535b02b2b","description":"","auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"},"isInherited":true,"source":{"_postman_id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","id":"90aba4ee-f89e-4475-ab7a-79ecc5296cc7","name":"Speak Ai API Documentation","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"value":"{{x-speakai-key}}","key":"<key>"}},"event":[{"listen":"prerequest","script":{"id":"42897d25-f02c-455f-b183-99f9a0e89d60","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"961e5103-e2d6-4a18-ada1-a0a6e2ef181b","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"id":"bb43a767-8b4e-45d1-a74d-6e31e7824b5b","key":"baseUrl","value":"http://petstore.swagger.io/v1"}]}