Files
2026-02-08 11:20:43 -10:00

5868 lines
1.9 MiB
Vendored

{
"cells": [
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-27T14:18:34.680836Z",
"start_time": "2025-05-27T14:18:25.138592Z"
}
},
"cell_type": "code",
"source": [
"%useLatestDescriptors\n",
"%use dataframe(enableExperimentalOpenApi=true)"
],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Enabling experimental OpenAPI 3.0.0 module: dataframe-openapi\n"
]
}
],
"execution_count": 1
},
{
"metadata": {},
"cell_type": "markdown",
"source": [
"We can read DataFrames from JSON, but since JSON doesn't have any types, DataFrame has make its best guess as to which objects have which attributes and how they relate to each other. While this works in most simple cases, for more complex JSON APIs, this might break down.\n",
"One of the cases where normal JSON reading breaks down is in the API of [apis.guru](apis.guru), a website which collects OpenAPI APIs."
]
},
{
"metadata": {
"tags": [
"skiptest"
]
},
"cell_type": "code",
"source": "DataFrame.read(\"api_guru_list.json\")",
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"As you can see, since this API provides its data in a key/value fashion, we get a DataFrame of 2000+ columns, this is very difficult to work with. Actually, it's impossible. Assigning this result to a variable results in OOM errors, as we simply don't have the memory to generate all accessors for all columns.\n",
"\n",
"To solve this, we could perform a"
],
"metadata": {
"collapsed": false
}
},
{
"metadata": {
"tags": [
"skiptest"
]
},
"cell_type": "code",
"source": [
"DataFrame.read(\"api_guru_list.json\")\n",
" .gather { all() }\n",
" .into(\"key\", \"value\")"
],
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"This converts the DataFrame such that it has a column \"key\" containing the previous column names and a column \"value\" containing, well, the values. One downside, however, is that `gather {}` fills in the \"missing\" values with `null` which gives each `versions` column all the version numbers of all APIs, filled in with empty values. This again is difficult to work with...\n",
"\n",
"Specifically for this case, we provide a new feature for reading JSON: Key/Value paths!\n",
"In this data, two paths can be seen as key/value objects: The top level object (represented as '$'), and the `versions` (represented as '$[*][\"versions\"]')."
],
"metadata": {
"collapsed": false
}
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-27T14:18:57.622903Z",
"start_time": "2025-05-27T14:18:52.021399Z"
}
},
"cell_type": "code",
"source": [
"val _df1 = DataFrame.readJson(\n",
" path = \"api_guru_list.json\",\n",
" keyValuePaths = listOf(\n",
" JsonPath(),\n",
" JsonPath().appendWildcard().append(\"versions\"),\n",
" ),\n",
")\n",
"_df1"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_1()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_1\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1073741824&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 1, columnsCount = 1&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;value: DataFrame&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741825, value: &quot;&lt;b&gt;DataFrame 2361 x 2&lt;&sol;b&gt;&quot; }] }, \n",
"], id: 1073741824, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1forge.com&quot;,&quot;1password.com:events&quot;,&quot;1password.local:connect&quot;,&quot;6-dot-authentiqio.appspot.com&quot;,&quot;ably.io:platform&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-05-30T08:34:14.000Z&quot;,&quot;2021-07-19T10:17:09.188Z&quot;,&quot;2021-04-16T15:56:45.939Z&quot;,&quot;2017-03-15T14:45:58.000Z&quot;,&quot;2019-07-13T11:28:07.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;preferred: String&bsol;&quot;&gt;preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;,&quot;1.0.0&quot;,&quot;1.3.0&quot;,&quot;6&quot;,&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;versions: DataFrame&lt;*&gt;&bsol;&quot;&gt;versions&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741826, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741827, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741828, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741829, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741830, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-05-30T08:34:14.000Z&bsol;npreferred: 0.0.1&bsol;nversions: key value&bsol;n 0 0.0.1 { added:2017-05-30T08:34:14.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-05-30T08:34:14.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188Z&bsol;npreferred: 1.0.0&bsol;nversions: key value&bsol;n 0 1.0.0 { added:2021-07-19T10:17:09.188Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939Z&bsol;npreferred: 1.3.0&bsol;nversions: key value&bsol;n 0 1.3.0 { added:2021-04-16T15:56:45.939Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58.000Z&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2017-03-15T14:45:58.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07.000Z&bsol;npreferred: 1.1.0&bsol;nversions: key value&bsol;n 0 1.1.0 { added:2019-07-13T11:28:07.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741825, rootId: 1073741824, totalRows: 2361 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-05-30T08:34:14.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;contact@1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Forge&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: contact@1forge.com&bsol;nname: 1Forge&bsol;nurl: http:&sol;&sol;1forge.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;contact@1forge.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Stock and Forex Data and Realtime Quotes&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Forge Finance APIs&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;financial&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;financial&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;backgroundColor: String&bsol;&quot;&gt;backgroundColor&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;#24292e&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;backgroundColor: #24292e&bsol;nurl: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;backgroundColor: &lt;&sol;span&gt;#24292e&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;ht&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741831, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 9, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:contact@1forge.com, name:1Forge, url:http:&sol;&sol;1forge.com }&bsol;ndescription: Stock and Forex Data and Realtime Quotes&bsol;ntitle: 1Forge Finance APIs&bsol;nversion: 0.0.1&bsol;nx-apisguru-categories: [financial]&bsol;nx-logo: { backgroundColor:#24292e, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg }&bsol;nx-origin: format url version&bsol;n 0 swagger http:&sol;&sol;1forge.com&sol;openapi.json 2.0&bsol;n&bsol;nx-providerName: 1forge.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;con&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-06-27T16:49:57.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 15, 16, 17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-05-30T08:34:14.000Z&bsol;ninfo: { contact:{ email:contact@1forge.com, name:1Forge, url:http:&sol;&sol;1forge.com }, description:Stock and Forex Data and Realtime Quotes, title:1Forge Finance APIs, version:0.0.1, x-apisguru-categories:[financial], x-logo:{ backgroundColor:#24292e, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg }, x-origin:[1 x 3] { format:swagger, url:http:&sol;&sol;1forge.com&sol;openapi.json, version:2.0 }, x-providerName:1forge.com }&bsol;nupdated: 2017-06-27T16:49:57.000Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.yaml&bsol;nopenapiVer: 2.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-05-30T08:34:14.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741826, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-19T10:17:09.188Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Events API Specification.&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Events API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741832, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;events&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9, 10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: 1Password Events API Specification.&bsol;ntitle: Events API&bsol;nversion: 1.0.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.com&bsol;nx-serviceName: events&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;1Password Event&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-22T10:32:52.774Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 11, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188Z&bsol;ninfo: { description:1Password Events API Specification., title:Events API, version:1.0.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml, version:3.0 }, x-providerName:1password.com, x-serviceName:events }&bsol;nupdated: 2021-07-22T10:32:52.774Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741827, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-04-16T15:56:45.939Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Integrations&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;support.1password.com&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@1password.com&bsol;nname: 1Password Integrations&bsol;nurl: https:&sol;&sol;support.1password.com&sol;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@1password.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;REST API interface for 1Password Connect.&bsol;&quot;&gt;REST API interface for 1Password Conn&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741833, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.local&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 9, 11, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }&bsol;ndescription: REST API interface for 1Password Connect.&bsol;ntitle: 1Password Connect&bsol;nversion: 1.3.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.local&bsol;nx-serviceName: connect&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T08:51:53.432Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.2&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 15, 16, 17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939Z&bsol;ninfo: { contact:{ email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }, description:REST API interface for 1Password Connect., title:1Password Connect, version:1.3.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml, version:3.0 }, x-providerName:1password.local, x-serviceName:connect }&bsol;nupdated: 2021-07-26T08:51:53.432Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.2&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741828, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-03-15T14:45:58.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;hello@authentiq.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.io&sol;support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: hello@authentiq.com&bsol;nname: Authentiq team&bsol;nurl: http:&sol;&sol;authentiq.io&sol;support&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hello@authentiq.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Strong authentication, without the passwords.&bsol;&quot;&gt;Strong authentication, without the pa&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Apache 2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENS&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;license: DataRow&lt;*&gt;&bsol;&quot;&gt;license&lt;&sol;span&gt;&quot;, children: [7, 8], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;name: Apache 2.0&bsol;nurl: http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name: &lt;&sol;span&gt;Apache 2.0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;http:&sol;&sol;www&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.com&sol;terms&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;backgroundColor: String&bsol;&quot;&gt;backgroundColor&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;#F26641&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;backgroundColor: #F26641&bsol;nurl: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;backgroundColor: &lt;&sol;span&gt;#F26641&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;ht&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741834, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6-dot-authentiqio.appspot.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 9, 10, 11, 12, 13, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }&bsol;ndescription: Strong authentication, without the passwords.&bsol;nlicense: { name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }&bsol;ntermsOfService: http:&sol;&sol;authentiq.com&sol;terms&sol;&bsol;ntitle: Authentiq API&bsol;nversion: 6&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Aut... 3.0&bsol;n&bsol;nx-providerName: 6-dot-authentiqio.appspot.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hel&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58.000Z&bsol;ninfo: { contact:{ email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }, description:Strong authentication, without the passwords., license:{ name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }, termsOfService:http:&sol;&sol;authentiq.com&sol;terms&sol;, title:Authentiq API, version:6, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml, version:3.0 }, x-providerName:6-dot-authentiqio.appspot.com }&bsol;nupdated: 2021-06-21T12:16:53.715Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741829, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2019-07-13T11:28:07.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Ably Support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;www.ably.io&sol;contact&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ablyrealtime&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@ably.io&bsol;nname: Ably Support&bsol;nurl: https:&sol;&sol;www.ably.io&sol;contact&bsol;nx-twitter: ablyrealtime&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@ably.io&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;&quot;&gt;The [REST API specification](https:&sol;&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Platform API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cloud&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;cloud&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741835, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;platform&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }&bsol;ndescription: The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;ntitle: Platform API&bsol;nversion: 1.1.0&bsol;nx-apisguru-categories: [cloud]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;abl... 3.0&bsol;n&bsol;nx-providerName: ably.io&bsol;nx-serviceName: platform&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:42:14.653Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 16, 17, 18, 19, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07.000Z&bsol;ninfo: { contact:{ email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }, description:The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably., title:Platform API, version:1.1.0, x-apisguru-categories:[cloud], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml, version:3.0 }, x-providerName:ably.io, x-serviceName:platform }&bsol;nupdated: 2021-07-26T09:42:14.653Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741830, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;swagger&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;1forge.com&sol;openapi.json&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"], id: 1073741831, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741832, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741833, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Aut&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741834, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;abl&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741835, rootId: 1073741824, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1073741824) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_1() {\n",
" let elem = document.getElementById(\"iframe_out_1\");\n",
" resize_iframe_out_1(elem);\n",
" setInterval(resize_iframe_out_1, 5000, elem);\n",
" }\n",
" function resize_iframe_out_1(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1073741836\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">value</th></tr></thead><tbody><tr><td style=\"vertical-align:top\"><details><summary>DataFrame [2361 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741837\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"bottomBorder\" style=\"text-align:left\">preferred</th><th class=\"bottomBorder\" style=\"text-align:left\">versions</th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1forge.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-05-30T08:34:14.000Z</td><td style=\"vertical-align:top\">0.0.1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741838\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder\" style=\"text-align:left\">x-logo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">backgroundColor</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">0.0.1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-05-30T08:34:14.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">contact@1forge.com</td><td style=\"vertical-align:top\">1Forge</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://1forge.com</td><td style=\"vertical-align:top\">Stock and Forex Data and Realtime Quotes</td><td style=\"vertical-align:top\">1Forge Finance APIs</td><td style=\"vertical-align:top\">0.0.1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[financial]</td><td class=\"leftBorder\" style=\"vertical-align:top\">#24292e</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741839\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">swagger</td><td style=\"vertical-align:top\">http://1forge.com/openapi.json</td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">1forge.com</td><td style=\"vertical-align:top\">2017-06-27T16:49:57.000Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.com:events</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188Z</td><td style=\"vertical-align:top\">1.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741840\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">1Password Events API Specification.</td><td style=\"vertical-align:top\">Events API</td><td style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741841\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">events</td><td style=\"vertical-align:top\">2021-07-22T10:32:52.774Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.local:connect</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939Z</td><td style=\"vertical-align:top\">1.3.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741842\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@1password.com</td><td style=\"vertical-align:top\">1Password Integrations</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://support.1password.com/</td><td style=\"vertical-align:top\">REST API interface for 1Password Conn<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">1Password Connect</td><td style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741843\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.local</td><td class=\"rightBorder\" style=\"vertical-align:top\">connect</td><td style=\"vertical-align:top\">2021-07-26T08:51:53.432Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.2</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58.000Z</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741844\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">license</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder\" style=\"text-align:left\">x-logo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">backgroundColor</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">hello@authentiq.com</td><td style=\"vertical-align:top\">Authentiq team</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://authentiq.io/support</td><td class=\"rightBorder\" style=\"vertical-align:top\">Strong authentication, without the pa<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">Apache 2.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">http://authentiq.com/terms/</td><td style=\"vertical-align:top\">Authentiq API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder\" style=\"vertical-align:top\">#F26641</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741845\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Aut<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ably.io:platform</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07.000Z</td><td style=\"vertical-align:top\">1.1.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741846\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@ably.io</td><td style=\"vertical-align:top\">Ably Support</td><td style=\"vertical-align:top\">https://www.ably.io/contact</td><td class=\"rightBorder\" style=\"vertical-align:top\">ablyrealtime</td><td style=\"vertical-align:top\">The [REST API specification](https://<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Platform API</td><td style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[cloud]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741847\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/abl<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">ably.io</td><td class=\"rightBorder\" style=\"vertical-align:top\">platform</td><td style=\"vertical-align:top\">2021-07-26T09:42:14.653Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr></tbody></table><p>... showing only top 5 of 2361 rows</p></details></td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1073741836\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"value\"],\"types\":[{\"kind\":\"FrameColumn\"}],\"nrow\":1,\"ncol\":1},\"kotlin_dataframe\":[{\"value\":{\"data\":[{\"key\":\"1forge.com\",\"value\":{\"data\":{\"added\":\"2017-05-30T08:34:14.000Z\",\"preferred\":\"0.0.1\",\"versions\":{\"data\":[{\"key\":\"0.0.1\",\"value\":{\"data\":{\"added\":\"2017-05-30T08:34:14.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"contact@1forge.com\",\"name\":\"1Forge\",\"url\":\"http://1forge.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Stock and Forex Data and Realtime Quotes\",\"title\":\"1Forge Finance APIs\",\"version\":\"0.0.1\",\"x-apisguru-categories\":[\"financial\"],\"x-logo\":{\"data\":{\"backgroundColor\":\"#24292e\",\"url\":\"https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"backgroundColor\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"swagger\",\"url\":\"http://1forge.com/openapi.json\",\"version\":\"2.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1forge.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2017-06-27T16:49:57.000Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.yaml\",\"openapiVer\":\"2.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"1password.com:events\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188Z\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188Z\",\"info\":{\"data\":{\"description\":\"1Password Events API Specification.\",\"title\":\"Events API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-events-reporting/1password-events-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.com\",\"x-serviceName\":\"events\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-22T10:32:52.774Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"1password.local:connect\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939Z\",\"preferred\":\"1.3.0\",\"versions\":{\"data\":[{\"key\":\"1.3.0\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@1password.com\",\"name\":\"1Password Integrations\",\"url\":\"https://support.1password.com/\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"REST API interface for 1Password Connect.\",\"title\":\"1Password Connect\",\"version\":\"1.3.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-connect/1password-connect-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.local\",\"x-serviceName\":\"connect\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T08:51:53.432Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml\",\"openapiVer\":\"3.0.2\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"6-dot-authentiqio.appspot.com\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58.000Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"hello@authentiq.com\",\"name\":\"Authentiq team\",\"url\":\"http://authentiq.io/support\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Strong authentication, without the passwords.\",\"license\":{\"data\":{\"name\":\"Apache 2.0\",\"url\":\"http://www.apache.org/licenses/LICENSE-2.0.html\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"termsOfService\":\"http://authentiq.com/terms/\",\"title\":\"Authentiq API\",\"version\":\"6\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"backgroundColor\":\"#F26641\",\"url\":\"https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"backgroundColor\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/issuer.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"6-dot-authentiqio.appspot.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"license\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.io:platform\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07.000Z\",\"preferred\":\"1.1.0\",\"versions\":{\"data\":[{\"key\":\"1.1.0\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@ably.io\",\"name\":\"Ably Support\",\"url\":\"https://www.ably.io/contact\",\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably.\",\"title\":\"Platform API\",\"version\":\"1.1.0\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/platform-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.io\",\"x-serviceName\":\"platform\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:42:14.653Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.net:control\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536Z\",\"preferred\":\"1.0.14\",\"versions\":{\"data\":[{\"key\":\"1.0.14\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\\n\\nDetailed information on using this API can be found in the Ably <a href=\\\"https://ably.com/documentation/control-api\\\">developer documentation</a>.\\n\\nControl API is currently in Beta.\\n\",\"title\":\"Control API v1\",\"version\":\"1.0.14\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/control-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.net\",\"x-serviceName\":\"control\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:47:48.565Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"abstractapi.com:geolocation\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648Z\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648Z\",\"info\":{\"data\":{\"description\":\"Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.\",\"title\":\"IP geolocation API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"location\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://documentation.abstractapi.com/ip-geolocation-openapi.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"abstractapi.com\",\"x-serviceName\":\"geolocation\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"externalDocs\":{\"data\":{\"description\":\"API Documentation\",\"url\":\"https://www.abstractapi.com/ip-geolocation-api#docs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"externalDocs\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adafruit.com\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43.000Z\",\"preferred\":\"2.0.0\",\"versions\":{\"data\":[{\"key\":\"2.0.0\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43.000Z\",\"info\":{\"data\":{\"description\":\"### The Internet of Things for Everyone\\n\\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\\n\\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\\n\\n#### Authentication\\n\\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username \\\"io_username\\\" and the key \\\"io_key_12345\\\" could look like this:\\n\\n $ curl -H \\\"X-AIO-Key: io_key_12345\\\" https://io.adafruit.com/api/v2/io_username/feeds\\n\\nOr like this:\\n\\n $ curl \\\"https://io.adafruit.com/api/v2/io_username/feeds?X-AIO-Key=io_key_12345\\n\\nUsing the node.js [request](https://github.com/request/request) library, IO HTTP requests are as easy as:\\n\\n```js\\nvar request = require('request');\\n\\nvar options = {\\n url: 'https://io.adafruit.com/api/v2/io_username/feeds',\\n headers: {\\n 'X-AIO-Key': 'io_key_12345',\\n 'Content-Type': 'application/json'\\n }\\n};\\n\\nfunction callback(error, response, body) {\\n if (!error && response.statusCode == 200) {\\n var feeds = JSON.parse(body);\\n console.log(feeds.length + \\\" FEEDS AVAILABLE\\\");\\n\\n feeds.forEach(function (feed) {\\n console.log(feed.name, feed.key);\\n })\\n }\\n}\\n\\nrequest(options, callback);\\n```\\n\\nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):\\n\\n```arduino\\n/// based on\\n/// https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266HTTPClient/examples/Authorization/Authorization.ino\\n\\n#include <Arduino.h>\\n#include <ESP8266WiFi.h>\\n#include <ESP8266WiFiMulti.h>\\n#include <ESP8266HTTPClient.h>\\n\\nESP8266WiFiMulti WiFiMulti;\\n\\nconst char* ssid = \\\"---\\\";\\nconst char* password = \\\"---\\\";\\n\\nconst char* host = \\\"io.adafruit.com\\\";\\n\\nconst char* io_key = \\\"---\\\";\\nconst char* path_with_username = \\\"/api/v2/---/dashboards\\\";\\n\\n// Use web browser to view and copy\\n// SHA1 fingerprint of the certificate\\nconst char* fingerprint = \\\"77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18\\\";\\n\\nvoid setup() {\\n Serial.begin(115200);\\n\\n for(uint8_t t = 4; t > 0; t--) {\\n Serial.printf(\\\"[SETUP] WAIT %d...\\\\n\\\", t);\\n Serial.flush();\\n delay(1000);\\n }\\n\\n WiFi.mode(WIFI_STA);\\n WiFiMulti.addAP(ssid, password);\\n\\n // wait for WiFi connection\\n while(WiFiMulti.run() != WL_CONNECTED) {\\n Serial.print('.');\\n delay(1000);\\n }\\n\\n Serial.println(\\\"[WIFI] connected!\\\");\\n\\n HTTPClient http;\\n\\n // start request with URL and TLS cert fingerprint for verification\\n http.begin(\\\"https://\\\" + String(host) + String(path_with_username), fingerprint);\\n\\n // IO API authentication\\n http.addHeader(\\\"X-AIO-Key\\\", io_key);\\n\\n // start connection and send HTTP header\\n int httpCode = http.GET();\\n\\n // httpCode will be negative on error\\n if(httpCode > 0) {\\n // HTTP header has been send and Server response header has been handled\\n Serial.printf(\\\"[HTTP] GET response: %d\\\\n\\\", httpCode);\\n\\n // HTTP 200 OK\\n if(httpCode == HTTP_CODE_OK) {\\n String payload = http.getString();\\n Serial.println(payload);\\n }\\n\\n http.end();\\n }\\n}\\n\\nvoid loop() {}\\n```\\n\\n#### Client Libraries\\n\\nWe have client libraries to help you get started with your project: [Python](https://github.com/adafruit/io-client-python), [Ruby](https://github.com/adafruit/io-client-ruby), [Arduino C++](https://github.com/adafruit/Adafruit_IO_Arduino), [Javascript](https://github.com/adafruit/adafruit-io-node), and [Go](https://github.com/adafruit/io-client-go) are available. They're all open source, so if they don't already do what you want, you can fork and add any feature you'd like.\\n\\n\",\"title\":\"Adafruit IO REST API\",\"version\":\"2.0.0\",\"x-apisguru-categories\":[\"iot\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"swagger\",\"url\":\"https://raw.githubusercontent.com/adafruit/io-api/gh-pages/v2.json\",\"version\":\"2.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adafruit.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.yaml\",\"openapiVer\":\"2.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adobe.com:aem\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34.000Z\",\"preferred\":\"3.5.0-pre.0\",\"versions\":{\"data\":[{\"key\":\"3.5.0-pre.0\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"opensource@shinesolutions.com\",\"name\":\"Shine Solutions\",\"url\":\"http://shinesolutions.com\",\"x-twitter\":\"Adobe\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API\",\"title\":\"Adobe Experience Manager (AEM) API\",\"version\":\"3.5.0-pre.0\",\"x-apisguru-categories\":[\"marketing\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/shinesolutions/swagger-aem/master/conf/api.yml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adobe.com\",\"x-serviceName\":\"aem\",\"x-unofficialSpec\":true},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\",\"x-unofficialSpec\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:AccountService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Account/v6/createAccountHolder\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Account API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/AccountService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"AccountService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BalancePlatformService\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263Z\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\\n\\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\\n\\n ## Authentication\\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\\n\\n ```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: YOUR_API_KEY\\\" \\\\\\n...\\n```\\n\\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-U \\\"ws@BalancePlatform.YOUR_BALANCE_PLATFORM\\\":\\\"YOUR_WS_PASSWORD\\\" \\\\\\n...\\n```\\n## Versioning\\nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://balanceplatform-api-test.adyen.com/bcl/v1\\n```\\n## Going live\\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https://balanceplatform-api-live.adyen.com/bcl/v1`.\\n\\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Issuing: Balance Platform API\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BalancePlatformService-v1.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BalancePlatformService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-22T23:16:57.458Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BinLookupService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"50\",\"versions\":{\"data\":[{\"key\":\"50\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen BinLookup API\",\"version\":\"50\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BinLookupService-v50.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BinLookupService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\\n\\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\\n\\n## Authentication\\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v68/payments\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Checkout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/CheckoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"CheckoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutUtilityService\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889Z\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@adyen.com\",\"name\":\"Adyen Support\",\"url\":\"https://support.adyen.com/\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A web service containing utility functions available for merchants integrating with Checkout APIs.\\n## Authentication\\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v1/originKeys\\n```\",\"termsOfService\":\"https://docs.adyen.com/legal/terms-conditions\",\"title\":\"Adyen Checkout Utility Service\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"converter\":{\"data\":{\"url\":\"https://github.com/lucybot/api-spec-converter\",\"version\":\"2.7.11\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/adyen/adyen-openapi/master/specs/3.0/CheckoutUtilityService-v1.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"converter\",\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":4,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-serviceName\":\"CheckoutUtilityService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-18T13:57:32.889Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:FundService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Fund/v6/accountHolderBalance\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Fund API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/FundService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"FundService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:HopService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\\n\\n## Authentication\\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Hop/v6/getOnboardingUrl\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Hosted Onboarding\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/HopService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"HopService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:MarketPayNotificationService\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notifications\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"MarketPayNotificationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:NotificationConfigurationService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\\n## Authentication\\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Notification/v6/createNotificationConfiguration\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notification Configuration API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/NotificationConfigurationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"NotificationConfigurationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PaymentService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\\n\\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\\n\\n## Authentication\\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@Company.YourCompany\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://pal-test.adyen.com/pal/servlet/Payment/v68/authorise\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payment API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PaymentService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PaymentService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PayoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\\n\\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\\n## Authentication\\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\\n\\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:\\n\\n```\\ncurl\\n-U \\\"storePayout@Company.[YourCompany]\\\":\\\"YourBasicAuthenticationPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new API credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PayoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PayoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":2361}}}]}"
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 2
},
{
"cell_type": "markdown",
"source": [
"Key/value (or rather \"name/value\") objects are wrapped in a dataframe (to have a working hierarchy).\n",
"Since we convert the top-level object to name/value we need to unpack it to see the result."
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "code",
"source": [
"val df1 = _df1.value.first()\n",
"df1"
],
"metadata": {
"collapsed": false,
"ExecuteTime": {
"end_time": "2025-05-27T14:18:58.496876Z",
"start_time": "2025-05-27T14:18:57.632850Z"
}
},
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_2()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_2\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1073741848&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;... showing only top 20 of 2361 rows&lt;&sol;p&gt;&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 2361, columnsCount = 2&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1forge.com&quot;,&quot;1password.com:events&quot;,&quot;1password.local:connect&quot;,&quot;6-dot-authentiqio.appspot.com&quot;,&quot;ably.io:platform&quot;,&quot;ably.net:control&quot;,&quot;abstractapi.com:geolocation&quot;,&quot;adafruit.com&quot;,&quot;adobe.com:aem&quot;,&quot;adyen.com:AccountService&quot;,&quot;adyen.com:BalancePlatformService&quot;,&quot;adyen.com:BinLookupService&quot;,&quot;adyen.com:CheckoutService&quot;,&quot;adyen.com:CheckoutUtilityService&quot;,&quot;adyen.com:FundService&quot;,&quot;adyen.com:HopService&quot;,&quot;adyen.com:MarketPayNotificationService&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;adyen.com:NotificationConfigurationService&bsol;&quot;&gt;adyen.com:NotificationConfigurationSe&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;adyen.com:PaymentService&quot;,&quot;adyen.com:PayoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-05-30T08:34:14.000Z&quot;,&quot;2021-07-19T10:17:09.188Z&quot;,&quot;2021-04-16T15:56:45.939Z&quot;,&quot;2017-03-15T14:45:58.000Z&quot;,&quot;2019-07-13T11:28:07.000Z&quot;,&quot;2021-07-26T09:45:31.536Z&quot;,&quot;2021-04-14T17:12:40.648Z&quot;,&quot;2018-02-10T10:41:43.000Z&quot;,&quot;2019-01-03T07:01:34.000Z&quot;,&quot;2020-11-03T12:51:40.318Z&quot;,&quot;2021-06-14T12:42:12.263Z&quot;,&quot;2020-11-03T12:51:40.318Z&quot;,&quot;2021-11-01T23:17:40.475Z&quot;,&quot;2021-06-18T13:57:32.889Z&quot;,&quot;2020-11-03T12:51:40.318Z&quot;,&quot;2020-11-03T12:51:40.318Z&quot;,&quot;2021-06-21T10:54:37.877Z&quot;,&quot;2020-11-03T12:51:40.318Z&quot;,&quot;2021-11-01T23:17:40.475Z&quot;,&quot;2021-11-01T23:17:40.475Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;preferred: String&bsol;&quot;&gt;preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;,&quot;1.0.0&quot;,&quot;1.3.0&quot;,&quot;6&quot;,&quot;1.1.0&quot;,&quot;1.0.14&quot;,&quot;1.0.0&quot;,&quot;2.0.0&quot;,&quot;3.5.0-pre.0&quot;,&quot;6&quot;,&quot;1&quot;,&quot;50&quot;,&quot;68&quot;,&quot;1&quot;,&quot;6&quot;,&quot;6&quot;,&quot;6&quot;,&quot;6&quot;,&quot;68&quot;,&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;versions: DataFrame&lt;*&gt;&bsol;&quot;&gt;versions&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741849, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741850, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741851, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741852, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741853, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741854, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741855, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741856, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741857, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741858, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741859, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741860, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741861, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741862, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741863, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741864, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741865, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741866, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741867, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741868, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-05-30T08:34:14.000Z&bsol;npreferred: 0.0.1&bsol;nversions: key value&bsol;n 0 0.0.1 { added:2017-05-30T08:34:14.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-05-30T08:34:14.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188Z&bsol;npreferred: 1.0.0&bsol;nversions: key value&bsol;n 0 1.0.0 { added:2021-07-19T10:17:09.188Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939Z&bsol;npreferred: 1.3.0&bsol;nversions: key value&bsol;n 0 1.3.0 { added:2021-04-16T15:56:45.939Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58.000Z&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2017-03-15T14:45:58.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07.000Z&bsol;npreferred: 1.1.0&bsol;nversions: key value&bsol;n 0 1.1.0 { added:2019-07-13T11:28:07.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-26T09:45:31.536Z&bsol;npreferred: 1.0.14&bsol;nversions: key value&bsol;n 0 1.0.14 { added:2021-07-26T09:45:31.536Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-26T09:45:31.536Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-14T17:12:40.648Z&bsol;npreferred: 1.0.0&bsol;nversions: key value&bsol;n 0 1.0.0 { added:2021-04-14T17:12:40.648Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-14T17:12:40.648Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2018-02-10T10:41:43.000Z&bsol;npreferred: 2.0.0&bsol;nversions: key value&bsol;n 0 2.0.0 { added:2018-02-10T10:41:43.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2018-02-10T10:41:43.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-01-03T07:01:34.000Z&bsol;npreferred: 3.5.0-pre.0&bsol;nversions: key value&bsol;n 0 3.5.0-pre.0 { added:2019-01-03T07:01:34.000Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-01-03T07:01:34.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-14T12:42:12.263Z&bsol;npreferred: 1&bsol;nversions: key value&bsol;n 0 1 { added:2021-06-14T12:42:12.263Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-14T12:42:12.263Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;npreferred: 50&bsol;nversions: key value&bsol;n 0 50 { added:2020-11-03T12:51:40.318Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475Z&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-18T13:57:32.889Z&bsol;npreferred: 1&bsol;nversions: key value&bsol;n 0 1 { added:2021-06-18T13:57:32.889Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-18T13:57:32.889Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-21T10:54:37.877Z&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2021-06-21T10:54:37.877Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-21T10:54:37.877Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475Z&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475Z&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475Z, inf...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741848, rootId: 1073741848, totalRows: 2361 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-05-30T08:34:14.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;contact@1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Forge&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: contact@1forge.com&bsol;nname: 1Forge&bsol;nurl: http:&sol;&sol;1forge.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;contact@1forge.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Stock and Forex Data and Realtime Quotes&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Forge Finance APIs&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;financial&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;financial&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;backgroundColor: String&bsol;&quot;&gt;backgroundColor&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;#24292e&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;backgroundColor: #24292e&bsol;nurl: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;backgroundColor: &lt;&sol;span&gt;#24292e&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;ht&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741869, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 9, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:contact@1forge.com, name:1Forge, url:http:&sol;&sol;1forge.com }&bsol;ndescription: Stock and Forex Data and Realtime Quotes&bsol;ntitle: 1Forge Finance APIs&bsol;nversion: 0.0.1&bsol;nx-apisguru-categories: [financial]&bsol;nx-logo: { backgroundColor:#24292e, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg }&bsol;nx-origin: format url version&bsol;n 0 swagger http:&sol;&sol;1forge.com&sol;openapi.json 2.0&bsol;n&bsol;nx-providerName: 1forge.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;con&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-06-27T16:49:57.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 15, 16, 17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-05-30T08:34:14.000Z&bsol;ninfo: { contact:{ email:contact@1forge.com, name:1Forge, url:http:&sol;&sol;1forge.com }, description:Stock and Forex Data and Realtime Quotes, title:1Forge Finance APIs, version:0.0.1, x-apisguru-categories:[financial], x-logo:{ backgroundColor:#24292e, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg }, x-origin:[1 x 3] { format:swagger, url:http:&sol;&sol;1forge.com&sol;openapi.json, version:2.0 }, x-providerName:1forge.com }&bsol;nupdated: 2017-06-27T16:49:57.000Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.yaml&bsol;nopenapiVer: 2.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-05-30T08:34:14.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741849, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-19T10:17:09.188Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Events API Specification.&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Events API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741870, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;events&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9, 10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: 1Password Events API Specification.&bsol;ntitle: Events API&bsol;nversion: 1.0.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.com&bsol;nx-serviceName: events&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;1Password Event&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-22T10:32:52.774Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 11, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188Z&bsol;ninfo: { description:1Password Events API Specification., title:Events API, version:1.0.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml, version:3.0 }, x-providerName:1password.com, x-serviceName:events }&bsol;nupdated: 2021-07-22T10:32:52.774Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741850, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-04-16T15:56:45.939Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Integrations&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;support.1password.com&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@1password.com&bsol;nname: 1Password Integrations&bsol;nurl: https:&sol;&sol;support.1password.com&sol;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@1password.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;REST API interface for 1Password Connect.&bsol;&quot;&gt;REST API interface for 1Password Conn&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741871, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.local&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 9, 11, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }&bsol;ndescription: REST API interface for 1Password Connect.&bsol;ntitle: 1Password Connect&bsol;nversion: 1.3.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.local&bsol;nx-serviceName: connect&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T08:51:53.432Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.2&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 15, 16, 17, 18, 19], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939Z&bsol;ninfo: { contact:{ email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }, description:REST API interface for 1Password Connect., title:1Password Connect, version:1.3.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml, version:3.0 }, x-providerName:1password.local, x-serviceName:connect }&bsol;nupdated: 2021-07-26T08:51:53.432Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.2&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741851, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-03-15T14:45:58.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;hello@authentiq.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.io&sol;support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: hello@authentiq.com&bsol;nname: Authentiq team&bsol;nurl: http:&sol;&sol;authentiq.io&sol;support&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hello@authentiq.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Strong authentication, without the passwords.&bsol;&quot;&gt;Strong authentication, without the pa&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Apache 2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENS&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;license: DataRow&lt;*&gt;&bsol;&quot;&gt;license&lt;&sol;span&gt;&quot;, children: [7, 8], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;name: Apache 2.0&bsol;nurl: http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name: &lt;&sol;span&gt;Apache 2.0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;http:&sol;&sol;www&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.com&sol;terms&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;backgroundColor: String&bsol;&quot;&gt;backgroundColor&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;#F26641&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;backgroundColor: #F26641&bsol;nurl: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;backgroundColor: &lt;&sol;span&gt;#F26641&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;ht&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741872, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6-dot-authentiqio.appspot.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 9, 10, 11, 12, 13, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }&bsol;ndescription: Strong authentication, without the passwords.&bsol;nlicense: { name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }&bsol;ntermsOfService: http:&sol;&sol;authentiq.com&sol;terms&sol;&bsol;ntitle: Authentiq API&bsol;nversion: 6&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Aut... 3.0&bsol;n&bsol;nx-providerName: 6-dot-authentiqio.appspot.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hel&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58.000Z&bsol;ninfo: { contact:{ email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }, description:Strong authentication, without the passwords., license:{ name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }, termsOfService:http:&sol;&sol;authentiq.com&sol;terms&sol;, title:Authentiq API, version:6, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml, version:3.0 }, x-providerName:6-dot-authentiqio.appspot.com }&bsol;nupdated: 2021-06-21T12:16:53.715Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741852, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2019-07-13T11:28:07.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Ably Support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;www.ably.io&sol;contact&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ablyrealtime&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@ably.io&bsol;nname: Ably Support&bsol;nurl: https:&sol;&sol;www.ably.io&sol;contact&bsol;nx-twitter: ablyrealtime&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@ably.io&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;&quot;&gt;The [REST API specification](https:&sol;&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Platform API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cloud&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;cloud&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741873, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;platform&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }&bsol;ndescription: The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;ntitle: Platform API&bsol;nversion: 1.1.0&bsol;nx-apisguru-categories: [cloud]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;abl... 3.0&bsol;n&bsol;nx-providerName: ably.io&bsol;nx-serviceName: platform&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:42:14.653Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 16, 17, 18, 19, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07.000Z&bsol;ninfo: { contact:{ email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }, description:The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably., title:Platform API, version:1.1.0, x-apisguru-categories:[cloud], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml, version:3.0 }, x-providerName:ably.io, x-serviceName:platform }&bsol;nupdated: 2021-07-26T09:42:14.653Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741853, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.14&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:45:31.536Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ablyrealtime&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;x-twitter: ablyrealtime&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;x-twitter: &lt;&sol;span&gt;ablyrealtime&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&bsol;n&bsol;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&bsol;n&bsol;nControl API is currently in Beta.&bsol;n&bsol;&quot;&gt;Use the Control API to manage your ap&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Control API v1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.14&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cloud&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;cloud&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [8], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741874, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ably.net&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;control&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6, 7, 9, 10, 11, 12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { x-twitter:ablyrealtime }&bsol;ndescription: Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&bsol;n&bsol;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&bsol;n&bsol;nControl API is currently in Beta.&bsol;n&bsol;ntitle: Control API v1&bsol;nversion: 1.0.14&bsol;nx-apisguru-categories: [cloud]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;abl... 3.0&bsol;n&bsol;nx-providerName: ably.net&bsol;nx-serviceName: control&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;x-twitter: &lt;&sol;span&gt;ably&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:47:48.565Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.n&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.n&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 13, 14, 15, 16, 17], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-26T09:45:31.536Z&bsol;ninfo: { contact:{ x-twitter:ablyrealtime }, description:Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&amp;#92;n&amp;#92;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&amp;#92;n&amp;#92;nControl API is currently in Beta.&amp;#92;n, title:Control API v1, version:1.0.14, x-apisguru-categories:[cloud], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;control-v1.yaml, version:3.0 }, x-providerName:ably.net, x-serviceName:control }&bsol;nupdated: 2021-07-26T09:47:48.565Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-26T09:45:31.536Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741854, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-04-14T17:12:40.648Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.&bsol;&quot;&gt;Abstract IP geolocation API allows de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;IP geolocation API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;location&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;location&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741875, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;abstractapi.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;geolocation&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9, 10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.&bsol;ntitle: IP geolocation API&bsol;nversion: 1.0.0&bsol;nx-apisguru-categories: [location]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;documentation.abstractapi.com... 3.0&bsol;n&bsol;nx-providerName: abstractapi.com&bsol;nx-serviceName: geolocation&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;Abstract IP geo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;API Documentation&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs&bsol;&quot;&gt;https:&sol;&sol;www.abstractapi.com&sol;ip-geoloc&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [12, 13], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: API Documentation&bsol;nurl: https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;API Documentation&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;u...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstra&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstra&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 11, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-14T17:12:40.648Z&bsol;ninfo: { description:Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP., title:IP geolocation API, version:1.0.0, x-apisguru-categories:[location], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;documentation.abstractapi.com&sol;ip-geolocation-openapi.json, version:3.0 }, x-providerName:abstractapi.com, x-serviceName:geolocation }&bsol;nexternalDocs: { description:API Documentation, url:https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs }&bsol;nupdated: 2021-06-21T12:16:53.715Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-14T17:12:40.648Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741855, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2018-02-10T10:41:43.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;### The Internet of Things for Everyone&bsol;n&bsol;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&bsol;n&bsol;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&bsol;n&bsol;n#### Authentication&bsol;n&bsol;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key &amp;#34;io_key_12345&amp;#34; could look like this:&bsol;n&bsol;n $ curl -H &amp;#34;X-AIO-Key: io_key_12345&amp;#34; https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&bsol;n&bsol;nOr like this:&bsol;n&bsol;n $ curl &amp;#34;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds?X-AIO-Key=io_key_12345&bsol;n&bsol;nUsing the node.js [request](https:&sol;&sol;github.com&sol;request&sol;request) library, IO HTTP requests are as easy as:&bsol;n&bsol;n```js&bsol;nvar request = require(&amp;#39;request&amp;#39;);&bsol;n&bsol;nvar options = {&bsol;n url: &amp;#39;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&amp;#39;,&bsol;n headers: {&bsol;n &amp;#39;X-AIO-Key&amp;#39;: &amp;#39;io_key_12345&amp;#39;,&bsol;n &amp;#39;Content-Type&amp;#39;: &amp;#39;application&sol;json&amp;#39;&bsol;n }&bsol;n};&bsol;n&bsol;nfunction callback(error, response, body) {&bsol;n if (!error &amp;#38;&amp;#38; response.statusCode == 200) {&bsol;n var feeds = JSON.parse(body);&bsol;n console.log(feeds.length + &amp;#34; FEEDS AVAILABLE&amp;#34;);&bsol;n&bsol;n feeds.forEach(function (feed) {&bsol;n console.log(feed.name, feed.key);&bsol;n })&bsol;n }&bsol;n}&bsol;n&bsol;nrequest(options, callback);&bsol;n```&bsol;n&bsol;nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):&bsol;n&bsol;n```arduino&bsol;n&sol;&sol;&sol; based on&bsol;n&sol;&sol;&sol; https:&sol;&sol;github.com&sol;esp8266&sol;Arduino&sol;blob&sol;master&sol;libraries&sol;ESP8266HTTPClient&sol;examples&sol;Authorization&sol;Authorization.ino&bsol;n&bsol;n#include &amp;#60;Arduino.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFi.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFiMulti.h&amp;#62;&bsol;n#include &amp;#60;ESP8266HTTPClient.h&amp;#62;&bsol;n&bsol;nESP8266WiFiMulti WiFiMulti;&bsol;n&bsol;nconst char* ssid = &amp;#34;---&amp;#34;;&bsol;nconst char* password = &amp;#34;---&amp;#34;;&bsol;n&bsol;nconst char* host = &amp;#34;io.adafruit.com&amp;#34;;&bsol;n&bsol;nconst char* io_key = &amp;#34;---&amp;#34;;&bsol;nconst char* path_with_username = &amp;#34;&sol;api&sol;v2&sol;---&sol;dashboards&amp;#34;;&bsol;n&bsol;n&sol;&sol; Use web browser to view and copy&bsol;n&sol;&sol; SHA1 fingerprint of the certificate&bsol;nconst char* fingerprint = &amp;#34;77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18&amp;#34;;&bsol;n&bsol;nvoid setup() {&bsol;n Serial.begin(115200);&bsol;n&bsol;n for(uint8_t t = 4; t &amp;#62; 0; t--) {&bsol;n Serial.printf(&amp;#34;[SETUP] WAIT %d...&amp;#92;n&amp;#34;, t);&bsol;n Serial.flush();&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n WiFi.mode(WIFI_STA);&bsol;n WiFiMulti.addAP(ssid, password);&bsol;n&bsol;n &sol;&sol; wait for WiFi connection&bsol;n while(WiFiMulti.run() != WL_CONNECTED) {&bsol;n Serial.print(&amp;#39;.&amp;#39;);&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n Serial.println(&amp;#34;[WIFI] connected!&amp;#34;);&bsol;n&bsol;n HTTPClient http;&bsol;n&bsol;n &sol;&sol; start request with URL and TLS cert fingerprint for verification&bsol;n http.begin(&amp;#34;https:&sol;&sol;&amp;#34; + String(host) + String(path_with_username), fingerprint);&bsol;n&bsol;n &sol;&sol; IO API authentication&bsol;n http.addHeader(&amp;#34;X-AIO-Key&amp;#34;, io_key);&bsol;n&bsol;n &sol;&sol; start connection and send HTTP header&bsol;n int httpCode = http.GET();&bsol;n&bsol;n &sol;&sol; httpCode will be negative on error&bsol;n if(httpCode &amp;#62; 0) {&bsol;n &sol;&sol; HTTP header has been send and Server response header has been handled&bsol;n Serial.printf(&amp;#34;[HTTP] GET response: %d&amp;#92;n&amp;#34;, httpCode);&bsol;n&bsol;n &sol;&sol; HTTP 200 OK&bsol;n if(httpCode == HTTP_CODE_OK) {&bsol;n String payload = http.getString();&bsol;n Serial.println(payload);&bsol;n }&bsol;n&bsol;n http.end();&bsol;n }&bsol;n}&bsol;n&bsol;nvoid loop() {}&bsol;n```&bsol;n&bsol;n#### Client Libraries&bsol;n&bsol;nWe have client libraries to help you get started with your project: [Python](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-python), [Ruby](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-ruby), [Arduino C++](https:&sol;&sol;github.com&sol;adafruit&sol;Adafruit_IO_Arduino), [Javascript](https:&sol;&sol;github.com&sol;adafruit&sol;adafruit-io-node), and [Go](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-go) are available. They&amp;#39;re all open source, so if they don&amp;#39;t already do what you want, you can fork and add any feature you&amp;#39;d like.&bsol;n&bsol;n&bsol;&quot;&gt;### The Internet of Things for Everyo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adafruit IO REST API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;iot&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;iot&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741876, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adafruit.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: ### The Internet of Things for Everyone&bsol;n&bsol;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&bsol;n&bsol;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&bsol;n&bsol;n#### Authentication&bsol;n&bsol;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key &amp;#34;io_key_12345&amp;#34; could look like this:&bsol;n&bsol;n $ curl -H &amp;#34;X-AIO-Key: io_key_12345&amp;#34; https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&bsol;n&bsol;nOr like this:&bsol;n&bsol;n $ curl &amp;#34;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds?X-AIO-Key=io_key_12345&bsol;n&bsol;nUsing the node.js [request](https:&sol;&sol;github.com&sol;request&sol;request) library, IO HTTP requests are as easy as:&bsol;n&bsol;n```js&bsol;nvar request = require(&amp;#39;request&amp;#39;);&bsol;n&bsol;nvar options = {&bsol;n url: &amp;#39;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&amp;#39;,&bsol;n headers: {&bsol;n &amp;#39;X-AIO-Key&amp;#39;: &amp;#39;io_key_12345&amp;#39;,&bsol;n &amp;#39;Content-Type&amp;#39;: &amp;#39;application&sol;json&amp;#39;&bsol;n }&bsol;n};&bsol;n&bsol;nfunction callback(error, response, body) {&bsol;n if (!error &amp;#38;&amp;#38; response.statusCode == 200) {&bsol;n var feeds = JSON.parse(body);&bsol;n console.log(feeds.length + &amp;#34; FEEDS AVAILABLE&amp;#34;);&bsol;n&bsol;n feeds.forEach(function (feed) {&bsol;n console.log(feed.name, feed.key);&bsol;n })&bsol;n }&bsol;n}&bsol;n&bsol;nrequest(options, callback);&bsol;n```&bsol;n&bsol;nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):&bsol;n&bsol;n```arduino&bsol;n&sol;&sol;&sol; based on&bsol;n&sol;&sol;&sol; https:&sol;&sol;github.com&sol;esp8266&sol;Arduino&sol;blob&sol;master&sol;libraries&sol;ESP8266HTTPClient&sol;examples&sol;Authorization&sol;Authorization.ino&bsol;n&bsol;n#include &amp;#60;Arduino.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFi.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFiMulti.h&amp;#62;&bsol;n#include &amp;#60;ESP8266HTTPClient.h&amp;#62;&bsol;n&bsol;nESP8266WiFiMulti WiFiMulti;&bsol;n&bsol;nconst char* ssid = &amp;#34;---&amp;#34;;&bsol;nconst char* password = &amp;#34;---&amp;#34;;&bsol;n&bsol;nconst char* host = &amp;#34;io.adafruit.com&amp;#34;;&bsol;n&bsol;nconst char* io_key = &amp;#34;---&amp;#34;;&bsol;nconst char* path_with_username = &amp;#34;&sol;api&sol;v2&sol;---&sol;dashboards&amp;#34;;&bsol;n&bsol;n&sol;&sol; Use web browser to view and copy&bsol;n&sol;&sol; SHA1 fingerprint of the certificate&bsol;nconst char* fingerprint = &amp;#34;77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18&amp;#34;;&bsol;n&bsol;nvoid setup() {&bsol;n Serial.begin(115200);&bsol;n&bsol;n for(uint8_t t = 4; t &amp;#62; 0; t--) {&bsol;n Serial.printf(&amp;#34;[SETUP] WAIT %d...&amp;#92;n&amp;#34;, t);&bsol;n Serial.flush();&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n WiFi.mode(WIFI_STA);&bsol;n WiFiMulti.addAP(ssid, password);&bsol;n&bsol;n &sol;&sol; wait for WiFi connection&bsol;n while(WiFiMulti.run() != WL_CONNECTED) {&bsol;n Serial.print(&amp;#39;.&amp;#39;);&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n Serial.println(&amp;#34;[WIFI] connected!&amp;#34;);&bsol;n&bsol;n HTTPClient http;&bsol;n&bsol;n &sol;&sol; start request with URL and TLS cert fingerprint for verification&bsol;n http.begin(&amp;#34;https:&sol;&sol;&amp;#34; + String(host) + String(path_with_username), fingerprint);&bsol;n&bsol;n &sol;&sol; IO API authentication&bsol;n http.addHeader(&amp;#34;X-AIO-Key&amp;#34;, io_key);&bsol;n&bsol;n &sol;&sol; start connection and send HTTP header&bsol;n int httpCode = http.GET();&bsol;n&bsol;n &sol;&sol; httpCode will be negative on error&bsol;n if(httpCode &amp;#62; 0) {&bsol;n &sol;&sol; HTTP header has been send and Server response header has been handled&bsol;n Serial.printf(&amp;#34;[HTTP] GET response: %d&amp;#92;n&amp;#34;, httpCode);&bsol;n&bsol;n &sol;&sol; HTTP 200 OK&bsol;n if(httpCode == HTTP_CODE_OK) {&bsol;n String payload = http.getString();&bsol;n Serial.println(payload);&bsol;n }&bsol;n&bsol;n http.end();&bsol;n }&bsol;n}&bsol;n&bsol;nvoid loop() {}&bsol;n```&bsol;n&bsol;n#### Client Libraries&bsol;n&bsol;nWe have client libraries to help you get started with your project: [Python](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-python), [Ruby](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-ruby), [Arduino C++](https:&sol;&sol;github.com&sol;adafruit&sol;Adafruit_IO_Arduino), [Javascript](https:&sol;&sol;github.com&sol;adafruit&sol;adafruit-io-node), and [Go](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-go) are available. They&amp;#39;re all open source, so if they don&amp;#39;t already do what you want, you can fork and add any feature you&amp;#39;d like.&bsol;n&bsol;n&bsol;ntitle: Adafruit IO REST API&bsol;nversion: 2.0.0&bsol;nx-apisguru-categories: [iot]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 swagger https:&sol;&sol;raw.githubusercontent.com&sol;ada... 2.0&bsol;n&bsol;nx-providerName: adafruit.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;### The Interne&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafru&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafru&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 10, 11, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2018-02-10T10:41:43.000Z&bsol;ninfo: { description:### The Internet of Things for Everyone&amp;#92;n&amp;#92;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&amp;#92;n&amp;#92;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&amp;#92;n&amp;#92;n#### Authentication&amp;#92;n&amp;#92;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key..., title:Adafruit IO REST API, version:2.0.0, x-apisguru-categories:[iot], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https:&sol;&sol;raw.githubusercontent.com&sol;adafruit&sol;io-api&sol;gh-pages&sol;v2.json, version:2.0 }, x-providerName:adafruit.com }&bsol;nupdated: 2021-06-21T12:16:53.715Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.yaml&bsol;nopenapiVer: 2.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2018-02-10T10:41:43.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741856, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.5.0-pre.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2019-01-03T07:01:34.000Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;opensource@shinesolutions.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Shine Solutions&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;shinesolutions.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adobe&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: opensource@shinesolutions.com&bsol;nname: Shine Solutions&bsol;nurl: http:&sol;&sol;shinesolutions.com&bsol;nx-twitter: Adobe&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;opensource@shinesolut&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API&bsol;&quot;&gt;Swagger AEM is an OpenAPI specificati&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adobe Experience Manager (AEM) API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.5.0-pre.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;marketing&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;marketing&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741877, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adobe.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;aem&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-unofficialSpec: Boolean&bsol;&quot;&gt;x-unofficialSpec&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 12, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:opensource@shinesolutions.com, name:Shine Solutions, url:http:&sol;&sol;shinesolutions.com, x-twitter:Adobe }&bsol;ndescription: Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API&bsol;ntitle: Adobe Experience Manager (AEM) API&bsol;nversion: 3.5.0-pre.0&bsol;nx-apisguru-categories: [marketing]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;shi... 3.0&bsol;n&bsol;nx-providerName: adobe.com&bsol;nx-serviceName: aem&bsol;nx-unofficialSpec: true&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;ope&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 17, 18, 19, 20, 21], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-01-03T07:01:34.000Z&bsol;ninfo: { contact:{ email:opensource@shinesolutions.com, name:Shine Solutions, url:http:&sol;&sol;shinesolutions.com, x-twitter:Adobe }, description:Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API, title:Adobe Experience Manager (AEM) API, version:3.5.0-pre.0, x-apisguru-categories:[marketing], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;shinesolutions&sol;swagger-aem&sol;master&sol;conf&sol;api.yml, version:3.0 }, x-providerName:adobe.com, x-serviceName:aem, x-unofficialSpec:true }&bsol;nupdated: 2021-06-21T12:16:53.715Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-01-03T07:01:34.000Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741857, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Account&sol;v6&sol;createAccountHolder&bsol;n```&bsol;&quot;&gt;The Account API provides endpoints fo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Account API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741878, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;AccountService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Account&sol;v6&sol;createAccountHolder&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Account API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: AccountService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&amp;#92;n## Authentication&amp;#92;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Acc..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Account API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;AccountService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:AccountService }&bsol;nupdated: 2021-11-12T23:18:19.544Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741858, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-14T12:42:12.263Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&bsol;n&bsol;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&bsol;n&bsol;n ## Authentication&bsol;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&bsol;n&bsol;n ```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n&bsol;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n## Versioning&bsol;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v1&bsol;n```&bsol;n## Going live&bsol;nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https:&sol;&sol;balanceplatform-api-live.adyen.com&sol;bcl&sol;v1`.&bsol;n&bsol;nFor more information, refer to our [Going live documentation](https:&sol;&sol;docs.adyen.com&sol;issuing&sol;integration-checklist#going-live).&bsol;&quot;&gt;The Balance Platform API enables you &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Issuing: Balance Platform API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741879, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;BalancePlatformService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&bsol;n&bsol;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&bsol;n&bsol;n ## Authentication&bsol;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&bsol;n&bsol;n ```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n&bsol;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n## Versioning&bsol;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v1&bsol;n```&bsol;n## Going live&bsol;nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https:&sol;&sol;balanceplatform-api-live.adyen.com&sol;bcl&sol;v1`.&bsol;n&bsol;nFor more information, refer to our [Going live documentation](https:&sol;&sol;docs.adyen.com&sol;issuing&sol;integration-checklist#going-live).&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Issuing: Balance Platform API&bsol;nversion: 1&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: BalancePlatformService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-22T23:16:57.458Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 18, 19, 20, 21, 22], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-14T12:42:12.263Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&amp;#92;n&amp;#92;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&amp;#92;n&amp;#92;n ## Authentication&amp;#92;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&amp;#92;n&amp;#92;n ```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;n&amp;#92;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;n## Versioning&amp;#92;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&amp;#92;n&amp;#92;nFor example:&amp;#92;n```&amp;#92;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Issuing: Balance Platform API, version:1, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BalancePlatformService-v1.json, version:3.1 }, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BalancePlatformService }&bsol;nupdated: 2021-11-22T23:16:57.458Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-14T12:42:12.263Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741859, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;50&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.&bsol;&quot;&gt;The BIN Lookup API provides endpoints&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen BinLookup API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;50&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741880, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;BinLookupService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen BinLookup API&bsol;nversion: 50&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: BinLookupService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen BinLookup API, version:50, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BinLookupService-v50.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BinLookupService }&bsol;nupdated: 2021-11-01T23:17:40.475Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741860, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&bsol;n&bsol;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&bsol;n&bsol;n## Authentication&bsol;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v68&sol;payments&bsol;n```&bsol;&quot;&gt;Adyen Checkout API provides a simple &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Checkout API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741881, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;CheckoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&bsol;n&bsol;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&bsol;n&bsol;n## Authentication&bsol;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v68&sol;payments&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Checkout API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: CheckoutService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&amp;#92;n&amp;#92;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&amp;#92;n&amp;#92;n## Authentication&amp;#92;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developmen..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Checkout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;CheckoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:CheckoutService }&bsol;nupdated: 2021-11-12T23:18:19.544Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741861, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-18T13:57:32.889Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;support.adyen.com&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@adyen.com&bsol;nname: Adyen Support&bsol;nurl: https:&sol;&sol;support.adyen.com&sol;&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@adyen.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;na...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A web service containing utility functions available for merchants integrating with Checkout APIs.&bsol;n## Authentication&bsol;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&bsol;n```&bsol;&quot;&gt;A web service containing utility func&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions&bsol;&quot;&gt;https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-co&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Checkout Utility Service&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741882, value: &quot;&lt;b&gt;DataFrame 1 x 4&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;CheckoutUtilityService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@adyen.com, name:Adyen Support, url:https:&sol;&sol;support.adyen.com&sol;, x-twitter:Adyen }&bsol;ndescription: A web service containing utility functions available for merchants integrating with Checkout APIs.&bsol;n## Authentication&bsol;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions&bsol;ntitle: Adyen Checkout Utility Service&bsol;nversion: 1&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: converter format url version&bsol;n 0 { url:https:&sol;&sol;github.com&sol;lucybot&sol;api-... openapi https:&sol;&sol;raw.githubusercontent.com&sol;ady... 3.0&bsol;n&bsol;nx-providerName: adyen.com&bsol;nx-serviceName: CheckoutUtilityService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-18T13:57:32.889Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 17, 18, 19, 20, 21], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-18T13:57:32.889Z&bsol;ninfo: { contact:{ email:support@adyen.com, name:Adyen Support, url:https:&sol;&sol;support.adyen.com&sol;, x-twitter:Adyen }, description:A web service containing utility functions available for merchants integrating with Checkout APIs.&amp;#92;n## Authentication&amp;#92;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&amp;#92;n&amp;#92;nFor example:&amp;#92;n```&amp;#92;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&amp;#92;n```, termsOfService:https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions, title:Adyen Checkout Utility Service, version:1, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 4] { converter:{ url:https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter, version:2.7.11 }, format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;adyen&sol;adyen-openapi&sol;master&sol;specs&sol;3.0&sol;CheckoutUtilityService-v1.json, version:3.0 }, x-providerName:adyen.com, x-serviceName:CheckoutUtilityService }&bsol;nupdated: 2021-06-18T13:57:32.889Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-18T13:57:32.889Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741862, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Fund&sol;v6&sol;accountHolderBalance&bsol;n```&bsol;&quot;&gt;The Fund API provides endpoints for m&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Fund API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741883, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;FundService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Fund&sol;v6&sol;accountHolderBalance&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Fund API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: FundService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&amp;#92;n## Authentication&amp;#92;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Fund API supports versioning..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Fund API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;FundService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:FundService }&bsol;nupdated: 2021-11-01T23:17:40.475Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741863, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Hop&sol;v6&sol;getOnboardingUrl&bsol;n```&bsol;&quot;&gt;The Hosted onboarding API provides en&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Hosted Onboarding&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741884, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;HopService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Hop&sol;v6&sol;getOnboardingUrl&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Hosted Onboarding&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: HopService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&amp;#92;n&amp;#92;n## Authentication&amp;#92;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Hosted onboarding API suppo..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Hosted Onboarding, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;HopService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:HopService }&bsol;nupdated: 2021-11-01T23:17:40.475Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741864, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T10:54:37.877Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;&quot;&gt;The Notification API sends notificati&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Notifications&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741885, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;MarketPayNotificationService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Notifications&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: MarketPayNotificationService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-21T10:54:37.877Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications)., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Notifications, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;MarketPayNotificationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:MarketPayNotificationService }&bsol;nupdated: 2021-11-12T23:18:19.544Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-21T10:54:37.877Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741865, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;n## Authentication&bsol;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Notification&sol;v6&sol;createNotificationConfiguration&bsol;n```&bsol;&quot;&gt;The Notification Configuration API pr&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Adyen for Platforms: Notification Configuration API&bsol;&quot;&gt;Adyen for Platforms: Notification Con&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741886, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;NotificationConfigurationService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;n## Authentication&bsol;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Notification&sol;v6&sol;createNotificationConfiguration&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Notification Configuration API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: NotificationConfigurationService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&amp;#92;n## Authentication&amp;#92;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Notification Configuration API supports versioning of its endpoints through a ..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Notification Configuration API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;NotificationConfigurationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:NotificationConfigurationService }&bsol;nupdated: 2021-11-12T23:18:19.544Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741866, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&bsol;n&bsol;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Payment&sol;v68&sol;authorise&bsol;n```&bsol;&quot;&gt;A set of API endpoints that allow you&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Payment API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741887, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;PaymentService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&bsol;n&bsol;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Payment&sol;v68&sol;authorise&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Payment API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: PaymentService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&amp;#92;n&amp;#92;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&amp;#92;n&amp;#92;n## Authentication&amp;#92;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nPayments API supports versio..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Payment API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PaymentService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PaymentService }&bsol;nupdated: 2021-11-12T23:18:19.544Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741867, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: String&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&bsol;n&bsol;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&bsol;n## Authentication&bsol;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&bsol;n&bsol;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new API credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n&bsol;&quot;&gt;A set of API endpoints that allow you&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Payout API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741888, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;PayoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&bsol;n&bsol;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&bsol;n## Authentication&bsol;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&bsol;n&bsol;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new API credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Payout API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: PayoutService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: String&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544Z&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475Z&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&amp;#92;n&amp;#92;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&amp;#92;n## Authentication&amp;#92;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&amp;#92;n&amp;#92;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nWhen going ..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Payout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PayoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PayoutService }&bsol;nupdated: 2021-11-12T23:18:19.544Z&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475Z&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741868, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;swagger&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;1forge.com&sol;openapi.json&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"], id: 1073741869, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741870, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741871, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Aut&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741872, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;abl&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741873, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;control-v1.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;abl&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741874, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;documentation.abstractapi.com&sol;ip-geolocation-openapi.json&bsol;&quot;&gt;https:&sol;&sol;documentation.abstractapi.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741875, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;swagger&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;adafruit&sol;io-api&sol;gh-pages&sol;v2.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;ada&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"], id: 1073741876, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;shinesolutions&sol;swagger-aem&sol;master&sol;conf&sol;api.yml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;shi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741877, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;AccountService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741878, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BalancePlatformService-v1.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741879, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BinLookupService-v50.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741880, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;CheckoutService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741881, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter&bsol;&quot;&gt;https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-c&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.7.11&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;converter: DataRow&lt;*&gt;&bsol;&quot;&gt;converter&lt;&sol;span&gt;&quot;, children: [0, 1], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter&bsol;nversion: 2.7.11&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;github.com&sol;luc&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;v...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;adyen&sol;adyen-openapi&sol;master&sol;specs&sol;3.0&sol;CheckoutUtilityService-v1.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741882, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;FundService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741883, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;HopService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741884, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;MarketPayNotificationService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741885, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;NotificationConfigurationService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741886, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PaymentService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741887, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PayoutService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741888, rootId: 1073741848, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1073741848) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_2() {\n",
" let elem = document.getElementById(\"iframe_out_2\");\n",
" resize_iframe_out_2(elem);\n",
" setInterval(resize_iframe_out_2, 5000, elem);\n",
" }\n",
" function resize_iframe_out_2(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1073741889\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"bottomBorder\" style=\"text-align:left\">preferred</th><th class=\"bottomBorder\" style=\"text-align:left\">versions</th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1forge.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-05-30T08:34:14.000Z</td><td style=\"vertical-align:top\">0.0.1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741890\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder\" style=\"text-align:left\">x-logo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">backgroundColor</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">0.0.1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-05-30T08:34:14.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">contact@1forge.com</td><td style=\"vertical-align:top\">1Forge</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://1forge.com</td><td style=\"vertical-align:top\">Stock and Forex Data and Realtime Quotes</td><td style=\"vertical-align:top\">1Forge Finance APIs</td><td style=\"vertical-align:top\">0.0.1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[financial]</td><td class=\"leftBorder\" style=\"vertical-align:top\">#24292e</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741891\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">swagger</td><td style=\"vertical-align:top\">http://1forge.com/openapi.json</td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">1forge.com</td><td style=\"vertical-align:top\">2017-06-27T16:49:57.000Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.com:events</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188Z</td><td style=\"vertical-align:top\">1.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741892\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">1Password Events API Specification.</td><td style=\"vertical-align:top\">Events API</td><td style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741893\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">events</td><td style=\"vertical-align:top\">2021-07-22T10:32:52.774Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.local:connect</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939Z</td><td style=\"vertical-align:top\">1.3.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741894\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@1password.com</td><td style=\"vertical-align:top\">1Password Integrations</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://support.1password.com/</td><td style=\"vertical-align:top\">REST API interface for 1Password Conn<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">1Password Connect</td><td style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741895\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.local</td><td class=\"rightBorder\" style=\"vertical-align:top\">connect</td><td style=\"vertical-align:top\">2021-07-26T08:51:53.432Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.2</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58.000Z</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741896\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">license</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder\" style=\"text-align:left\">x-logo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">backgroundColor</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">hello@authentiq.com</td><td style=\"vertical-align:top\">Authentiq team</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://authentiq.io/support</td><td class=\"rightBorder\" style=\"vertical-align:top\">Strong authentication, without the pa<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">Apache 2.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">http://authentiq.com/terms/</td><td style=\"vertical-align:top\">Authentiq API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder\" style=\"vertical-align:top\">#F26641</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741897\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Aut<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ably.io:platform</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07.000Z</td><td style=\"vertical-align:top\">1.1.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741898\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@ably.io</td><td style=\"vertical-align:top\">Ably Support</td><td style=\"vertical-align:top\">https://www.ably.io/contact</td><td class=\"rightBorder\" style=\"vertical-align:top\">ablyrealtime</td><td style=\"vertical-align:top\">The [REST API specification](https://<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Platform API</td><td style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[cloud]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741899\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/abl<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">ably.io</td><td class=\"rightBorder\" style=\"vertical-align:top\">platform</td><td style=\"vertical-align:top\">2021-07-26T09:42:14.653Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ably.net:control</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-26T09:45:31.536Z</td><td style=\"vertical-align:top\">1.0.14</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741900\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.14</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-26T09:45:31.536Z</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">ablyrealtime</td><td style=\"vertical-align:top\">Use the Control API to manage your ap<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Control API v1</td><td style=\"vertical-align:top\">1.0.14</td><td class=\"rightBorder\" style=\"vertical-align:top\">[cloud]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741901\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/abl<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">ably.net</td><td class=\"rightBorder\" style=\"vertical-align:top\">control</td><td style=\"vertical-align:top\">2021-07-26T09:47:48.565Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">abstractapi.com:geolocation</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-14T17:12:40.648Z</td><td style=\"vertical-align:top\">1.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741902\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">externalDocs</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th class=\"rightBorder\" style=\"text-align:left\">url</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-14T17:12:40.648Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">Abstract IP geolocation API allows de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">IP geolocation API</td><td style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[location]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741903\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://documentation.abstractapi.com<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">abstractapi.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">geolocation</td><td class=\"leftBorder\" style=\"vertical-align:top\">API Documentation</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://www.abstractapi.com/ip-geoloc<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adafruit.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2018-02-10T10:41:43.000Z</td><td style=\"vertical-align:top\">2.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741904\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">2.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2018-02-10T10:41:43.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">### The Internet of Things for Everyo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adafruit IO REST API</td><td style=\"vertical-align:top\">2.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[iot]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741905\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">swagger</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/ada<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">adafruit.com</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adobe.com:aem</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-01-03T07:01:34.000Z</td><td style=\"vertical-align:top\">3.5.0-pre.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741906\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-serviceName</th><th class=\"rightBorder\" style=\"text-align:left\">x-unofficialSpec</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">3.5.0-pre.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-01-03T07:01:34.000Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">opensource@shinesolutions.com</td><td style=\"vertical-align:top\">Shine Solutions</td><td style=\"vertical-align:top\">http://shinesolutions.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">Adobe</td><td style=\"vertical-align:top\">Swagger AEM is an OpenAPI specificati<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adobe Experience Manager (AEM) API</td><td style=\"vertical-align:top\">3.5.0-pre.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[marketing]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741907\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/shi<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adobe.com</td><td style=\"vertical-align:top\">aem</td><td class=\"rightBorder\" style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:AccountService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741908\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Account API provides endpoints fo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Account API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741909\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">AccountService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:BalancePlatformService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-14T12:42:12.263Z</td><td style=\"vertical-align:top\">1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741910\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-14T12:42:12.263Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Balance Platform API enables you <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Issuing: Balance Platform API</td><td style=\"vertical-align:top\">1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741911\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">BalancePlatformService</td><td style=\"vertical-align:top\">2021-11-22T23:16:57.458Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:BinLookupService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741912\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The BIN Lookup API provides endpoints<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen BinLookup API</td><td style=\"vertical-align:top\">50</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741913\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">BinLookupService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:CheckoutService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741914\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">Adyen Checkout API provides a simple <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Checkout API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741915\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">CheckoutService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:CheckoutUtilityService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-18T13:57:32.889Z</td><td style=\"vertical-align:top\">1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741916\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-18T13:57:32.889Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@adyen.com</td><td style=\"vertical-align:top\">Adyen Support</td><td style=\"vertical-align:top\">https://support.adyen.com/</td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A web service containing utility func<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://docs.adyen.com/legal/terms-co<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Checkout Utility Service</td><td style=\"vertical-align:top\">1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 4]</summary><table class=\"dataframe\" id=\"static_df_1073741917\"><thead><tr><th style=\"text-align:left\">converter</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">format</th><th style=\"text-align:left\">url</th><th style=\"text-align:left\">version</th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">version</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">https://github.com/lucybot/api-spec-c<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">2.7.11</td><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adyen.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">CheckoutUtilityService</td><td style=\"vertical-align:top\">2021-06-18T13:57:32.889Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:FundService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741918\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Fund API provides endpoints for m<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Fund API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741919\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">FundService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:HopService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741920\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Hosted onboarding API provides en<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Hosted Onboarding</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741921\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">HopService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:MarketPayNotificationService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-21T10:54:37.877Z</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741922\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-21T10:54:37.877Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Notification API sends notificati<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Notifications</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741923\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">MarketPayNotificationService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:NotificationConfigurationSe<span class=\"structural\">...</span></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741924\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Notification Configuration API pr<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Notification Con<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741925\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">NotificationConfigurationService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:PaymentService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741926\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A set of API endpoints that allow you<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Payment API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741927\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">PaymentService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:PayoutService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741928\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475Z</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A set of API endpoints that allow you<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Payout API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741929\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">PayoutService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544Z</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1073741889\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":2361,\"ncol\":2},\"kotlin_dataframe\":[{\"key\":\"1forge.com\",\"value\":{\"data\":{\"added\":\"2017-05-30T08:34:14.000Z\",\"preferred\":\"0.0.1\",\"versions\":{\"data\":[{\"key\":\"0.0.1\",\"value\":{\"data\":{\"added\":\"2017-05-30T08:34:14.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"contact@1forge.com\",\"name\":\"1Forge\",\"url\":\"http://1forge.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Stock and Forex Data and Realtime Quotes\",\"title\":\"1Forge Finance APIs\",\"version\":\"0.0.1\",\"x-apisguru-categories\":[\"financial\"],\"x-logo\":{\"data\":{\"backgroundColor\":\"#24292e\",\"url\":\"https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"backgroundColor\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"swagger\",\"url\":\"http://1forge.com/openapi.json\",\"version\":\"2.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1forge.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2017-06-27T16:49:57.000Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.yaml\",\"openapiVer\":\"2.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"1password.com:events\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188Z\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188Z\",\"info\":{\"data\":{\"description\":\"1Password Events API Specification.\",\"title\":\"Events API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-events-reporting/1password-events-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.com\",\"x-serviceName\":\"events\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-22T10:32:52.774Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"1password.local:connect\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939Z\",\"preferred\":\"1.3.0\",\"versions\":{\"data\":[{\"key\":\"1.3.0\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@1password.com\",\"name\":\"1Password Integrations\",\"url\":\"https://support.1password.com/\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"REST API interface for 1Password Connect.\",\"title\":\"1Password Connect\",\"version\":\"1.3.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-connect/1password-connect-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.local\",\"x-serviceName\":\"connect\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T08:51:53.432Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml\",\"openapiVer\":\"3.0.2\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"6-dot-authentiqio.appspot.com\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58.000Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"hello@authentiq.com\",\"name\":\"Authentiq team\",\"url\":\"http://authentiq.io/support\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Strong authentication, without the passwords.\",\"license\":{\"data\":{\"name\":\"Apache 2.0\",\"url\":\"http://www.apache.org/licenses/LICENSE-2.0.html\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"termsOfService\":\"http://authentiq.com/terms/\",\"title\":\"Authentiq API\",\"version\":\"6\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"backgroundColor\":\"#F26641\",\"url\":\"https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"backgroundColor\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/issuer.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"6-dot-authentiqio.appspot.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"license\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.io:platform\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07.000Z\",\"preferred\":\"1.1.0\",\"versions\":{\"data\":[{\"key\":\"1.1.0\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@ably.io\",\"name\":\"Ably Support\",\"url\":\"https://www.ably.io/contact\",\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably.\",\"title\":\"Platform API\",\"version\":\"1.1.0\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/platform-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.io\",\"x-serviceName\":\"platform\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:42:14.653Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.net:control\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536Z\",\"preferred\":\"1.0.14\",\"versions\":{\"data\":[{\"key\":\"1.0.14\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\\n\\nDetailed information on using this API can be found in the Ably <a href=\\\"https://ably.com/documentation/control-api\\\">developer documentation</a>.\\n\\nControl API is currently in Beta.\\n\",\"title\":\"Control API v1\",\"version\":\"1.0.14\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/control-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.net\",\"x-serviceName\":\"control\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:47:48.565Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"abstractapi.com:geolocation\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648Z\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648Z\",\"info\":{\"data\":{\"description\":\"Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.\",\"title\":\"IP geolocation API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"location\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://documentation.abstractapi.com/ip-geolocation-openapi.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"abstractapi.com\",\"x-serviceName\":\"geolocation\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"externalDocs\":{\"data\":{\"description\":\"API Documentation\",\"url\":\"https://www.abstractapi.com/ip-geolocation-api#docs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"externalDocs\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adafruit.com\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43.000Z\",\"preferred\":\"2.0.0\",\"versions\":{\"data\":[{\"key\":\"2.0.0\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43.000Z\",\"info\":{\"data\":{\"description\":\"### The Internet of Things for Everyone\\n\\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\\n\\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\\n\\n#### Authentication\\n\\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username \\\"io_username\\\" and the key \\\"io_key_12345\\\" could look like this:\\n\\n $ curl -H \\\"X-AIO-Key: io_key_12345\\\" https://io.adafruit.com/api/v2/io_username/feeds\\n\\nOr like this:\\n\\n $ curl \\\"https://io.adafruit.com/api/v2/io_username/feeds?X-AIO-Key=io_key_12345\\n\\nUsing the node.js [request](https://github.com/request/request) library, IO HTTP requests are as easy as:\\n\\n```js\\nvar request = require('request');\\n\\nvar options = {\\n url: 'https://io.adafruit.com/api/v2/io_username/feeds',\\n headers: {\\n 'X-AIO-Key': 'io_key_12345',\\n 'Content-Type': 'application/json'\\n }\\n};\\n\\nfunction callback(error, response, body) {\\n if (!error && response.statusCode == 200) {\\n var feeds = JSON.parse(body);\\n console.log(feeds.length + \\\" FEEDS AVAILABLE\\\");\\n\\n feeds.forEach(function (feed) {\\n console.log(feed.name, feed.key);\\n })\\n }\\n}\\n\\nrequest(options, callback);\\n```\\n\\nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):\\n\\n```arduino\\n/// based on\\n/// https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266HTTPClient/examples/Authorization/Authorization.ino\\n\\n#include <Arduino.h>\\n#include <ESP8266WiFi.h>\\n#include <ESP8266WiFiMulti.h>\\n#include <ESP8266HTTPClient.h>\\n\\nESP8266WiFiMulti WiFiMulti;\\n\\nconst char* ssid = \\\"---\\\";\\nconst char* password = \\\"---\\\";\\n\\nconst char* host = \\\"io.adafruit.com\\\";\\n\\nconst char* io_key = \\\"---\\\";\\nconst char* path_with_username = \\\"/api/v2/---/dashboards\\\";\\n\\n// Use web browser to view and copy\\n// SHA1 fingerprint of the certificate\\nconst char* fingerprint = \\\"77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18\\\";\\n\\nvoid setup() {\\n Serial.begin(115200);\\n\\n for(uint8_t t = 4; t > 0; t--) {\\n Serial.printf(\\\"[SETUP] WAIT %d...\\\\n\\\", t);\\n Serial.flush();\\n delay(1000);\\n }\\n\\n WiFi.mode(WIFI_STA);\\n WiFiMulti.addAP(ssid, password);\\n\\n // wait for WiFi connection\\n while(WiFiMulti.run() != WL_CONNECTED) {\\n Serial.print('.');\\n delay(1000);\\n }\\n\\n Serial.println(\\\"[WIFI] connected!\\\");\\n\\n HTTPClient http;\\n\\n // start request with URL and TLS cert fingerprint for verification\\n http.begin(\\\"https://\\\" + String(host) + String(path_with_username), fingerprint);\\n\\n // IO API authentication\\n http.addHeader(\\\"X-AIO-Key\\\", io_key);\\n\\n // start connection and send HTTP header\\n int httpCode = http.GET();\\n\\n // httpCode will be negative on error\\n if(httpCode > 0) {\\n // HTTP header has been send and Server response header has been handled\\n Serial.printf(\\\"[HTTP] GET response: %d\\\\n\\\", httpCode);\\n\\n // HTTP 200 OK\\n if(httpCode == HTTP_CODE_OK) {\\n String payload = http.getString();\\n Serial.println(payload);\\n }\\n\\n http.end();\\n }\\n}\\n\\nvoid loop() {}\\n```\\n\\n#### Client Libraries\\n\\nWe have client libraries to help you get started with your project: [Python](https://github.com/adafruit/io-client-python), [Ruby](https://github.com/adafruit/io-client-ruby), [Arduino C++](https://github.com/adafruit/Adafruit_IO_Arduino), [Javascript](https://github.com/adafruit/adafruit-io-node), and [Go](https://github.com/adafruit/io-client-go) are available. They're all open source, so if they don't already do what you want, you can fork and add any feature you'd like.\\n\\n\",\"title\":\"Adafruit IO REST API\",\"version\":\"2.0.0\",\"x-apisguru-categories\":[\"iot\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"swagger\",\"url\":\"https://raw.githubusercontent.com/adafruit/io-api/gh-pages/v2.json\",\"version\":\"2.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adafruit.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.yaml\",\"openapiVer\":\"2.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adobe.com:aem\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34.000Z\",\"preferred\":\"3.5.0-pre.0\",\"versions\":{\"data\":[{\"key\":\"3.5.0-pre.0\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34.000Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"opensource@shinesolutions.com\",\"name\":\"Shine Solutions\",\"url\":\"http://shinesolutions.com\",\"x-twitter\":\"Adobe\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API\",\"title\":\"Adobe Experience Manager (AEM) API\",\"version\":\"3.5.0-pre.0\",\"x-apisguru-categories\":[\"marketing\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/shinesolutions/swagger-aem/master/conf/api.yml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adobe.com\",\"x-serviceName\":\"aem\",\"x-unofficialSpec\":true},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\",\"x-unofficialSpec\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"}]}},\"updated\":\"2021-06-21T12:16:53.715Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:AccountService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Account/v6/createAccountHolder\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Account API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/AccountService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"AccountService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BalancePlatformService\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263Z\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\\n\\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\\n\\n ## Authentication\\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\\n\\n ```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: YOUR_API_KEY\\\" \\\\\\n...\\n```\\n\\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-U \\\"ws@BalancePlatform.YOUR_BALANCE_PLATFORM\\\":\\\"YOUR_WS_PASSWORD\\\" \\\\\\n...\\n```\\n## Versioning\\nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://balanceplatform-api-test.adyen.com/bcl/v1\\n```\\n## Going live\\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https://balanceplatform-api-live.adyen.com/bcl/v1`.\\n\\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Issuing: Balance Platform API\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BalancePlatformService-v1.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BalancePlatformService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-22T23:16:57.458Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BinLookupService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"50\",\"versions\":{\"data\":[{\"key\":\"50\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen BinLookup API\",\"version\":\"50\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BinLookupService-v50.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BinLookupService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\\n\\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\\n\\n## Authentication\\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v68/payments\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Checkout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/CheckoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"CheckoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutUtilityService\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889Z\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@adyen.com\",\"name\":\"Adyen Support\",\"url\":\"https://support.adyen.com/\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A web service containing utility functions available for merchants integrating with Checkout APIs.\\n## Authentication\\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v1/originKeys\\n```\",\"termsOfService\":\"https://docs.adyen.com/legal/terms-conditions\",\"title\":\"Adyen Checkout Utility Service\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"converter\":{\"data\":{\"url\":\"https://github.com/lucybot/api-spec-converter\",\"version\":\"2.7.11\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/adyen/adyen-openapi/master/specs/3.0/CheckoutUtilityService-v1.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"converter\",\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":4,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-serviceName\":\"CheckoutUtilityService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-18T13:57:32.889Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.yaml\",\"openapiVer\":\"3.0.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:FundService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Fund/v6/accountHolderBalance\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Fund API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/FundService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"FundService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:HopService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\\n\\n## Authentication\\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Hop/v6/getOnboardingUrl\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Hosted Onboarding\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/HopService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"HopService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:MarketPayNotificationService\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notifications\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"MarketPayNotificationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:NotificationConfigurationService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\\n## Authentication\\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Notification/v6/createNotificationConfiguration\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notification Configuration API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/NotificationConfigurationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"NotificationConfigurationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PaymentService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\\n\\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\\n\\n## Authentication\\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@Company.YourCompany\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://pal-test.adyen.com/pal/servlet/Payment/v68/authorise\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payment API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PaymentService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PaymentService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PayoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475Z\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\\n\\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\\n## Authentication\\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\\n\\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:\\n\\n```\\ncurl\\n-U \\\"storePayout@Company.[YourCompany]\\\":\\\"YourBasicAuthenticationPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new API credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PayoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PayoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544Z\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}}]}"
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 3
},
{
"cell_type": "markdown",
"source": [
"Now, for this specific example it works, but admittedly it was a bit of a hassle, don't you think?\n",
"Plus, columns like \"added\" are still just Strings, while clearly, it should be Date objects.\n",
"\n",
"Now, you could write your own `@DataSchema` and read methods, but as it happens, ApiGuru has an OpenAPI declaration which includes all the type schemas the JSON will adhere to!\n",
"\n",
"This OpenAPI declaration contains all URLs the API provides, as well as the types of data those calls will return. OpenAPI declarations can be explored often on the API provider or, for instance, in IntelliJ.\n",
"From exploring the OpenAPI spec from Apis.guru we see that `/list.json` returns an `APIs` type and other types include `API`, `ApiVersion`, and `Metrics`.\n",
"\n",
"In Jupyter we can generate these types easily:"
],
"metadata": {
"collapsed": false
}
},
{
"cell_type": "code",
"source": [
"val ApiGuru = importDataSchema(File(\"ApiGuruOpenApi.yaml\"))"
],
"metadata": {
"collapsed": false,
"ExecuteTime": {
"end_time": "2025-05-27T14:19:07.749268Z",
"start_time": "2025-05-27T14:18:58.502745Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"Data schema successfully imported as ApiGuru: ApiGuruDataSchema"
]
},
"metadata": {},
"output_type": "display_data",
"jetTransient": {}
}
],
"execution_count": 4
},
{
"cell_type": "markdown",
"source": [
"And then we can directly read the JSON as one of the types:"
],
"metadata": {
"collapsed": false
}
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-27T14:19:12.885671Z",
"start_time": "2025-05-27T14:19:07.771798Z"
}
},
"cell_type": "code",
"source": [
"val df2 = ApiGuru.APIs.readJson(\"api_guru_list.json\")\n",
"\n",
"df2"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_3()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_3\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1073741930&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;... showing only top 20 of 2361 rows&lt;&sol;p&gt;&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 2361, columnsCount = 2&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1forge.com&quot;,&quot;1password.com:events&quot;,&quot;1password.local:connect&quot;,&quot;6-dot-authentiqio.appspot.com&quot;,&quot;ably.io:platform&quot;,&quot;ably.net:control&quot;,&quot;abstractapi.com:geolocation&quot;,&quot;adafruit.com&quot;,&quot;adobe.com:aem&quot;,&quot;adyen.com:AccountService&quot;,&quot;adyen.com:BalancePlatformService&quot;,&quot;adyen.com:BinLookupService&quot;,&quot;adyen.com:CheckoutService&quot;,&quot;adyen.com:CheckoutUtilityService&quot;,&quot;adyen.com:FundService&quot;,&quot;adyen.com:HopService&quot;,&quot;adyen.com:MarketPayNotificationService&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;adyen.com:NotificationConfigurationService&bsol;&quot;&gt;adyen.com:NotificationConfigurationSe&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;adyen.com:PaymentService&quot;,&quot;adyen.com:PayoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-05-30T08:34:14&quot;,&quot;2021-07-19T10:17:09.188&quot;,&quot;2021-04-16T15:56:45.939&quot;,&quot;2017-03-15T14:45:58&quot;,&quot;2019-07-13T11:28:07&quot;,&quot;2021-07-26T09:45:31.536&quot;,&quot;2021-04-14T17:12:40.648&quot;,&quot;2018-02-10T10:41:43&quot;,&quot;2019-01-03T07:01:34&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-06-14T12:42:12.263&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-11-01T23:17:40.475&quot;,&quot;2021-06-18T13:57:32.889&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-06-21T10:54:37.877&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-11-01T23:17:40.475&quot;,&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;preferred: String&bsol;&quot;&gt;preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;,&quot;1.0.0&quot;,&quot;1.3.0&quot;,&quot;6&quot;,&quot;1.1.0&quot;,&quot;1.0.14&quot;,&quot;1.0.0&quot;,&quot;2.0.0&quot;,&quot;3.5.0-pre.0&quot;,&quot;6&quot;,&quot;1&quot;,&quot;50&quot;,&quot;68&quot;,&quot;1&quot;,&quot;6&quot;,&quot;6&quot;,&quot;6&quot;,&quot;6&quot;,&quot;68&quot;,&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;versions: DataFrame&lt;*&gt;&bsol;&quot;&gt;versions&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741931, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741932, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741933, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741934, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741935, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741936, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741937, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741938, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741939, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741940, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741941, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741942, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741943, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741944, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741945, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741946, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741947, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741948, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741949, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073741950, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-05-30T08:34:14&bsol;npreferred: 0.0.1&bsol;nversions: key value&bsol;n 0 0.0.1 { added:2017-05-30T08:34:14, info:{ c...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-05-30T08:34:14&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188&bsol;npreferred: 1.0.0&bsol;nversions: key value&bsol;n 0 1.0.0 { added:2021-07-19T10:17:09.188, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939&bsol;npreferred: 1.3.0&bsol;nversions: key value&bsol;n 0 1.3.0 { added:2021-04-16T15:56:45.939, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2017-03-15T14:45:58, info:{ c...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07&bsol;npreferred: 1.1.0&bsol;nversions: key value&bsol;n 0 1.1.0 { added:2019-07-13T11:28:07, info:{ c...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-26T09:45:31.536&bsol;npreferred: 1.0.14&bsol;nversions: key value&bsol;n 0 1.0.14 { added:2021-07-26T09:45:31.536, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-26T09:45:31.536&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-14T17:12:40.648&bsol;npreferred: 1.0.0&bsol;nversions: key value&bsol;n 0 1.0.0 { added:2021-04-14T17:12:40.648, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-14T17:12:40.648&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2018-02-10T10:41:43&bsol;npreferred: 2.0.0&bsol;nversions: key value&bsol;n 0 2.0.0 { added:2018-02-10T10:41:43, info:{ d...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2018-02-10T10:41:43&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-01-03T07:01:34&bsol;npreferred: 3.5.0-pre.0&bsol;nversions: key value&bsol;n 0 3.5.0-pre.0 { added:2019-01-03T07:01:34, info:{ c...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-01-03T07:01:34&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-14T12:42:12.263&bsol;npreferred: 1&bsol;nversions: key value&bsol;n 0 1 { added:2021-06-14T12:42:12.263, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-14T12:42:12.263&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 50&bsol;nversions: key value&bsol;n 0 50 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-18T13:57:32.889&bsol;npreferred: 1&bsol;nversions: key value&bsol;n 0 1 { added:2021-06-18T13:57:32.889, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-18T13:57:32.889&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-21T10:54:37.877&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2021-06-21T10:54:37.877, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-21T10:54:37.877&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741930, rootId: 1073741930, totalRows: 2361 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-05-30T08:34:14&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;contact@1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Forge&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: contact@1forge.com&bsol;nname: 1Forge&bsol;nurl: http:&sol;&sol;1forge.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;contact@1forge.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Stock and Forex Data and Realtime Quotes&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Forge Finance APIs&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;0.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;financial&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;financial&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;backgroundColor: String&bsol;&quot;&gt;backgroundColor&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;#24292e&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [10, 11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;backgroundColor: #24292e&bsol;nurl: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;backgroundColor: &lt;&sol;span&gt;#24292e&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;ht&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741951, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1forge.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 9, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:contact@1forge.com, name:1Forge, url:http:&sol;&sol;1forge.com }&bsol;ndescription: Stock and Forex Data and Realtime Quotes&bsol;ntitle: 1Forge Finance APIs&bsol;nversion: 0.0.1&bsol;nx-apisguru-categories: [financial]&bsol;nx-logo: { backgroundColor:#24292e, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg }&bsol;nx-origin: format url version&bsol;n 0 swagger http:&sol;&sol;1forge.com&sol;openapi.json 2.0&bsol;n&bsol;nx-providerName: 1forge.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;con&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-06-27T16:49:57&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 15, 16, 17, 18, 19, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-05-30T08:34:14&bsol;ninfo: { contact:{ email:contact@1forge.com, name:1Forge, url:http:&sol;&sol;1forge.com }, description:Stock and Forex Data and Realtime Quotes, title:1Forge Finance APIs, version:0.0.1, x-apisguru-categories:[financial], x-logo:{ backgroundColor:#24292e, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_1forge.com_assets_images_f-blue.svg }, x-origin:[1 x 3] { format:swagger, url:http:&sol;&sol;1forge.com&sol;openapi.json, version:2.0 }, x-providerName:1forge.com }&bsol;nupdated: 2017-06-27T16:49:57&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1forge.com&sol;0.0.1&sol;swagger.yaml&bsol;nopenapiVer: 2.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-05-30T08:34:14&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741931, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-19T10:17:09.188&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Events API Specification.&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Events API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741952, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;events&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9, 10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: 1Password Events API Specification.&bsol;ntitle: Events API&bsol;nversion: 1.0.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.com&bsol;nx-serviceName: events&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;1Password Event&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-22T10:32:52.774&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 11, 12, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188&bsol;ninfo: { description:1Password Events API Specification., title:Events API, version:1.0.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml, version:3.0 }, x-providerName:1password.com, x-serviceName:events }&bsol;nupdated: 2021-07-22T10:32:52.774&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741932, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-04-16T15:56:45.939&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Integrations&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;support.1password.com&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@1password.com&bsol;nname: 1Password Integrations&bsol;nurl: https:&sol;&sol;support.1password.com&sol;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@1password.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;REST API interface for 1Password Connect.&bsol;&quot;&gt;REST API interface for 1Password Conn&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741953, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.local&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 9, 11, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }&bsol;ndescription: REST API interface for 1Password Connect.&bsol;ntitle: 1Password Connect&bsol;nversion: 1.3.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.local&bsol;nx-serviceName: connect&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T08:51:53.432&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.2&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 15, 16, 17, 18, 19, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939&bsol;ninfo: { contact:{ email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }, description:REST API interface for 1Password Connect., title:1Password Connect, version:1.3.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml, version:3.0 }, x-providerName:1password.local, x-serviceName:connect }&bsol;nupdated: 2021-07-26T08:51:53.432&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.2&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741933, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-03-15T14:45:58&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;hello@authentiq.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.io&sol;support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: hello@authentiq.com&bsol;nname: Authentiq team&bsol;nurl: http:&sol;&sol;authentiq.io&sol;support&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hello@authentiq.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Strong authentication, without the passwords.&bsol;&quot;&gt;Strong authentication, without the pa&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Apache 2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENS&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;license: DataRow&lt;*&gt;&bsol;&quot;&gt;license&lt;&sol;span&gt;&quot;, children: [7, 8], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;name: Apache 2.0&bsol;nurl: http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name: &lt;&sol;span&gt;Apache 2.0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;http:&sol;&sol;www&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.com&sol;terms&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;backgroundColor: String&bsol;&quot;&gt;backgroundColor&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;#F26641&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;backgroundColor: #F26641&bsol;nurl: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;backgroundColor: &lt;&sol;span&gt;#F26641&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;ht&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741954, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6-dot-authentiqio.appspot.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 9, 10, 11, 12, 13, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }&bsol;ndescription: Strong authentication, without the passwords.&bsol;nlicense: { name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }&bsol;ntermsOfService: http:&sol;&sol;authentiq.com&sol;terms&sol;&bsol;ntitle: Authentiq API&bsol;nversion: 6&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Aut... 3.0&bsol;n&bsol;nx-providerName: 6-dot-authentiqio.appspot.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hel&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58&bsol;ninfo: { contact:{ email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }, description:Strong authentication, without the passwords., license:{ name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }, termsOfService:http:&sol;&sol;authentiq.com&sol;terms&sol;, title:Authentiq API, version:6, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml, version:3.0 }, x-providerName:6-dot-authentiqio.appspot.com }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741934, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2019-07-13T11:28:07&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Ably Support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;www.ably.io&sol;contact&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ablyrealtime&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@ably.io&bsol;nname: Ably Support&bsol;nurl: https:&sol;&sol;www.ably.io&sol;contact&bsol;nx-twitter: ablyrealtime&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@ably.io&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;&quot;&gt;The [REST API specification](https:&sol;&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Platform API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cloud&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;cloud&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741955, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;platform&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }&bsol;ndescription: The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;ntitle: Platform API&bsol;nversion: 1.1.0&bsol;nx-apisguru-categories: [cloud]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;abl... 3.0&bsol;n&bsol;nx-providerName: ably.io&bsol;nx-serviceName: platform&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:42:14.653&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 16, 17, 18, 19, 20, 21], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07&bsol;ninfo: { contact:{ email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }, description:The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably., title:Platform API, version:1.1.0, x-apisguru-categories:[cloud], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml, version:3.0 }, x-providerName:ably.io, x-serviceName:platform }&bsol;nupdated: 2021-07-26T09:42:14.653&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741935, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.14&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:45:31.536&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ablyrealtime&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;x-twitter: ablyrealtime&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;x-twitter: &lt;&sol;span&gt;ablyrealtime&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&bsol;n&bsol;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&bsol;n&bsol;nControl API is currently in Beta.&bsol;n&bsol;&quot;&gt;Use the Control API to manage your ap&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Control API v1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.14&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cloud&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;cloud&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [8], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741956, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ably.net&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;control&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6, 7, 9, 10, 11, 12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { x-twitter:ablyrealtime }&bsol;ndescription: Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&bsol;n&bsol;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&bsol;n&bsol;nControl API is currently in Beta.&bsol;n&bsol;ntitle: Control API v1&bsol;nversion: 1.0.14&bsol;nx-apisguru-categories: [cloud]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;abl... 3.0&bsol;n&bsol;nx-providerName: ably.net&bsol;nx-serviceName: control&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;x-twitter: &lt;&sol;span&gt;ably&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:47:48.565&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.n&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.n&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-26T09:45:31.536&bsol;ninfo: { contact:{ x-twitter:ablyrealtime }, description:Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&amp;#92;n&amp;#92;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&amp;#92;n&amp;#92;nControl API is currently in Beta.&amp;#92;n, title:Control API v1, version:1.0.14, x-apisguru-categories:[cloud], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;control-v1.yaml, version:3.0 }, x-providerName:ably.net, x-serviceName:control }&bsol;nupdated: 2021-07-26T09:47:48.565&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-26T09:45:31.536&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741936, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-04-14T17:12:40.648&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.&bsol;&quot;&gt;Abstract IP geolocation API allows de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;IP geolocation API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;location&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;location&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741957, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;abstractapi.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;geolocation&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9, 10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.&bsol;ntitle: IP geolocation API&bsol;nversion: 1.0.0&bsol;nx-apisguru-categories: [location]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;documentation.abstractapi.com... 3.0&bsol;n&bsol;nx-providerName: abstractapi.com&bsol;nx-serviceName: geolocation&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;Abstract IP geo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;API Documentation&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs&bsol;&quot;&gt;https:&sol;&sol;www.abstractapi.com&sol;ip-geoloc&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [12, 13], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: API Documentation&bsol;nurl: https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;API Documentation&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;u...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstra&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstra&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 11, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-14T17:12:40.648&bsol;ninfo: { description:Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP., title:IP geolocation API, version:1.0.0, x-apisguru-categories:[location], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;documentation.abstractapi.com&sol;ip-geolocation-openapi.json, version:3.0 }, x-providerName:abstractapi.com, x-serviceName:geolocation }&bsol;nexternalDocs: { description:API Documentation, url:https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-14T17:12:40.648&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741937, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2018-02-10T10:41:43&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;### The Internet of Things for Everyone&bsol;n&bsol;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&bsol;n&bsol;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&bsol;n&bsol;n#### Authentication&bsol;n&bsol;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key &amp;#34;io_key_12345&amp;#34; could look like this:&bsol;n&bsol;n $ curl -H &amp;#34;X-AIO-Key: io_key_12345&amp;#34; https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&bsol;n&bsol;nOr like this:&bsol;n&bsol;n $ curl &amp;#34;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds?X-AIO-Key=io_key_12345&bsol;n&bsol;nUsing the node.js [request](https:&sol;&sol;github.com&sol;request&sol;request) library, IO HTTP requests are as easy as:&bsol;n&bsol;n```js&bsol;nvar request = require(&amp;#39;request&amp;#39;);&bsol;n&bsol;nvar options = {&bsol;n url: &amp;#39;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&amp;#39;,&bsol;n headers: {&bsol;n &amp;#39;X-AIO-Key&amp;#39;: &amp;#39;io_key_12345&amp;#39;,&bsol;n &amp;#39;Content-Type&amp;#39;: &amp;#39;application&sol;json&amp;#39;&bsol;n }&bsol;n};&bsol;n&bsol;nfunction callback(error, response, body) {&bsol;n if (!error &amp;#38;&amp;#38; response.statusCode == 200) {&bsol;n var feeds = JSON.parse(body);&bsol;n console.log(feeds.length + &amp;#34; FEEDS AVAILABLE&amp;#34;);&bsol;n&bsol;n feeds.forEach(function (feed) {&bsol;n console.log(feed.name, feed.key);&bsol;n })&bsol;n }&bsol;n}&bsol;n&bsol;nrequest(options, callback);&bsol;n```&bsol;n&bsol;nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):&bsol;n&bsol;n```arduino&bsol;n&sol;&sol;&sol; based on&bsol;n&sol;&sol;&sol; https:&sol;&sol;github.com&sol;esp8266&sol;Arduino&sol;blob&sol;master&sol;libraries&sol;ESP8266HTTPClient&sol;examples&sol;Authorization&sol;Authorization.ino&bsol;n&bsol;n#include &amp;#60;Arduino.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFi.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFiMulti.h&amp;#62;&bsol;n#include &amp;#60;ESP8266HTTPClient.h&amp;#62;&bsol;n&bsol;nESP8266WiFiMulti WiFiMulti;&bsol;n&bsol;nconst char* ssid = &amp;#34;---&amp;#34;;&bsol;nconst char* password = &amp;#34;---&amp;#34;;&bsol;n&bsol;nconst char* host = &amp;#34;io.adafruit.com&amp;#34;;&bsol;n&bsol;nconst char* io_key = &amp;#34;---&amp;#34;;&bsol;nconst char* path_with_username = &amp;#34;&sol;api&sol;v2&sol;---&sol;dashboards&amp;#34;;&bsol;n&bsol;n&sol;&sol; Use web browser to view and copy&bsol;n&sol;&sol; SHA1 fingerprint of the certificate&bsol;nconst char* fingerprint = &amp;#34;77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18&amp;#34;;&bsol;n&bsol;nvoid setup() {&bsol;n Serial.begin(115200);&bsol;n&bsol;n for(uint8_t t = 4; t &amp;#62; 0; t--) {&bsol;n Serial.printf(&amp;#34;[SETUP] WAIT %d...&amp;#92;n&amp;#34;, t);&bsol;n Serial.flush();&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n WiFi.mode(WIFI_STA);&bsol;n WiFiMulti.addAP(ssid, password);&bsol;n&bsol;n &sol;&sol; wait for WiFi connection&bsol;n while(WiFiMulti.run() != WL_CONNECTED) {&bsol;n Serial.print(&amp;#39;.&amp;#39;);&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n Serial.println(&amp;#34;[WIFI] connected!&amp;#34;);&bsol;n&bsol;n HTTPClient http;&bsol;n&bsol;n &sol;&sol; start request with URL and TLS cert fingerprint for verification&bsol;n http.begin(&amp;#34;https:&sol;&sol;&amp;#34; + String(host) + String(path_with_username), fingerprint);&bsol;n&bsol;n &sol;&sol; IO API authentication&bsol;n http.addHeader(&amp;#34;X-AIO-Key&amp;#34;, io_key);&bsol;n&bsol;n &sol;&sol; start connection and send HTTP header&bsol;n int httpCode = http.GET();&bsol;n&bsol;n &sol;&sol; httpCode will be negative on error&bsol;n if(httpCode &amp;#62; 0) {&bsol;n &sol;&sol; HTTP header has been send and Server response header has been handled&bsol;n Serial.printf(&amp;#34;[HTTP] GET response: %d&amp;#92;n&amp;#34;, httpCode);&bsol;n&bsol;n &sol;&sol; HTTP 200 OK&bsol;n if(httpCode == HTTP_CODE_OK) {&bsol;n String payload = http.getString();&bsol;n Serial.println(payload);&bsol;n }&bsol;n&bsol;n http.end();&bsol;n }&bsol;n}&bsol;n&bsol;nvoid loop() {}&bsol;n```&bsol;n&bsol;n#### Client Libraries&bsol;n&bsol;nWe have client libraries to help you get started with your project: [Python](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-python), [Ruby](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-ruby), [Arduino C++](https:&sol;&sol;github.com&sol;adafruit&sol;Adafruit_IO_Arduino), [Javascript](https:&sol;&sol;github.com&sol;adafruit&sol;adafruit-io-node), and [Go](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-go) are available. They&amp;#39;re all open source, so if they don&amp;#39;t already do what you want, you can fork and add any feature you&amp;#39;d like.&bsol;n&bsol;n&bsol;&quot;&gt;### The Internet of Things for Everyo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adafruit IO REST API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;iot&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;iot&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741958, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adafruit.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: ### The Internet of Things for Everyone&bsol;n&bsol;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&bsol;n&bsol;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&bsol;n&bsol;n#### Authentication&bsol;n&bsol;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key &amp;#34;io_key_12345&amp;#34; could look like this:&bsol;n&bsol;n $ curl -H &amp;#34;X-AIO-Key: io_key_12345&amp;#34; https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&bsol;n&bsol;nOr like this:&bsol;n&bsol;n $ curl &amp;#34;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds?X-AIO-Key=io_key_12345&bsol;n&bsol;nUsing the node.js [request](https:&sol;&sol;github.com&sol;request&sol;request) library, IO HTTP requests are as easy as:&bsol;n&bsol;n```js&bsol;nvar request = require(&amp;#39;request&amp;#39;);&bsol;n&bsol;nvar options = {&bsol;n url: &amp;#39;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&amp;#39;,&bsol;n headers: {&bsol;n &amp;#39;X-AIO-Key&amp;#39;: &amp;#39;io_key_12345&amp;#39;,&bsol;n &amp;#39;Content-Type&amp;#39;: &amp;#39;application&sol;json&amp;#39;&bsol;n }&bsol;n};&bsol;n&bsol;nfunction callback(error, response, body) {&bsol;n if (!error &amp;#38;&amp;#38; response.statusCode == 200) {&bsol;n var feeds = JSON.parse(body);&bsol;n console.log(feeds.length + &amp;#34; FEEDS AVAILABLE&amp;#34;);&bsol;n&bsol;n feeds.forEach(function (feed) {&bsol;n console.log(feed.name, feed.key);&bsol;n })&bsol;n }&bsol;n}&bsol;n&bsol;nrequest(options, callback);&bsol;n```&bsol;n&bsol;nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):&bsol;n&bsol;n```arduino&bsol;n&sol;&sol;&sol; based on&bsol;n&sol;&sol;&sol; https:&sol;&sol;github.com&sol;esp8266&sol;Arduino&sol;blob&sol;master&sol;libraries&sol;ESP8266HTTPClient&sol;examples&sol;Authorization&sol;Authorization.ino&bsol;n&bsol;n#include &amp;#60;Arduino.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFi.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFiMulti.h&amp;#62;&bsol;n#include &amp;#60;ESP8266HTTPClient.h&amp;#62;&bsol;n&bsol;nESP8266WiFiMulti WiFiMulti;&bsol;n&bsol;nconst char* ssid = &amp;#34;---&amp;#34;;&bsol;nconst char* password = &amp;#34;---&amp;#34;;&bsol;n&bsol;nconst char* host = &amp;#34;io.adafruit.com&amp;#34;;&bsol;n&bsol;nconst char* io_key = &amp;#34;---&amp;#34;;&bsol;nconst char* path_with_username = &amp;#34;&sol;api&sol;v2&sol;---&sol;dashboards&amp;#34;;&bsol;n&bsol;n&sol;&sol; Use web browser to view and copy&bsol;n&sol;&sol; SHA1 fingerprint of the certificate&bsol;nconst char* fingerprint = &amp;#34;77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18&amp;#34;;&bsol;n&bsol;nvoid setup() {&bsol;n Serial.begin(115200);&bsol;n&bsol;n for(uint8_t t = 4; t &amp;#62; 0; t--) {&bsol;n Serial.printf(&amp;#34;[SETUP] WAIT %d...&amp;#92;n&amp;#34;, t);&bsol;n Serial.flush();&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n WiFi.mode(WIFI_STA);&bsol;n WiFiMulti.addAP(ssid, password);&bsol;n&bsol;n &sol;&sol; wait for WiFi connection&bsol;n while(WiFiMulti.run() != WL_CONNECTED) {&bsol;n Serial.print(&amp;#39;.&amp;#39;);&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n Serial.println(&amp;#34;[WIFI] connected!&amp;#34;);&bsol;n&bsol;n HTTPClient http;&bsol;n&bsol;n &sol;&sol; start request with URL and TLS cert fingerprint for verification&bsol;n http.begin(&amp;#34;https:&sol;&sol;&amp;#34; + String(host) + String(path_with_username), fingerprint);&bsol;n&bsol;n &sol;&sol; IO API authentication&bsol;n http.addHeader(&amp;#34;X-AIO-Key&amp;#34;, io_key);&bsol;n&bsol;n &sol;&sol; start connection and send HTTP header&bsol;n int httpCode = http.GET();&bsol;n&bsol;n &sol;&sol; httpCode will be negative on error&bsol;n if(httpCode &amp;#62; 0) {&bsol;n &sol;&sol; HTTP header has been send and Server response header has been handled&bsol;n Serial.printf(&amp;#34;[HTTP] GET response: %d&amp;#92;n&amp;#34;, httpCode);&bsol;n&bsol;n &sol;&sol; HTTP 200 OK&bsol;n if(httpCode == HTTP_CODE_OK) {&bsol;n String payload = http.getString();&bsol;n Serial.println(payload);&bsol;n }&bsol;n&bsol;n http.end();&bsol;n }&bsol;n}&bsol;n&bsol;nvoid loop() {}&bsol;n```&bsol;n&bsol;n#### Client Libraries&bsol;n&bsol;nWe have client libraries to help you get started with your project: [Python](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-python), [Ruby](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-ruby), [Arduino C++](https:&sol;&sol;github.com&sol;adafruit&sol;Adafruit_IO_Arduino), [Javascript](https:&sol;&sol;github.com&sol;adafruit&sol;adafruit-io-node), and [Go](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-go) are available. They&amp;#39;re all open source, so if they don&amp;#39;t already do what you want, you can fork and add any feature you&amp;#39;d like.&bsol;n&bsol;n&bsol;ntitle: Adafruit IO REST API&bsol;nversion: 2.0.0&bsol;nx-apisguru-categories: [iot]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 swagger https:&sol;&sol;raw.githubusercontent.com&sol;ada... 2.0&bsol;n&bsol;nx-providerName: adafruit.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;### The Interne&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafru&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafru&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 10, 11, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2018-02-10T10:41:43&bsol;ninfo: { description:### The Internet of Things for Everyone&amp;#92;n&amp;#92;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&amp;#92;n&amp;#92;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&amp;#92;n&amp;#92;n#### Authentication&amp;#92;n&amp;#92;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key..., title:Adafruit IO REST API, version:2.0.0, x-apisguru-categories:[iot], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https:&sol;&sol;raw.githubusercontent.com&sol;adafruit&sol;io-api&sol;gh-pages&sol;v2.json, version:2.0 }, x-providerName:adafruit.com }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.yaml&bsol;nopenapiVer: 2.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2018-02-10T10:41:43&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741938, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.5.0-pre.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2019-01-03T07:01:34&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;opensource@shinesolutions.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Shine Solutions&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;shinesolutions.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adobe&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: opensource@shinesolutions.com&bsol;nname: Shine Solutions&bsol;nurl: http:&sol;&sol;shinesolutions.com&bsol;nx-twitter: Adobe&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;opensource@shinesolut&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API&bsol;&quot;&gt;Swagger AEM is an OpenAPI specificati&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adobe Experience Manager (AEM) API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.5.0-pre.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;marketing&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;marketing&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741959, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adobe.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;aem&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-unofficialSpec: Boolean&bsol;&quot;&gt;x-unofficialSpec&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 12, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:opensource@shinesolutions.com, name:Shine Solutions, url:http:&sol;&sol;shinesolutions.com, x-twitter:Adobe }&bsol;ndescription: Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API&bsol;ntitle: Adobe Experience Manager (AEM) API&bsol;nversion: 3.5.0-pre.0&bsol;nx-apisguru-categories: [marketing]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;shi... 3.0&bsol;n&bsol;nx-providerName: adobe.com&bsol;nx-serviceName: aem&bsol;nx-unofficialSpec: true&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;ope&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 17, 18, 19, 20, 21, 22], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-01-03T07:01:34&bsol;ninfo: { contact:{ email:opensource@shinesolutions.com, name:Shine Solutions, url:http:&sol;&sol;shinesolutions.com, x-twitter:Adobe }, description:Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API, title:Adobe Experience Manager (AEM) API, version:3.5.0-pre.0, x-apisguru-categories:[marketing], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;shinesolutions&sol;swagger-aem&sol;master&sol;conf&sol;api.yml, version:3.0 }, x-providerName:adobe.com, x-serviceName:aem, x-unofficialSpec:true }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-01-03T07:01:34&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741939, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Account&sol;v6&sol;createAccountHolder&bsol;n```&bsol;&quot;&gt;The Account API provides endpoints fo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Account API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741960, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;AccountService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Account&sol;v6&sol;createAccountHolder&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Account API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: AccountService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&amp;#92;n## Authentication&amp;#92;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Acc..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Account API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;AccountService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:AccountService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741940, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-14T12:42:12.263&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&bsol;n&bsol;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&bsol;n&bsol;n ## Authentication&bsol;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&bsol;n&bsol;n ```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n&bsol;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n## Versioning&bsol;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v1&bsol;n```&bsol;n## Going live&bsol;nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https:&sol;&sol;balanceplatform-api-live.adyen.com&sol;bcl&sol;v1`.&bsol;n&bsol;nFor more information, refer to our [Going live documentation](https:&sol;&sol;docs.adyen.com&sol;issuing&sol;integration-checklist#going-live).&bsol;&quot;&gt;The Balance Platform API enables you &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Issuing: Balance Platform API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741961, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;BalancePlatformService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&bsol;n&bsol;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&bsol;n&bsol;n ## Authentication&bsol;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&bsol;n&bsol;n ```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n&bsol;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n## Versioning&bsol;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v1&bsol;n```&bsol;n## Going live&bsol;nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https:&sol;&sol;balanceplatform-api-live.adyen.com&sol;bcl&sol;v1`.&bsol;n&bsol;nFor more information, refer to our [Going live documentation](https:&sol;&sol;docs.adyen.com&sol;issuing&sol;integration-checklist#going-live).&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Issuing: Balance Platform API&bsol;nversion: 1&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: BalancePlatformService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-22T23:16:57.458&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 18, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-14T12:42:12.263&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&amp;#92;n&amp;#92;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&amp;#92;n&amp;#92;n ## Authentication&amp;#92;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&amp;#92;n&amp;#92;n ```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;n&amp;#92;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;n## Versioning&amp;#92;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&amp;#92;n&amp;#92;nFor example:&amp;#92;n```&amp;#92;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Issuing: Balance Platform API, version:1, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BalancePlatformService-v1.json, version:3.1 }, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BalancePlatformService }&bsol;nupdated: 2021-11-22T23:16:57.458&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-14T12:42:12.263&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741941, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;50&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.&bsol;&quot;&gt;The BIN Lookup API provides endpoints&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen BinLookup API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;50&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741962, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;BinLookupService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen BinLookup API&bsol;nversion: 50&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: BinLookupService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen BinLookup API, version:50, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BinLookupService-v50.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BinLookupService }&bsol;nupdated: 2021-11-01T23:17:40.475&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741942, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&bsol;n&bsol;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&bsol;n&bsol;n## Authentication&bsol;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v68&sol;payments&bsol;n```&bsol;&quot;&gt;Adyen Checkout API provides a simple &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Checkout API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741963, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;CheckoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&bsol;n&bsol;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&bsol;n&bsol;n## Authentication&bsol;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v68&sol;payments&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Checkout API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: CheckoutService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&amp;#92;n&amp;#92;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&amp;#92;n&amp;#92;n## Authentication&amp;#92;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developmen..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Checkout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;CheckoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:CheckoutService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741943, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-18T13:57:32.889&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;support.adyen.com&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@adyen.com&bsol;nname: Adyen Support&bsol;nurl: https:&sol;&sol;support.adyen.com&sol;&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@adyen.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;na...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A web service containing utility functions available for merchants integrating with Checkout APIs.&bsol;n## Authentication&bsol;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&bsol;n```&bsol;&quot;&gt;A web service containing utility func&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions&bsol;&quot;&gt;https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-co&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Checkout Utility Service&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741964, value: &quot;&lt;b&gt;DataFrame 1 x 4&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;CheckoutUtilityService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@adyen.com, name:Adyen Support, url:https:&sol;&sol;support.adyen.com&sol;, x-twitter:Adyen }&bsol;ndescription: A web service containing utility functions available for merchants integrating with Checkout APIs.&bsol;n## Authentication&bsol;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions&bsol;ntitle: Adyen Checkout Utility Service&bsol;nversion: 1&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: converter format url version&bsol;n 0 { url:https:&sol;&sol;github.com&sol;lucybot&sol;api-... openapi https:&sol;&sol;raw.githubusercontent.com&sol;ady... 3.0&bsol;n&bsol;nx-providerName: adyen.com&bsol;nx-serviceName: CheckoutUtilityService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-18T13:57:32.889&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 17, 18, 19, 20, 21, 22], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-18T13:57:32.889&bsol;ninfo: { contact:{ email:support@adyen.com, name:Adyen Support, url:https:&sol;&sol;support.adyen.com&sol;, x-twitter:Adyen }, description:A web service containing utility functions available for merchants integrating with Checkout APIs.&amp;#92;n## Authentication&amp;#92;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&amp;#92;n&amp;#92;nFor example:&amp;#92;n```&amp;#92;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&amp;#92;n```, termsOfService:https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions, title:Adyen Checkout Utility Service, version:1, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 4] { converter:{ url:https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter, version:2.7.11 }, format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;adyen&sol;adyen-openapi&sol;master&sol;specs&sol;3.0&sol;CheckoutUtilityService-v1.json, version:3.0 }, x-providerName:adyen.com, x-serviceName:CheckoutUtilityService }&bsol;nupdated: 2021-06-18T13:57:32.889&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-18T13:57:32.889&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741944, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Fund&sol;v6&sol;accountHolderBalance&bsol;n```&bsol;&quot;&gt;The Fund API provides endpoints for m&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Fund API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741965, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;FundService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Fund&sol;v6&sol;accountHolderBalance&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Fund API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: FundService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&amp;#92;n## Authentication&amp;#92;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Fund API supports versioning..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Fund API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;FundService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:FundService }&bsol;nupdated: 2021-11-01T23:17:40.475&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741945, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Hop&sol;v6&sol;getOnboardingUrl&bsol;n```&bsol;&quot;&gt;The Hosted onboarding API provides en&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Hosted Onboarding&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741966, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;HopService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Hop&sol;v6&sol;getOnboardingUrl&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Hosted Onboarding&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: HopService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&amp;#92;n&amp;#92;n## Authentication&amp;#92;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Hosted onboarding API suppo..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Hosted Onboarding, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;HopService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:HopService }&bsol;nupdated: 2021-11-01T23:17:40.475&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741946, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T10:54:37.877&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;&quot;&gt;The Notification API sends notificati&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Notifications&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741967, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;MarketPayNotificationService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Notifications&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: MarketPayNotificationService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-21T10:54:37.877&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications)., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Notifications, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;MarketPayNotificationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:MarketPayNotificationService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-21T10:54:37.877&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741947, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;n## Authentication&bsol;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Notification&sol;v6&sol;createNotificationConfiguration&bsol;n```&bsol;&quot;&gt;The Notification Configuration API pr&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Adyen for Platforms: Notification Configuration API&bsol;&quot;&gt;Adyen for Platforms: Notification Con&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741968, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;NotificationConfigurationService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;n## Authentication&bsol;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Notification&sol;v6&sol;createNotificationConfiguration&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Notification Configuration API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: NotificationConfigurationService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&amp;#92;n## Authentication&amp;#92;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Notification Configuration API supports versioning of its endpoints through a ..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Notification Configuration API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;NotificationConfigurationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:NotificationConfigurationService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741948, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&bsol;n&bsol;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Payment&sol;v68&sol;authorise&bsol;n```&bsol;&quot;&gt;A set of API endpoints that allow you&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Payment API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741969, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;PaymentService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&bsol;n&bsol;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Payment&sol;v68&sol;authorise&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Payment API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: PaymentService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&amp;#92;n&amp;#92;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&amp;#92;n&amp;#92;n## Authentication&amp;#92;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nPayments API supports versio..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Payment API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PaymentService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PaymentService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741949, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&bsol;n&bsol;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&bsol;n## Authentication&bsol;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&bsol;n&bsol;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new API credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n&bsol;&quot;&gt;A set of API endpoints that allow you&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Payout API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073741970, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;PayoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&bsol;n&bsol;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&bsol;n## Authentication&bsol;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&bsol;n&bsol;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new API credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Payout API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: PayoutService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&amp;#92;n&amp;#92;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&amp;#92;n## Authentication&amp;#92;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&amp;#92;n&amp;#92;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nWhen going ..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Payout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PayoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PayoutService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073741950, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;swagger&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;1forge.com&sol;openapi.json&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"], id: 1073741951, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741952, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741953, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Aut&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741954, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;abl&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741955, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;control-v1.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;abl&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741956, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;documentation.abstractapi.com&sol;ip-geolocation-openapi.json&bsol;&quot;&gt;https:&sol;&sol;documentation.abstractapi.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741957, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;swagger&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;adafruit&sol;io-api&sol;gh-pages&sol;v2.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;ada&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"], id: 1073741958, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;shinesolutions&sol;swagger-aem&sol;master&sol;conf&sol;api.yml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;shi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741959, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;AccountService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741960, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BalancePlatformService-v1.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741961, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BinLookupService-v50.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741962, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;CheckoutService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741963, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter&bsol;&quot;&gt;https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-c&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.7.11&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;converter: DataRow&lt;*&gt;&bsol;&quot;&gt;converter&lt;&sol;span&gt;&quot;, children: [0, 1], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter&bsol;nversion: 2.7.11&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;github.com&sol;luc&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;v...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;adyen&sol;adyen-openapi&sol;master&sol;specs&sol;3.0&sol;CheckoutUtilityService-v1.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073741964, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;FundService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741965, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;HopService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741966, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;MarketPayNotificationService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741967, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;NotificationConfigurationService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741968, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PaymentService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741969, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PayoutService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073741970, rootId: 1073741930, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1073741930) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_3() {\n",
" let elem = document.getElementById(\"iframe_out_3\");\n",
" resize_iframe_out_3(elem);\n",
" setInterval(resize_iframe_out_3, 5000, elem);\n",
" }\n",
" function resize_iframe_out_3(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1073741971\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"bottomBorder\" style=\"text-align:left\">preferred</th><th class=\"bottomBorder\" style=\"text-align:left\">versions</th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1forge.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-05-30T08:34:14</td><td style=\"vertical-align:top\">0.0.1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741972\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder\" style=\"text-align:left\">x-logo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">backgroundColor</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">0.0.1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-05-30T08:34:14</td><td class=\"leftBorder\" style=\"vertical-align:top\">contact@1forge.com</td><td style=\"vertical-align:top\">1Forge</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://1forge.com</td><td style=\"vertical-align:top\">Stock and Forex Data and Realtime Quotes</td><td style=\"vertical-align:top\">1Forge Finance APIs</td><td style=\"vertical-align:top\">0.0.1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[financial]</td><td class=\"leftBorder\" style=\"vertical-align:top\">#24292e</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741973\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">swagger</td><td style=\"vertical-align:top\">http://1forge.com/openapi.json</td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">1forge.com</td><td style=\"vertical-align:top\">2017-06-27T16:49:57</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.com:events</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188</td><td style=\"vertical-align:top\">1.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741974\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188</td><td class=\"leftBorder\" style=\"vertical-align:top\">1Password Events API Specification.</td><td style=\"vertical-align:top\">Events API</td><td style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741975\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">events</td><td style=\"vertical-align:top\">2021-07-22T10:32:52.774</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.local:connect</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939</td><td style=\"vertical-align:top\">1.3.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741976\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@1password.com</td><td style=\"vertical-align:top\">1Password Integrations</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://support.1password.com/</td><td style=\"vertical-align:top\">REST API interface for 1Password Conn<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">1Password Connect</td><td style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741977\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.local</td><td class=\"rightBorder\" style=\"vertical-align:top\">connect</td><td style=\"vertical-align:top\">2021-07-26T08:51:53.432</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.2</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741978\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">license</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder\" style=\"text-align:left\">x-logo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">backgroundColor</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58</td><td class=\"leftBorder\" style=\"vertical-align:top\">hello@authentiq.com</td><td style=\"vertical-align:top\">Authentiq team</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://authentiq.io/support</td><td class=\"rightBorder\" style=\"vertical-align:top\">Strong authentication, without the pa<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">Apache 2.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">http://authentiq.com/terms/</td><td style=\"vertical-align:top\">Authentiq API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder\" style=\"vertical-align:top\">#F26641</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741979\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Aut<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ably.io:platform</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07</td><td style=\"vertical-align:top\">1.1.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741980\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@ably.io</td><td style=\"vertical-align:top\">Ably Support</td><td style=\"vertical-align:top\">https://www.ably.io/contact</td><td class=\"rightBorder\" style=\"vertical-align:top\">ablyrealtime</td><td style=\"vertical-align:top\">The [REST API specification](https://<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Platform API</td><td style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[cloud]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741981\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/abl<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">ably.io</td><td class=\"rightBorder\" style=\"vertical-align:top\">platform</td><td style=\"vertical-align:top\">2021-07-26T09:42:14.653</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ably.net:control</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-26T09:45:31.536</td><td style=\"vertical-align:top\">1.0.14</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741982\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.14</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-26T09:45:31.536</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">ablyrealtime</td><td style=\"vertical-align:top\">Use the Control API to manage your ap<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Control API v1</td><td style=\"vertical-align:top\">1.0.14</td><td class=\"rightBorder\" style=\"vertical-align:top\">[cloud]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741983\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/abl<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">ably.net</td><td class=\"rightBorder\" style=\"vertical-align:top\">control</td><td style=\"vertical-align:top\">2021-07-26T09:47:48.565</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">abstractapi.com:geolocation</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-14T17:12:40.648</td><td style=\"vertical-align:top\">1.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741984\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">externalDocs</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th class=\"rightBorder\" style=\"text-align:left\">url</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-14T17:12:40.648</td><td class=\"leftBorder\" style=\"vertical-align:top\">Abstract IP geolocation API allows de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">IP geolocation API</td><td style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[location]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741985\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://documentation.abstractapi.com<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">abstractapi.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">geolocation</td><td class=\"leftBorder\" style=\"vertical-align:top\">API Documentation</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://www.abstractapi.com/ip-geoloc<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adafruit.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2018-02-10T10:41:43</td><td style=\"vertical-align:top\">2.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741986\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">2.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2018-02-10T10:41:43</td><td class=\"leftBorder\" style=\"vertical-align:top\">### The Internet of Things for Everyo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adafruit IO REST API</td><td style=\"vertical-align:top\">2.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[iot]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741987\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">swagger</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/ada<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">adafruit.com</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adobe.com:aem</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-01-03T07:01:34</td><td style=\"vertical-align:top\">3.5.0-pre.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741988\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-serviceName</th><th class=\"rightBorder\" style=\"text-align:left\">x-unofficialSpec</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">3.5.0-pre.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-01-03T07:01:34</td><td class=\"leftBorder\" style=\"vertical-align:top\">opensource@shinesolutions.com</td><td style=\"vertical-align:top\">Shine Solutions</td><td style=\"vertical-align:top\">http://shinesolutions.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">Adobe</td><td style=\"vertical-align:top\">Swagger AEM is an OpenAPI specificati<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adobe Experience Manager (AEM) API</td><td style=\"vertical-align:top\">3.5.0-pre.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[marketing]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741989\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/shi<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adobe.com</td><td style=\"vertical-align:top\">aem</td><td class=\"rightBorder\" style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:AccountService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741990\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Account API provides endpoints fo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Account API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741991\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">AccountService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:BalancePlatformService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-14T12:42:12.263</td><td style=\"vertical-align:top\">1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741992\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-14T12:42:12.263</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Balance Platform API enables you <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Issuing: Balance Platform API</td><td style=\"vertical-align:top\">1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741993\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">BalancePlatformService</td><td style=\"vertical-align:top\">2021-11-22T23:16:57.458</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:BinLookupService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741994\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The BIN Lookup API provides endpoints<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen BinLookup API</td><td style=\"vertical-align:top\">50</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741995\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">BinLookupService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:CheckoutService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741996\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">Adyen Checkout API provides a simple <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Checkout API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073741997\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">CheckoutService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:CheckoutUtilityService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-18T13:57:32.889</td><td style=\"vertical-align:top\">1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073741998\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-18T13:57:32.889</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@adyen.com</td><td style=\"vertical-align:top\">Adyen Support</td><td style=\"vertical-align:top\">https://support.adyen.com/</td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A web service containing utility func<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://docs.adyen.com/legal/terms-co<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Checkout Utility Service</td><td style=\"vertical-align:top\">1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 4]</summary><table class=\"dataframe\" id=\"static_df_1073741999\"><thead><tr><th style=\"text-align:left\">converter</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">format</th><th style=\"text-align:left\">url</th><th style=\"text-align:left\">version</th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">version</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">https://github.com/lucybot/api-spec-c<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">2.7.11</td><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adyen.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">CheckoutUtilityService</td><td style=\"vertical-align:top\">2021-06-18T13:57:32.889</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:FundService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742000\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Fund API provides endpoints for m<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Fund API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742001\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">FundService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:HopService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742002\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Hosted onboarding API provides en<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Hosted Onboarding</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742003\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">HopService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:MarketPayNotificationService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-21T10:54:37.877</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742004\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-21T10:54:37.877</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Notification API sends notificati<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Notifications</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742005\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">MarketPayNotificationService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:NotificationConfigurationSe<span class=\"structural\">...</span></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742006\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Notification Configuration API pr<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Notification Con<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742007\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">NotificationConfigurationService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:PaymentService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742008\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A set of API endpoints that allow you<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Payment API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742009\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">PaymentService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:PayoutService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742010\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A set of API endpoints that allow you<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Payout API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742011\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">PayoutService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1073741971\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":2361,\"ncol\":2},\"kotlin_dataframe\":[{\"key\":\"1forge.com\",\"value\":{\"data\":{\"added\":\"2017-05-30T08:34:14\",\"preferred\":\"0.0.1\",\"versions\":{\"data\":[{\"key\":\"0.0.1\",\"value\":{\"data\":{\"added\":\"2017-05-30T08:34:14\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"contact@1forge.com\",\"name\":\"1Forge\",\"url\":\"http://1forge.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Stock and Forex Data and Realtime Quotes\",\"title\":\"1Forge Finance APIs\",\"version\":\"0.0.1\",\"x-apisguru-categories\":[\"financial\"],\"x-logo\":{\"data\":{\"backgroundColor\":\"#24292e\",\"url\":\"https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"backgroundColor\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"swagger\",\"url\":\"http://1forge.com/openapi.json\",\"version\":\"2.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1forge.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2017-06-27T16:49:57\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.yaml\",\"openapiVer\":\"2.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"1password.com:events\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188\",\"info\":{\"data\":{\"description\":\"1Password Events API Specification.\",\"title\":\"Events API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-events-reporting/1password-events-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.com\",\"x-serviceName\":\"events\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-22T10:32:52.774\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"1password.local:connect\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939\",\"preferred\":\"1.3.0\",\"versions\":{\"data\":[{\"key\":\"1.3.0\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@1password.com\",\"name\":\"1Password Integrations\",\"url\":\"https://support.1password.com/\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"REST API interface for 1Password Connect.\",\"title\":\"1Password Connect\",\"version\":\"1.3.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-connect/1password-connect-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.local\",\"x-serviceName\":\"connect\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T08:51:53.432\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml\",\"openapiVer\":\"3.0.2\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"6-dot-authentiqio.appspot.com\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"hello@authentiq.com\",\"name\":\"Authentiq team\",\"url\":\"http://authentiq.io/support\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Strong authentication, without the passwords.\",\"license\":{\"data\":{\"name\":\"Apache 2.0\",\"url\":\"http://www.apache.org/licenses/LICENSE-2.0.html\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"termsOfService\":\"http://authentiq.com/terms/\",\"title\":\"Authentiq API\",\"version\":\"6\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"backgroundColor\":\"#F26641\",\"url\":\"https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"backgroundColor\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/issuer.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"6-dot-authentiqio.appspot.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"license\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.io:platform\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07\",\"preferred\":\"1.1.0\",\"versions\":{\"data\":[{\"key\":\"1.1.0\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@ably.io\",\"name\":\"Ably Support\",\"url\":\"https://www.ably.io/contact\",\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably.\",\"title\":\"Platform API\",\"version\":\"1.1.0\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/platform-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.io\",\"x-serviceName\":\"platform\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:42:14.653\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml\",\"openapiVer\":\"3.0.1\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.net:control\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536\",\"preferred\":\"1.0.14\",\"versions\":{\"data\":[{\"key\":\"1.0.14\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536\",\"info\":{\"data\":{\"contact\":{\"data\":{\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\\n\\nDetailed information on using this API can be found in the Ably <a href=\\\"https://ably.com/documentation/control-api\\\">developer documentation</a>.\\n\\nControl API is currently in Beta.\\n\",\"title\":\"Control API v1\",\"version\":\"1.0.14\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/control-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.net\",\"x-serviceName\":\"control\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:47:48.565\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml\",\"openapiVer\":\"3.0.1\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"abstractapi.com:geolocation\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648\",\"info\":{\"data\":{\"description\":\"Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.\",\"title\":\"IP geolocation API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"location\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://documentation.abstractapi.com/ip-geolocation-openapi.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"abstractapi.com\",\"x-serviceName\":\"geolocation\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"externalDocs\":{\"data\":{\"description\":\"API Documentation\",\"url\":\"https://www.abstractapi.com/ip-geolocation-api#docs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"externalDocs\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adafruit.com\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43\",\"preferred\":\"2.0.0\",\"versions\":{\"data\":[{\"key\":\"2.0.0\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43\",\"info\":{\"data\":{\"description\":\"### The Internet of Things for Everyone\\n\\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\\n\\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\\n\\n#### Authentication\\n\\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username \\\"io_username\\\" and the key \\\"io_key_12345\\\" could look like this:\\n\\n $ curl -H \\\"X-AIO-Key: io_key_12345\\\" https://io.adafruit.com/api/v2/io_username/feeds\\n\\nOr like this:\\n\\n $ curl \\\"https://io.adafruit.com/api/v2/io_username/feeds?X-AIO-Key=io_key_12345\\n\\nUsing the node.js [request](https://github.com/request/request) library, IO HTTP requests are as easy as:\\n\\n```js\\nvar request = require('request');\\n\\nvar options = {\\n url: 'https://io.adafruit.com/api/v2/io_username/feeds',\\n headers: {\\n 'X-AIO-Key': 'io_key_12345',\\n 'Content-Type': 'application/json'\\n }\\n};\\n\\nfunction callback(error, response, body) {\\n if (!error && response.statusCode == 200) {\\n var feeds = JSON.parse(body);\\n console.log(feeds.length + \\\" FEEDS AVAILABLE\\\");\\n\\n feeds.forEach(function (feed) {\\n console.log(feed.name, feed.key);\\n })\\n }\\n}\\n\\nrequest(options, callback);\\n```\\n\\nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):\\n\\n```arduino\\n/// based on\\n/// https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266HTTPClient/examples/Authorization/Authorization.ino\\n\\n#include <Arduino.h>\\n#include <ESP8266WiFi.h>\\n#include <ESP8266WiFiMulti.h>\\n#include <ESP8266HTTPClient.h>\\n\\nESP8266WiFiMulti WiFiMulti;\\n\\nconst char* ssid = \\\"---\\\";\\nconst char* password = \\\"---\\\";\\n\\nconst char* host = \\\"io.adafruit.com\\\";\\n\\nconst char* io_key = \\\"---\\\";\\nconst char* path_with_username = \\\"/api/v2/---/dashboards\\\";\\n\\n// Use web browser to view and copy\\n// SHA1 fingerprint of the certificate\\nconst char* fingerprint = \\\"77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18\\\";\\n\\nvoid setup() {\\n Serial.begin(115200);\\n\\n for(uint8_t t = 4; t > 0; t--) {\\n Serial.printf(\\\"[SETUP] WAIT %d...\\\\n\\\", t);\\n Serial.flush();\\n delay(1000);\\n }\\n\\n WiFi.mode(WIFI_STA);\\n WiFiMulti.addAP(ssid, password);\\n\\n // wait for WiFi connection\\n while(WiFiMulti.run() != WL_CONNECTED) {\\n Serial.print('.');\\n delay(1000);\\n }\\n\\n Serial.println(\\\"[WIFI] connected!\\\");\\n\\n HTTPClient http;\\n\\n // start request with URL and TLS cert fingerprint for verification\\n http.begin(\\\"https://\\\" + String(host) + String(path_with_username), fingerprint);\\n\\n // IO API authentication\\n http.addHeader(\\\"X-AIO-Key\\\", io_key);\\n\\n // start connection and send HTTP header\\n int httpCode = http.GET();\\n\\n // httpCode will be negative on error\\n if(httpCode > 0) {\\n // HTTP header has been send and Server response header has been handled\\n Serial.printf(\\\"[HTTP] GET response: %d\\\\n\\\", httpCode);\\n\\n // HTTP 200 OK\\n if(httpCode == HTTP_CODE_OK) {\\n String payload = http.getString();\\n Serial.println(payload);\\n }\\n\\n http.end();\\n }\\n}\\n\\nvoid loop() {}\\n```\\n\\n#### Client Libraries\\n\\nWe have client libraries to help you get started with your project: [Python](https://github.com/adafruit/io-client-python), [Ruby](https://github.com/adafruit/io-client-ruby), [Arduino C++](https://github.com/adafruit/Adafruit_IO_Arduino), [Javascript](https://github.com/adafruit/adafruit-io-node), and [Go](https://github.com/adafruit/io-client-go) are available. They're all open source, so if they don't already do what you want, you can fork and add any feature you'd like.\\n\\n\",\"title\":\"Adafruit IO REST API\",\"version\":\"2.0.0\",\"x-apisguru-categories\":[\"iot\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"swagger\",\"url\":\"https://raw.githubusercontent.com/adafruit/io-api/gh-pages/v2.json\",\"version\":\"2.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adafruit.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.yaml\",\"openapiVer\":\"2.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adobe.com:aem\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34\",\"preferred\":\"3.5.0-pre.0\",\"versions\":{\"data\":[{\"key\":\"3.5.0-pre.0\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"opensource@shinesolutions.com\",\"name\":\"Shine Solutions\",\"url\":\"http://shinesolutions.com\",\"x-twitter\":\"Adobe\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API\",\"title\":\"Adobe Experience Manager (AEM) API\",\"version\":\"3.5.0-pre.0\",\"x-apisguru-categories\":[\"marketing\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/shinesolutions/swagger-aem/master/conf/api.yml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adobe.com\",\"x-serviceName\":\"aem\",\"x-unofficialSpec\":true},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\",\"x-unofficialSpec\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:AccountService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Account/v6/createAccountHolder\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Account API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/AccountService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"AccountService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BalancePlatformService\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\\n\\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\\n\\n ## Authentication\\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\\n\\n ```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: YOUR_API_KEY\\\" \\\\\\n...\\n```\\n\\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-U \\\"ws@BalancePlatform.YOUR_BALANCE_PLATFORM\\\":\\\"YOUR_WS_PASSWORD\\\" \\\\\\n...\\n```\\n## Versioning\\nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://balanceplatform-api-test.adyen.com/bcl/v1\\n```\\n## Going live\\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https://balanceplatform-api-live.adyen.com/bcl/v1`.\\n\\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Issuing: Balance Platform API\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BalancePlatformService-v1.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BalancePlatformService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-22T23:16:57.458\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BinLookupService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"50\",\"versions\":{\"data\":[{\"key\":\"50\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen BinLookup API\",\"version\":\"50\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BinLookupService-v50.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BinLookupService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\\n\\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\\n\\n## Authentication\\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v68/payments\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Checkout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/CheckoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"CheckoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutUtilityService\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@adyen.com\",\"name\":\"Adyen Support\",\"url\":\"https://support.adyen.com/\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A web service containing utility functions available for merchants integrating with Checkout APIs.\\n## Authentication\\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v1/originKeys\\n```\",\"termsOfService\":\"https://docs.adyen.com/legal/terms-conditions\",\"title\":\"Adyen Checkout Utility Service\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"converter\":{\"data\":{\"url\":\"https://github.com/lucybot/api-spec-converter\",\"version\":\"2.7.11\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/adyen/adyen-openapi/master/specs/3.0/CheckoutUtilityService-v1.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"converter\",\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":4,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-serviceName\":\"CheckoutUtilityService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-18T13:57:32.889\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:FundService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Fund/v6/accountHolderBalance\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Fund API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/FundService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"FundService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:HopService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\\n\\n## Authentication\\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Hop/v6/getOnboardingUrl\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Hosted Onboarding\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/HopService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"HopService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:MarketPayNotificationService\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notifications\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"MarketPayNotificationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:NotificationConfigurationService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\\n## Authentication\\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Notification/v6/createNotificationConfiguration\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notification Configuration API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/NotificationConfigurationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"NotificationConfigurationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PaymentService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\\n\\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\\n\\n## Authentication\\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@Company.YourCompany\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://pal-test.adyen.com/pal/servlet/Payment/v68/authorise\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payment API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PaymentService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PaymentService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PayoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\\n\\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\\n## Authentication\\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\\n\\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:\\n\\n```\\ncurl\\n-U \\\"storePayout@Company.[YourCompany]\\\":\\\"YourBasicAuthenticationPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new API credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PayoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PayoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}}]}"
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 5
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-27T14:19:12.983130Z",
"start_time": "2025-05-27T14:19:12.890799Z"
}
},
"cell_type": "code",
"source": "df2.schema()",
"outputs": [
{
"data": {
"text/plain": [
"key: String\n",
"value:\n",
" added: kotlinx.datetime.LocalDateTime\n",
" preferred: String\n",
" versions: *\n",
" key: String\n",
" value:\n",
" added: kotlinx.datetime.LocalDateTime\n",
" externalDocs:\n",
"\n",
" info:\n",
"\n",
" openapiVer: String\n",
" swaggerUrl: String\n",
" swaggerYamlUrl: String\n",
" updated: kotlinx.datetime.LocalDateTime?\n",
"\n",
"\n"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 6
},
{
"cell_type": "markdown",
"source": "As you can see, we've successfully read and converted the JSON to the correct types (including name/values and correct nullability!) using a foolproof method. Go ahead and explore the data a bit more if you feel like it!",
"metadata": {
"collapsed": false
}
},
{
"cell_type": "code",
"source": [
"// For instance: filter the APIs for having recent updates.\n",
"df2.filter {\n",
" value.versions.value.any {\n",
" (updated ?: added).year >= 2021\n",
" }\n",
"}"
],
"metadata": {
"collapsed": false,
"ExecuteTime": {
"end_time": "2025-05-27T14:19:13.568522Z",
"start_time": "2025-05-27T14:19:12.987427Z"
}
},
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_4()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_4\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1073742012&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;... showing only top 20 of 1290 rows&lt;&sol;p&gt;&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 1290, columnsCount = 2&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.com:events&quot;,&quot;1password.local:connect&quot;,&quot;6-dot-authentiqio.appspot.com&quot;,&quot;ably.io:platform&quot;,&quot;ably.net:control&quot;,&quot;abstractapi.com:geolocation&quot;,&quot;adafruit.com&quot;,&quot;adobe.com:aem&quot;,&quot;adyen.com:AccountService&quot;,&quot;adyen.com:BalancePlatformService&quot;,&quot;adyen.com:BinLookupService&quot;,&quot;adyen.com:CheckoutService&quot;,&quot;adyen.com:CheckoutUtilityService&quot;,&quot;adyen.com:FundService&quot;,&quot;adyen.com:HopService&quot;,&quot;adyen.com:MarketPayNotificationService&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;adyen.com:NotificationConfigurationService&bsol;&quot;&gt;adyen.com:NotificationConfigurationSe&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;adyen.com:PaymentService&quot;,&quot;adyen.com:PayoutService&quot;,&quot;adyen.com:RecurringService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-19T10:17:09.188&quot;,&quot;2021-04-16T15:56:45.939&quot;,&quot;2017-03-15T14:45:58&quot;,&quot;2019-07-13T11:28:07&quot;,&quot;2021-07-26T09:45:31.536&quot;,&quot;2021-04-14T17:12:40.648&quot;,&quot;2018-02-10T10:41:43&quot;,&quot;2019-01-03T07:01:34&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-06-14T12:42:12.263&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-11-01T23:17:40.475&quot;,&quot;2021-06-18T13:57:32.889&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-06-21T10:54:37.877&quot;,&quot;2020-11-03T12:51:40.318&quot;,&quot;2021-11-01T23:17:40.475&quot;,&quot;2021-11-01T23:17:40.475&quot;,&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;preferred: String&bsol;&quot;&gt;preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;,&quot;1.3.0&quot;,&quot;6&quot;,&quot;1.1.0&quot;,&quot;1.0.14&quot;,&quot;1.0.0&quot;,&quot;2.0.0&quot;,&quot;3.5.0-pre.0&quot;,&quot;6&quot;,&quot;1&quot;,&quot;50&quot;,&quot;68&quot;,&quot;1&quot;,&quot;6&quot;,&quot;6&quot;,&quot;6&quot;,&quot;6&quot;,&quot;68&quot;,&quot;68&quot;,&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;versions: DataFrame&lt;*&gt;&bsol;&quot;&gt;versions&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742013, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742014, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742015, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742016, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742017, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742018, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742019, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742020, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742021, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742022, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742023, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742024, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742025, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742026, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742027, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742028, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742029, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742030, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742031, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; },{ frameId: 1073742032, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 2, 3], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188&bsol;npreferred: 1.0.0&bsol;nversions: key value&bsol;n 0 1.0.0 { added:2021-07-19T10:17:09.188, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939&bsol;npreferred: 1.3.0&bsol;nversions: key value&bsol;n 0 1.3.0 { added:2021-04-16T15:56:45.939, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2017-03-15T14:45:58, info:{ c...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07&bsol;npreferred: 1.1.0&bsol;nversions: key value&bsol;n 0 1.1.0 { added:2019-07-13T11:28:07, info:{ c...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-26T09:45:31.536&bsol;npreferred: 1.0.14&bsol;nversions: key value&bsol;n 0 1.0.14 { added:2021-07-26T09:45:31.536, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-26T09:45:31.536&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-14T17:12:40.648&bsol;npreferred: 1.0.0&bsol;nversions: key value&bsol;n 0 1.0.0 { added:2021-04-14T17:12:40.648, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-14T17:12:40.648&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2018-02-10T10:41:43&bsol;npreferred: 2.0.0&bsol;nversions: key value&bsol;n 0 2.0.0 { added:2018-02-10T10:41:43, info:{ d...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2018-02-10T10:41:43&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-01-03T07:01:34&bsol;npreferred: 3.5.0-pre.0&bsol;nversions: key value&bsol;n 0 3.5.0-pre.0 { added:2019-01-03T07:01:34, info:{ c...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-01-03T07:01:34&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-14T12:42:12.263&bsol;npreferred: 1&bsol;nversions: key value&bsol;n 0 1 { added:2021-06-14T12:42:12.263, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-14T12:42:12.263&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 50&bsol;nversions: key value&bsol;n 0 50 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-18T13:57:32.889&bsol;npreferred: 1&bsol;nversions: key value&bsol;n 0 1 { added:2021-06-18T13:57:32.889, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-18T13:57:32.889&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-21T10:54:37.877&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2021-06-21T10:54:37.877, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-21T10:54:37.877&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;npreferred: 6&bsol;nversions: key value&bsol;n 0 6 { added:2020-11-03T12:51:40.318, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;npreferred: 68&bsol;nversions: key value&bsol;n 0 68 { added:2021-11-01T23:17:40.475, info...&bsol;n&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742012, rootId: 1073742012, totalRows: 1290 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-19T10:17:09.188&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Events API Specification.&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Events API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742033, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;events&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9, 10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: 1Password Events API Specification.&bsol;ntitle: Events API&bsol;nversion: 1.0.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.com&bsol;nx-serviceName: events&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;1Password Event&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-22T10:32:52.774&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 11, 12, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-19T10:17:09.188&bsol;ninfo: { description:1Password Events API Specification., title:Events API, version:1.0.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml, version:3.0 }, x-providerName:1password.com, x-serviceName:events }&bsol;nupdated: 2021-07-22T10:32:52.774&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.com&sol;events&sol;1.0.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-19T10:17:09.188&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742013, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-04-16T15:56:45.939&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@1password.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Integrations&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;support.1password.com&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@1password.com&bsol;nname: 1Password Integrations&bsol;nurl: https:&sol;&sol;support.1password.com&sol;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@1password.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;REST API interface for 1Password Connect.&bsol;&quot;&gt;REST API interface for 1Password Conn&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1Password Connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.3.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742034, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1password.local&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;connect&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 7, 8, 9, 11, 12, 13, 14], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }&bsol;ndescription: REST API interface for 1Password Connect.&bsol;ntitle: 1Password Connect&bsol;nversion: 1.3.0&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;i.1password.com&sol;media&sol;1passwo... 3.0&bsol;n&bsol;nx-providerName: 1password.local&bsol;nx-serviceName: connect&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T08:51:53.432&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1passw&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.2&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 15, 16, 17, 18, 19, 20], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-16T15:56:45.939&bsol;ninfo: { contact:{ email:support@1password.com, name:1Password Integrations, url:https:&sol;&sol;support.1password.com&sol; }, description:REST API interface for 1Password Connect., title:1Password Connect, version:1.3.0, x-apisguru-categories:[security], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml, version:3.0 }, x-providerName:1password.local, x-serviceName:connect }&bsol;nupdated: 2021-07-26T08:51:53.432&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;1password.local&sol;connect&sol;1.3.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.2&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-16T15:56:45.939&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742014, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2017-03-15T14:45:58&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;hello@authentiq.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.io&sol;support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: hello@authentiq.com&bsol;nname: Authentiq team&bsol;nurl: http:&sol;&sol;authentiq.io&sol;support&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hello@authentiq.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Strong authentication, without the passwords.&bsol;&quot;&gt;Strong authentication, without the pa&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Apache 2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENS&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;license: DataRow&lt;*&gt;&bsol;&quot;&gt;license&lt;&sol;span&gt;&quot;, children: [7, 8], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;name: Apache 2.0&bsol;nurl: http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name: &lt;&sol;span&gt;Apache 2.0&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;http:&sol;&sol;www&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;authentiq.com&sol;terms&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Authentiq API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;security&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;security&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;backgroundColor: String&bsol;&quot;&gt;backgroundColor&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;#F26641&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;backgroundColor: #F26641&bsol;nurl: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;backgroundColor: &lt;&sol;span&gt;#F26641&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;ht&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742035, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6-dot-authentiqio.appspot.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [5, 6, 9, 10, 11, 12, 13, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }&bsol;ndescription: Strong authentication, without the passwords.&bsol;nlicense: { name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }&bsol;ntermsOfService: http:&sol;&sol;authentiq.com&sol;terms&sol;&bsol;ntitle: Authentiq API&bsol;nversion: 6&bsol;nx-apisguru-categories: [security]&bsol;nx-logo: { backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Aut... 3.0&bsol;n&bsol;nx-providerName: 6-dot-authentiqio.appspot.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;hel&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2017-03-15T14:45:58&bsol;ninfo: { contact:{ email:hello@authentiq.com, name:Authentiq team, url:http:&sol;&sol;authentiq.io&sol;support }, description:Strong authentication, without the passwords., license:{ name:Apache 2.0, url:http:&sol;&sol;www.apache.org&sol;licenses&sol;LICENSE-2.0.html }, termsOfService:http:&sol;&sol;authentiq.com&sol;terms&sol;, title:Authentiq API, version:6, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml, version:3.0 }, x-providerName:6-dot-authentiqio.appspot.com }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;6-dot-authentiqio.appspot.com&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2017-03-15T14:45:58&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742015, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2019-07-13T11:28:07&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Ably Support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;www.ably.io&sol;contact&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ablyrealtime&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@ably.io&bsol;nname: Ably Support&bsol;nurl: https:&sol;&sol;www.ably.io&sol;contact&bsol;nx-twitter: ablyrealtime&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@ably.io&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;name...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;&quot;&gt;The [REST API specification](https:&sol;&sol;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Platform API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cloud&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;cloud&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742036, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ably.io&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;platform&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }&bsol;ndescription: The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably.&bsol;ntitle: Platform API&bsol;nversion: 1.1.0&bsol;nx-apisguru-categories: [cloud]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;abl... 3.0&bsol;n&bsol;nx-providerName: ably.io&bsol;nx-serviceName: platform&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:42:14.653&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.i&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 16, 17, 18, 19, 20, 21], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-07-13T11:28:07&bsol;ninfo: { contact:{ email:support@ably.io, name:Ably Support, url:https:&sol;&sol;www.ably.io&sol;contact, x-twitter:ablyrealtime }, description:The [REST API specification](https:&sol;&sol;www.ably.io&sol;documentation&sol;rest-api) for Ably., title:Platform API, version:1.1.0, x-apisguru-categories:[cloud], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml, version:3.0 }, x-providerName:ably.io, x-serviceName:platform }&bsol;nupdated: 2021-07-26T09:42:14.653&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.io&sol;platform&sol;1.1.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-07-13T11:28:07&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742016, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.14&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:45:31.536&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ablyrealtime&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;x-twitter: ablyrealtime&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;x-twitter: &lt;&sol;span&gt;ablyrealtime&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&bsol;n&bsol;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&bsol;n&bsol;nControl API is currently in Beta.&bsol;n&bsol;&quot;&gt;Use the Control API to manage your ap&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Control API v1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.14&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;cloud&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;cloud&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [8], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742037, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;ably.net&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;control&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [3, 4, 5, 6, 7, 9, 10, 11, 12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { x-twitter:ablyrealtime }&bsol;ndescription: Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&bsol;n&bsol;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&bsol;n&bsol;nControl API is currently in Beta.&bsol;n&bsol;ntitle: Control API v1&bsol;nversion: 1.0.14&bsol;nx-apisguru-categories: [cloud]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;abl... 3.0&bsol;n&bsol;nx-providerName: ably.net&bsol;nx-serviceName: control&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;x-twitter: &lt;&sol;span&gt;ably&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-07-26T09:47:48.565&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.n&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.n&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-07-26T09:45:31.536&bsol;ninfo: { contact:{ x-twitter:ablyrealtime }, description:Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.&amp;#92;n&amp;#92;nDetailed information on using this API can be found in the Ably &amp;#60;a href=&amp;#34;https:&sol;&sol;ably.com&sol;documentation&sol;control-api&amp;#34;&amp;#62;developer documentation&amp;#60;&sol;a&amp;#62;.&amp;#92;n&amp;#92;nControl API is currently in Beta.&amp;#92;n, title:Control API v1, version:1.0.14, x-apisguru-categories:[cloud], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;control-v1.yaml, version:3.0 }, x-providerName:ably.net, x-serviceName:control }&bsol;nupdated: 2021-07-26T09:47:48.565&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;ably.net&sol;control&sol;1.0.14&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-07-26T09:45:31.536&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742017, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-04-14T17:12:40.648&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.&bsol;&quot;&gt;Abstract IP geolocation API allows de&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;IP geolocation API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;location&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;location&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742038, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;abstractapi.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;geolocation&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9, 10], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.&bsol;ntitle: IP geolocation API&bsol;nversion: 1.0.0&bsol;nx-apisguru-categories: [location]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;documentation.abstractapi.com... 3.0&bsol;n&bsol;nx-providerName: abstractapi.com&bsol;nx-serviceName: geolocation&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;Abstract IP geo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;API Documentation&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs&bsol;&quot;&gt;https:&sol;&sol;www.abstractapi.com&sol;ip-geoloc&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [12, 13], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: API Documentation&bsol;nurl: https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;API Documentation&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;u...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstra&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstra&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 11, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-04-14T17:12:40.648&bsol;ninfo: { description:Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP., title:IP geolocation API, version:1.0.0, x-apisguru-categories:[location], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;documentation.abstractapi.com&sol;ip-geolocation-openapi.json, version:3.0 }, x-providerName:abstractapi.com, x-serviceName:geolocation }&bsol;nexternalDocs: { description:API Documentation, url:https:&sol;&sol;www.abstractapi.com&sol;ip-geolocation-api#docs }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;abstractapi.com&sol;geolocation&sol;1.0.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.1&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-04-14T17:12:40.648&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742018, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2018-02-10T10:41:43&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;### The Internet of Things for Everyone&bsol;n&bsol;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&bsol;n&bsol;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&bsol;n&bsol;n#### Authentication&bsol;n&bsol;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key &amp;#34;io_key_12345&amp;#34; could look like this:&bsol;n&bsol;n $ curl -H &amp;#34;X-AIO-Key: io_key_12345&amp;#34; https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&bsol;n&bsol;nOr like this:&bsol;n&bsol;n $ curl &amp;#34;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds?X-AIO-Key=io_key_12345&bsol;n&bsol;nUsing the node.js [request](https:&sol;&sol;github.com&sol;request&sol;request) library, IO HTTP requests are as easy as:&bsol;n&bsol;n```js&bsol;nvar request = require(&amp;#39;request&amp;#39;);&bsol;n&bsol;nvar options = {&bsol;n url: &amp;#39;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&amp;#39;,&bsol;n headers: {&bsol;n &amp;#39;X-AIO-Key&amp;#39;: &amp;#39;io_key_12345&amp;#39;,&bsol;n &amp;#39;Content-Type&amp;#39;: &amp;#39;application&sol;json&amp;#39;&bsol;n }&bsol;n};&bsol;n&bsol;nfunction callback(error, response, body) {&bsol;n if (!error &amp;#38;&amp;#38; response.statusCode == 200) {&bsol;n var feeds = JSON.parse(body);&bsol;n console.log(feeds.length + &amp;#34; FEEDS AVAILABLE&amp;#34;);&bsol;n&bsol;n feeds.forEach(function (feed) {&bsol;n console.log(feed.name, feed.key);&bsol;n })&bsol;n }&bsol;n}&bsol;n&bsol;nrequest(options, callback);&bsol;n```&bsol;n&bsol;nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):&bsol;n&bsol;n```arduino&bsol;n&sol;&sol;&sol; based on&bsol;n&sol;&sol;&sol; https:&sol;&sol;github.com&sol;esp8266&sol;Arduino&sol;blob&sol;master&sol;libraries&sol;ESP8266HTTPClient&sol;examples&sol;Authorization&sol;Authorization.ino&bsol;n&bsol;n#include &amp;#60;Arduino.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFi.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFiMulti.h&amp;#62;&bsol;n#include &amp;#60;ESP8266HTTPClient.h&amp;#62;&bsol;n&bsol;nESP8266WiFiMulti WiFiMulti;&bsol;n&bsol;nconst char* ssid = &amp;#34;---&amp;#34;;&bsol;nconst char* password = &amp;#34;---&amp;#34;;&bsol;n&bsol;nconst char* host = &amp;#34;io.adafruit.com&amp;#34;;&bsol;n&bsol;nconst char* io_key = &amp;#34;---&amp;#34;;&bsol;nconst char* path_with_username = &amp;#34;&sol;api&sol;v2&sol;---&sol;dashboards&amp;#34;;&bsol;n&bsol;n&sol;&sol; Use web browser to view and copy&bsol;n&sol;&sol; SHA1 fingerprint of the certificate&bsol;nconst char* fingerprint = &amp;#34;77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18&amp;#34;;&bsol;n&bsol;nvoid setup() {&bsol;n Serial.begin(115200);&bsol;n&bsol;n for(uint8_t t = 4; t &amp;#62; 0; t--) {&bsol;n Serial.printf(&amp;#34;[SETUP] WAIT %d...&amp;#92;n&amp;#34;, t);&bsol;n Serial.flush();&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n WiFi.mode(WIFI_STA);&bsol;n WiFiMulti.addAP(ssid, password);&bsol;n&bsol;n &sol;&sol; wait for WiFi connection&bsol;n while(WiFiMulti.run() != WL_CONNECTED) {&bsol;n Serial.print(&amp;#39;.&amp;#39;);&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n Serial.println(&amp;#34;[WIFI] connected!&amp;#34;);&bsol;n&bsol;n HTTPClient http;&bsol;n&bsol;n &sol;&sol; start request with URL and TLS cert fingerprint for verification&bsol;n http.begin(&amp;#34;https:&sol;&sol;&amp;#34; + String(host) + String(path_with_username), fingerprint);&bsol;n&bsol;n &sol;&sol; IO API authentication&bsol;n http.addHeader(&amp;#34;X-AIO-Key&amp;#34;, io_key);&bsol;n&bsol;n &sol;&sol; start connection and send HTTP header&bsol;n int httpCode = http.GET();&bsol;n&bsol;n &sol;&sol; httpCode will be negative on error&bsol;n if(httpCode &amp;#62; 0) {&bsol;n &sol;&sol; HTTP header has been send and Server response header has been handled&bsol;n Serial.printf(&amp;#34;[HTTP] GET response: %d&amp;#92;n&amp;#34;, httpCode);&bsol;n&bsol;n &sol;&sol; HTTP 200 OK&bsol;n if(httpCode == HTTP_CODE_OK) {&bsol;n String payload = http.getString();&bsol;n Serial.println(payload);&bsol;n }&bsol;n&bsol;n http.end();&bsol;n }&bsol;n}&bsol;n&bsol;nvoid loop() {}&bsol;n```&bsol;n&bsol;n#### Client Libraries&bsol;n&bsol;nWe have client libraries to help you get started with your project: [Python](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-python), [Ruby](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-ruby), [Arduino C++](https:&sol;&sol;github.com&sol;adafruit&sol;Adafruit_IO_Arduino), [Javascript](https:&sol;&sol;github.com&sol;adafruit&sol;adafruit-io-node), and [Go](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-go) are available. They&amp;#39;re all open source, so if they don&amp;#39;t already do what you want, you can fork and add any feature you&amp;#39;d like.&bsol;n&bsol;n&bsol;&quot;&gt;### The Internet of Things for Everyo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adafruit IO REST API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;iot&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;iot&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [6], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742039, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adafruit.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5, 7, 8, 9], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;description: ### The Internet of Things for Everyone&bsol;n&bsol;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&bsol;n&bsol;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&bsol;n&bsol;n#### Authentication&bsol;n&bsol;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key &amp;#34;io_key_12345&amp;#34; could look like this:&bsol;n&bsol;n $ curl -H &amp;#34;X-AIO-Key: io_key_12345&amp;#34; https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&bsol;n&bsol;nOr like this:&bsol;n&bsol;n $ curl &amp;#34;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds?X-AIO-Key=io_key_12345&bsol;n&bsol;nUsing the node.js [request](https:&sol;&sol;github.com&sol;request&sol;request) library, IO HTTP requests are as easy as:&bsol;n&bsol;n```js&bsol;nvar request = require(&amp;#39;request&amp;#39;);&bsol;n&bsol;nvar options = {&bsol;n url: &amp;#39;https:&sol;&sol;io.adafruit.com&sol;api&sol;v2&sol;io_username&sol;feeds&amp;#39;,&bsol;n headers: {&bsol;n &amp;#39;X-AIO-Key&amp;#39;: &amp;#39;io_key_12345&amp;#39;,&bsol;n &amp;#39;Content-Type&amp;#39;: &amp;#39;application&sol;json&amp;#39;&bsol;n }&bsol;n};&bsol;n&bsol;nfunction callback(error, response, body) {&bsol;n if (!error &amp;#38;&amp;#38; response.statusCode == 200) {&bsol;n var feeds = JSON.parse(body);&bsol;n console.log(feeds.length + &amp;#34; FEEDS AVAILABLE&amp;#34;);&bsol;n&bsol;n feeds.forEach(function (feed) {&bsol;n console.log(feed.name, feed.key);&bsol;n })&bsol;n }&bsol;n}&bsol;n&bsol;nrequest(options, callback);&bsol;n```&bsol;n&bsol;nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):&bsol;n&bsol;n```arduino&bsol;n&sol;&sol;&sol; based on&bsol;n&sol;&sol;&sol; https:&sol;&sol;github.com&sol;esp8266&sol;Arduino&sol;blob&sol;master&sol;libraries&sol;ESP8266HTTPClient&sol;examples&sol;Authorization&sol;Authorization.ino&bsol;n&bsol;n#include &amp;#60;Arduino.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFi.h&amp;#62;&bsol;n#include &amp;#60;ESP8266WiFiMulti.h&amp;#62;&bsol;n#include &amp;#60;ESP8266HTTPClient.h&amp;#62;&bsol;n&bsol;nESP8266WiFiMulti WiFiMulti;&bsol;n&bsol;nconst char* ssid = &amp;#34;---&amp;#34;;&bsol;nconst char* password = &amp;#34;---&amp;#34;;&bsol;n&bsol;nconst char* host = &amp;#34;io.adafruit.com&amp;#34;;&bsol;n&bsol;nconst char* io_key = &amp;#34;---&amp;#34;;&bsol;nconst char* path_with_username = &amp;#34;&sol;api&sol;v2&sol;---&sol;dashboards&amp;#34;;&bsol;n&bsol;n&sol;&sol; Use web browser to view and copy&bsol;n&sol;&sol; SHA1 fingerprint of the certificate&bsol;nconst char* fingerprint = &amp;#34;77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18&amp;#34;;&bsol;n&bsol;nvoid setup() {&bsol;n Serial.begin(115200);&bsol;n&bsol;n for(uint8_t t = 4; t &amp;#62; 0; t--) {&bsol;n Serial.printf(&amp;#34;[SETUP] WAIT %d...&amp;#92;n&amp;#34;, t);&bsol;n Serial.flush();&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n WiFi.mode(WIFI_STA);&bsol;n WiFiMulti.addAP(ssid, password);&bsol;n&bsol;n &sol;&sol; wait for WiFi connection&bsol;n while(WiFiMulti.run() != WL_CONNECTED) {&bsol;n Serial.print(&amp;#39;.&amp;#39;);&bsol;n delay(1000);&bsol;n }&bsol;n&bsol;n Serial.println(&amp;#34;[WIFI] connected!&amp;#34;);&bsol;n&bsol;n HTTPClient http;&bsol;n&bsol;n &sol;&sol; start request with URL and TLS cert fingerprint for verification&bsol;n http.begin(&amp;#34;https:&sol;&sol;&amp;#34; + String(host) + String(path_with_username), fingerprint);&bsol;n&bsol;n &sol;&sol; IO API authentication&bsol;n http.addHeader(&amp;#34;X-AIO-Key&amp;#34;, io_key);&bsol;n&bsol;n &sol;&sol; start connection and send HTTP header&bsol;n int httpCode = http.GET();&bsol;n&bsol;n &sol;&sol; httpCode will be negative on error&bsol;n if(httpCode &amp;#62; 0) {&bsol;n &sol;&sol; HTTP header has been send and Server response header has been handled&bsol;n Serial.printf(&amp;#34;[HTTP] GET response: %d&amp;#92;n&amp;#34;, httpCode);&bsol;n&bsol;n &sol;&sol; HTTP 200 OK&bsol;n if(httpCode == HTTP_CODE_OK) {&bsol;n String payload = http.getString();&bsol;n Serial.println(payload);&bsol;n }&bsol;n&bsol;n http.end();&bsol;n }&bsol;n}&bsol;n&bsol;nvoid loop() {}&bsol;n```&bsol;n&bsol;n#### Client Libraries&bsol;n&bsol;nWe have client libraries to help you get started with your project: [Python](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-python), [Ruby](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-ruby), [Arduino C++](https:&sol;&sol;github.com&sol;adafruit&sol;Adafruit_IO_Arduino), [Javascript](https:&sol;&sol;github.com&sol;adafruit&sol;adafruit-io-node), and [Go](https:&sol;&sol;github.com&sol;adafruit&sol;io-client-go) are available. They&amp;#39;re all open source, so if they don&amp;#39;t already do what you want, you can fork and add any feature you&amp;#39;d like.&bsol;n&bsol;n&bsol;ntitle: Adafruit IO REST API&bsol;nversion: 2.0.0&bsol;nx-apisguru-categories: [iot]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 swagger https:&sol;&sol;raw.githubusercontent.com&sol;ada... 2.0&bsol;n&bsol;nx-providerName: adafruit.com&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;description: &lt;&sol;span&gt;### The Interne&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafru&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafru&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 10, 11, 12, 13, 14, 15], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2018-02-10T10:41:43&bsol;ninfo: { description:### The Internet of Things for Everyone&amp;#92;n&amp;#92;nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https:&sol;&sol;learn.adafruit.com&sol;series&sol;adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https:&sol;&sol;www.adafruit.com&sol;product&sol;2821).&amp;#92;n&amp;#92;nThis API documentation is hosted on GitHub Pages and is available at [https:&sol;&sol;github.com&sol;adafruit&sol;io-api](https:&sol;&sol;github.com&sol;adafruit&sol;io-api). For questions or comments visit the [Adafruit IO Forums](https:&sol;&sol;forums.adafruit.com&sol;viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https:&sol;&sol;discord.gg&sol;adafruit).&amp;#92;n&amp;#92;n#### Authentication&amp;#92;n&amp;#92;nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username &amp;#34;io_username&amp;#34; and the key..., title:Adafruit IO REST API, version:2.0.0, x-apisguru-categories:[iot], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_adafruit_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https:&sol;&sol;raw.githubusercontent.com&sol;adafruit&sol;io-api&sol;gh-pages&sol;v2.json, version:2.0 }, x-providerName:adafruit.com }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adafruit.com&sol;2.0.0&sol;swagger.yaml&bsol;nopenapiVer: 2.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2018-02-10T10:41:43&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742019, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.5.0-pre.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2019-01-03T07:01:34&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;opensource@shinesolutions.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Shine Solutions&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;http:&sol;&sol;shinesolutions.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adobe&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: opensource@shinesolutions.com&bsol;nname: Shine Solutions&bsol;nurl: http:&sol;&sol;shinesolutions.com&bsol;nx-twitter: Adobe&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;opensource@shinesolut&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API&bsol;&quot;&gt;Swagger AEM is an OpenAPI specificati&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adobe Experience Manager (AEM) API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.5.0-pre.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;marketing&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;marketing&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [11], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742040, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adobe.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;aem&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-unofficialSpec: Boolean&bsol;&quot;&gt;x-unofficialSpec&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 12, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:opensource@shinesolutions.com, name:Shine Solutions, url:http:&sol;&sol;shinesolutions.com, x-twitter:Adobe }&bsol;ndescription: Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API&bsol;ntitle: Adobe Experience Manager (AEM) API&bsol;nversion: 3.5.0-pre.0&bsol;nx-apisguru-categories: [marketing]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;shi... 3.0&bsol;n&bsol;nx-providerName: adobe.com&bsol;nx-serviceName: aem&bsol;nx-unofficialSpec: true&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;ope&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T12:16:53.715&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 17, 18, 19, 20, 21, 22], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2019-01-03T07:01:34&bsol;ninfo: { contact:{ email:opensource@shinesolutions.com, name:Shine Solutions, url:http:&sol;&sol;shinesolutions.com, x-twitter:Adobe }, description:Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API, title:Adobe Experience Manager (AEM) API, version:3.5.0-pre.0, x-apisguru-categories:[marketing], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adobe_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;shinesolutions&sol;swagger-aem&sol;master&sol;conf&sol;api.yml, version:3.0 }, x-providerName:adobe.com, x-serviceName:aem, x-unofficialSpec:true }&bsol;nupdated: 2021-06-21T12:16:53.715&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adobe.com&sol;aem&sol;3.5.0-pre.0&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2019-01-03T07:01:34&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742020, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Account&sol;v6&sol;createAccountHolder&bsol;n```&bsol;&quot;&gt;The Account API provides endpoints fo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Account API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742041, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;AccountService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Account&sol;v6&sol;createAccountHolder&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Account API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: AccountService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&amp;#92;n## Authentication&amp;#92;nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Acc..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Account API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;AccountService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:AccountService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;AccountService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742021, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-14T12:42:12.263&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&bsol;n&bsol;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&bsol;n&bsol;n ## Authentication&bsol;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&bsol;n&bsol;n ```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n&bsol;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n## Versioning&bsol;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v1&bsol;n```&bsol;n## Going live&bsol;nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https:&sol;&sol;balanceplatform-api-live.adyen.com&sol;bcl&sol;v1`.&bsol;n&bsol;nFor more information, refer to our [Going live documentation](https:&sol;&sol;docs.adyen.com&sol;issuing&sol;integration-checklist#going-live).&bsol;&quot;&gt;The Balance Platform API enables you &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Issuing: Balance Platform API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742042, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;BalancePlatformService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&bsol;n&bsol;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&bsol;n&bsol;n ## Authentication&bsol;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&bsol;n&bsol;n ```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n&bsol;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;n## Versioning&bsol;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v1&bsol;n```&bsol;n## Going live&bsol;nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https:&sol;&sol;balanceplatform-api-live.adyen.com&sol;bcl&sol;v1`.&bsol;n&bsol;nFor more information, refer to our [Going live documentation](https:&sol;&sol;docs.adyen.com&sol;issuing&sol;integration-checklist#going-live).&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Issuing: Balance Platform API&bsol;nversion: 1&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: BalancePlatformService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-22T23:16:57.458&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 18, 19, 20, 21, 22, 23], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-14T12:42:12.263&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.&amp;#92;n&amp;#92;nFor information about use cases, refer to [Adyen Issuing](https:&sol;&sol;docs.adyen.com&sol;issuing).&amp;#92;n&amp;#92;n ## Authentication&amp;#92;nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:&amp;#92;n&amp;#92;n ```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: YOUR_API_KEY&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;n&amp;#92;nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-U &amp;#34;ws@BalancePlatform.YOUR_BALANCE_PLATFORM&amp;#34;:&amp;#34;YOUR_WS_PASSWORD&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;n## Versioning&amp;#92;nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&amp;#92;n&amp;#92;nFor example:&amp;#92;n```&amp;#92;nhttps:&sol;&sol;balanceplatform-api-test.adyen.com&sol;bcl&sol;v..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Issuing: Balance Platform API, version:1, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BalancePlatformService-v1.json, version:3.1 }, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BalancePlatformService }&bsol;nupdated: 2021-11-22T23:16:57.458&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BalancePlatformService&sol;1&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-14T12:42:12.263&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742022, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;50&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.&bsol;&quot;&gt;The BIN Lookup API provides endpoints&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen BinLookup API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;50&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742043, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;BinLookupService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen BinLookup API&bsol;nversion: 50&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: BinLookupService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen BinLookup API, version:50, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BinLookupService-v50.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BinLookupService }&bsol;nupdated: 2021-11-01T23:17:40.475&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;BinLookupService&sol;50&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742023, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&bsol;n&bsol;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&bsol;n&bsol;n## Authentication&bsol;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v68&sol;payments&bsol;n```&bsol;&quot;&gt;Adyen Checkout API provides a simple &lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Checkout API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742044, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;CheckoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&bsol;n&bsol;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&bsol;n&bsol;n## Authentication&bsol;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v68&sol;payments&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Checkout API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: CheckoutService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).&amp;#92;n&amp;#92;nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments).&amp;#92;n&amp;#92;n## Authentication&amp;#92;nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developmen..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Checkout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;CheckoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:CheckoutService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742024, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-18T13:57:32.889&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;support@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Support&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;https:&sol;&sol;support.adyen.com&sol;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: support@adyen.com&bsol;nname: Adyen Support&bsol;nurl: https:&sol;&sol;support.adyen.com&sol;&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;support@adyen.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;na...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A web service containing utility functions available for merchants integrating with Checkout APIs.&bsol;n## Authentication&bsol;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&bsol;n```&bsol;&quot;&gt;A web service containing utility func&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions&bsol;&quot;&gt;https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-co&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Checkout Utility Service&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;1&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742045, value: &quot;&lt;b&gt;DataFrame 1 x 4&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;CheckoutUtilityService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:support@adyen.com, name:Adyen Support, url:https:&sol;&sol;support.adyen.com&sol;, x-twitter:Adyen }&bsol;ndescription: A web service containing utility functions available for merchants integrating with Checkout APIs.&bsol;n## Authentication&bsol;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions&bsol;ntitle: Adyen Checkout Utility Service&bsol;nversion: 1&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: converter format url version&bsol;n 0 { url:https:&sol;&sol;github.com&sol;lucybot&sol;api-... openapi https:&sol;&sol;raw.githubusercontent.com&sol;ady... 3.0&bsol;n&bsol;nx-providerName: adyen.com&bsol;nx-serviceName: CheckoutUtilityService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;sup&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-18T13:57:32.889&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 17, 18, 19, 20, 21, 22], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-18T13:57:32.889&bsol;ninfo: { contact:{ email:support@adyen.com, name:Adyen Support, url:https:&sol;&sol;support.adyen.com&sol;, x-twitter:Adyen }, description:A web service containing utility functions available for merchants integrating with Checkout APIs.&amp;#92;n## Authentication&amp;#92;nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https:&sol;&sol;docs.adyen.com&sol;developers&sol;user-management&sol;how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;X-API-Key: Your_Checkout_API_key&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate a new API Key to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;developers&sol;api-reference&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&amp;#92;n&amp;#92;nFor example:&amp;#92;n```&amp;#92;nhttps:&sol;&sol;checkout-test.adyen.com&sol;v1&sol;originKeys&amp;#92;n```, termsOfService:https:&sol;&sol;docs.adyen.com&sol;legal&sol;terms-conditions, title:Adyen Checkout Utility Service, version:1, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 4] { converter:{ url:https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter, version:2.7.11 }, format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;adyen&sol;adyen-openapi&sol;master&sol;specs&sol;3.0&sol;CheckoutUtilityService-v1.json, version:3.0 }, x-providerName:adyen.com, x-serviceName:CheckoutUtilityService }&bsol;nupdated: 2021-06-18T13:57:32.889&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;CheckoutUtilityService&sol;1&sol;openapi.yaml&bsol;nopenapiVer: 3.0.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-18T13:57:32.889&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742025, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Fund&sol;v6&sol;accountHolderBalance&bsol;n```&bsol;&quot;&gt;The Fund API provides endpoints for m&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Fund API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742046, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;FundService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&bsol;n## Authentication&bsol;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Fund&sol;v6&sol;accountHolderBalance&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Fund API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: FundService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms).&amp;#92;n## Authentication&amp;#92;nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, please contact the [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Fund API supports versioning..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Fund API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;FundService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:FundService }&bsol;nupdated: 2021-11-01T23:17:40.475&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;FundService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742026, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Hop&sol;v6&sol;getOnboardingUrl&bsol;n```&bsol;&quot;&gt;The Hosted onboarding API provides en&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Hosted Onboarding&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742047, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;HopService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Hop&sol;v6&sol;getOnboardingUrl&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Hosted Onboarding&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: HopService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;hosted-onboarding-page) or a [PCI compliance questionnaire](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.&amp;#92;n&amp;#92;n## Authentication&amp;#92;nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use your credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Hosted onboarding API suppo..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Hosted Onboarding, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;HopService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:HopService }&bsol;nupdated: 2021-11-01T23:17:40.475&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;HopService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742027, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-06-21T10:54:37.877&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;&quot;&gt;The Notification API sends notificati&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen for Platforms: Notifications&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742048, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;MarketPayNotificationService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Notifications&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: MarketPayNotificationService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-06-21T10:54:37.877&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications)., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Notifications, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;MarketPayNotificationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:MarketPayNotificationService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;MarketPayNotificationService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-06-21T10:54:37.877&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742028, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2020-11-03T12:51:40.318&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;n## Authentication&bsol;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Notification&sol;v6&sol;createNotificationConfiguration&bsol;n```&bsol;&quot;&gt;The Notification Configuration API pr&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;Adyen for Platforms: Notification Configuration API&bsol;&quot;&gt;Adyen for Platforms: Notification Con&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;6&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742049, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;NotificationConfigurationService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&bsol;n&bsol;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&bsol;n## Authentication&bsol;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;cal-test.adyen.com&sol;cal&sol;services&sol;Notification&sol;v6&sol;createNotificationConfiguration&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen for Platforms: Notification Configuration API&bsol;nversion: 6&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: NotificationConfigurationService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2020-11-03T12:51:40.318&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.&amp;#92;n&amp;#92;nFor more information, refer to our [documentation](https:&sol;&sol;docs.adyen.com&sol;platforms&sol;notifications).&amp;#92;n## Authentication&amp;#92;nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don&amp;#39;t have one, contact our [Adyen Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@MarketPlace.YourMarketPlace&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nThe Notification Configuration API supports versioning of its endpoints through a ..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen for Platforms: Notification Configuration API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;NotificationConfigurationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:NotificationConfigurationService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;NotificationConfigurationService&sol;6&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2020-11-03T12:51:40.318&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742029, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&bsol;n&bsol;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Payment&sol;v68&sol;authorise&bsol;n```&bsol;&quot;&gt;A set of API endpoints that allow you&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Payment API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742050, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;PaymentService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&bsol;n&bsol;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&bsol;n&bsol;n## Authentication&bsol;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Payment&sol;v68&sol;authorise&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Payment API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: PaymentService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.&amp;#92;n&amp;#92;nTo learn more about the API, visit [Classic integration](https:&sol;&sol;docs.adyen.com&sol;classic-integration).&amp;#92;n&amp;#92;n## Authentication&amp;#92;nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nPayments API supports versio..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Payment API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PaymentService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PaymentService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PaymentService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742030, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&bsol;n&bsol;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&bsol;n## Authentication&bsol;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&bsol;n&bsol;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new API credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n&bsol;&quot;&gt;A set of API endpoints that allow you&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Payout API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742051, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;PayoutService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&bsol;n&bsol;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&bsol;n## Authentication&bsol;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&bsol;n&bsol;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nWhen going live, you need to generate new API credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Payout API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: PayoutService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-12T23:18:19.544&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to store payout details, confirm, or decline a payout.&amp;#92;n&amp;#92;nFor more information, refer to [Online payouts](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts).&amp;#92;n## Authentication&amp;#92;nTo use the Payout API, you need to have [two API credentials](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don&amp;#39;t have the required API credentials, contact our [Support Team](https:&sol;&sol;support.adyen.com&sol;hc&sol;en-us&sol;requests&sol;new).&amp;#92;n&amp;#92;nBoth of these API credentials must be authenticated with [basic authentication](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;storePayout@Company.[YourCompany]&amp;#34;:&amp;#34;YourBasicAuthenticationPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nWhen going ..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Payout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PayoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PayoutService }&bsol;nupdated: 2021-11-12T23:18:19.544&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;PayoutService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742031, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-01T23:17:40.475&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;email: String&bsol;&quot;&gt;email&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;developer-experience@adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;name: String&bsol;&quot;&gt;name&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Developer Experience team&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;&quot;&gt;https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;commu&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-twitter: String&bsol;&quot;&gt;x-twitter&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;contact: DataRow&lt;*&gt;&bsol;&quot;&gt;contact&lt;&sol;span&gt;&quot;, children: [2, 3, 4, 5], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;email: developer-experience@adyen.com&bsol;nname: Adyen Developer Experience team&bsol;nurl: https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics&bsol;nx-twitter: Adyen&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;developer-experience@&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;description: String&bsol;&quot;&gt;description&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.&bsol;n&bsol;nFor more information, refer to our [Tokenization documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;tokenization).&bsol;n## Authentication&bsol;nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nRecurring API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Recurring&sol;v68&sol;disable&bsol;n```&bsol;&quot;&gt;The Recurring APIs allow you to manag&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;termsOfService: String&bsol;&quot;&gt;termsOfService&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;&quot;&gt;https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;Adyen Recurring API&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;68&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-apisguru-categories: List&lt;String&gt;&bsol;&quot;&gt;x-apisguru-categories&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;payment&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;[&lt;&sol;span&gt;payment&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;]&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;h&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-logo: DataRow&lt;*&gt;&bsol;&quot;&gt;x-logo&lt;&sol;span&gt;&quot;, children: [12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;cac&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-origin: DataFrame&lt;*&gt;&bsol;&quot;&gt;x-origin&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742052, value: &quot;&lt;b&gt;DataFrame 1 x 3&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-preferred: Boolean&bsol;&quot;&gt;x-preferred&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-providerName: String&bsol;&quot;&gt;x-providerName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-publicVersion: Boolean&bsol;&quot;&gt;x-publicVersion&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;true&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;x-serviceName: String&bsol;&quot;&gt;x-serviceName&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;RecurringService&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;info: DataRow&lt;*&gt;&bsol;&quot;&gt;info&lt;&sol;span&gt;&quot;, children: [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }&bsol;ndescription: The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.&bsol;n&bsol;nFor more information, refer to our [Tokenization documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;tokenization).&bsol;n## Authentication&bsol;nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&bsol;n&bsol;n```&bsol;ncurl&bsol;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&bsol;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&bsol;n...&bsol;n```&bsol;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&bsol;n&bsol;n## Versioning&bsol;nRecurring API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: &amp;#34;vXX&amp;#34;, where XX is the version number.&bsol;n&bsol;nFor example:&bsol;n```&bsol;nhttps:&sol;&sol;pal-test.adyen.com&sol;pal&sol;servlet&sol;Recurring&sol;v68&sol;disable&bsol;n```&bsol;ntermsOfService: https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions&bsol;ntitle: Adyen Recurring API&bsol;nversion: 68&bsol;nx-apisguru-categories: [payment]&bsol;nx-logo: { url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }&bsol;nx-origin: format url version&bsol;n 0 openapi https:&sol;&sol;raw.githubusercontent.com&sol;Ady... 3.1&bsol;n&bsol;nx-preferred: true&bsol;nx-providerName: adyen.com&bsol;nx-publicVersion: true&bsol;nx-serviceName: RecurringService&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;contact: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;email: &lt;&sol;span&gt;dev&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: kotlinx.datetime.LocalDateTime&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2021-11-02T23:15:52.596&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerUrl: String&bsol;&quot;&gt;swaggerUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;RecurringService&sol;68&sol;openapi.json&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;swaggerYamlUrl: String&bsol;&quot;&gt;swaggerYamlUrl&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;RecurringService&sol;68&sol;openapi.yaml&bsol;&quot;&gt;https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;openapiVer: String&bsol;&quot;&gt;openapiVer&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1.0&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;externalDocs: DataRow&lt;*&gt;&bsol;&quot;&gt;externalDocs&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;null&bsol;&quot;&gt;{ }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: DataRow&lt;*&gt;&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [1, 19, 20, 21, 22, 23, 24], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 2021-11-01T23:17:40.475&bsol;ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https:&sol;&sol;www.adyen.help&sol;hc&sol;en-us&sol;community&sol;topics, x-twitter:Adyen }, description:The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.&amp;#92;n&amp;#92;nFor more information, refer to our [Tokenization documentation](https:&sol;&sol;docs.adyen.com&sol;online-payments&sol;tokenization).&amp;#92;n## Authentication&amp;#92;nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;api-credentials). Then use its credentials to authenticate your request, for example:&amp;#92;n&amp;#92;n```&amp;#92;ncurl&amp;#92;n-U &amp;#34;ws@Company.YourCompany&amp;#34;:&amp;#34;YourWsPassword&amp;#34; &amp;#92;&amp;#92;n-H &amp;#34;Content-Type: application&sol;json&amp;#34; &amp;#92;&amp;#92;n...&amp;#92;n```&amp;#92;nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https:&sol;&sol;docs.adyen.com&sol;development-resources&sol;live-endpoints).&amp;#92;n&amp;#92;n## Versioning&amp;#92;nRecurring API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffi..., termsOfService:https:&sol;&sol;www.adyen.com&sol;legal&sol;terms-and-conditions, title:Adyen Recurring API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https:&sol;&sol;api.apis.guru&sol;v2&sol;cache&sol;logo&sol;https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;RecurringService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:RecurringService }&bsol;nupdated: 2021-11-02T23:15:52.596&bsol;nswaggerUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;RecurringService&sol;68&sol;openapi.json&bsol;nswaggerYamlUrl: https:&sol;&sol;api.apis.guru&sol;v2&sol;specs&sol;adyen.com&sol;RecurringService&sol;68&sol;openapi.yaml&bsol;nopenapiVer: 3.1.0&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;2021-11-01T23:17:40.475&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742032, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-events-reporting&sol;1password-events-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742033, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;i.1password.com&sol;media&sol;1password-connect&sol;1password-connect-api.yaml&bsol;&quot;&gt;https:&sol;&sol;i.1password.com&sol;media&sol;1passwo&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742034, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;AuthentiqID&sol;authentiq-docs&sol;master&sol;docs&sol;swagger&sol;issuer.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Aut&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742035, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;platform-v1.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;abl&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742036, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;ably&sol;open-specs&sol;main&sol;definitions&sol;control-v1.yaml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;abl&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742037, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;documentation.abstractapi.com&sol;ip-geolocation-openapi.json&bsol;&quot;&gt;https:&sol;&sol;documentation.abstractapi.com&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742038, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;swagger&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;adafruit&sol;io-api&sol;gh-pages&sol;v2.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;ada&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.0&quot;] }, \n",
"], id: 1073742039, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;shinesolutions&sol;swagger-aem&sol;master&sol;conf&sol;api.yml&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;shi&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742040, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;AccountService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742041, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BalancePlatformService-v1.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742042, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;BinLookupService-v50.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742043, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;CheckoutService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742044, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter&bsol;&quot;&gt;https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-c&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;2.7.11&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;converter: DataRow&lt;*&gt;&bsol;&quot;&gt;converter&lt;&sol;span&gt;&quot;, children: [0, 1], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;url: https:&sol;&sol;github.com&sol;lucybot&sol;api-spec-converter&bsol;nversion: 2.7.11&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;url: &lt;&sol;span&gt;https:&sol;&sol;github.com&sol;luc&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;v...&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;adyen&sol;adyen-openapi&sol;master&sol;specs&sol;3.0&sol;CheckoutUtilityService-v1.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.0&quot;] }, \n",
"], id: 1073742045, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;FundService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742046, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;HopService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742047, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;MarketPayNotificationService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742048, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;NotificationConfigurationService-v6.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742049, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PaymentService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742050, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;PayoutService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742051, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;format: String&bsol;&quot;&gt;format&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;openapi&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;url: String&bsol;&quot;&gt;url&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;https:&sol;&sol;raw.githubusercontent.com&sol;Adyen&sol;adyen-openapi&sol;master&sol;json&sol;RecurringService-v68.json&bsol;&quot;&gt;https:&sol;&sol;raw.githubusercontent.com&sol;Ady&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;...&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;version: String&bsol;&quot;&gt;version&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;3.1&quot;] }, \n",
"], id: 1073742052, rootId: 1073742012, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1073742012) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_4() {\n",
" let elem = document.getElementById(\"iframe_out_4\");\n",
" resize_iframe_out_4(elem);\n",
" setInterval(resize_iframe_out_4, 5000, elem);\n",
" }\n",
" function resize_iframe_out_4(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1073742053\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"bottomBorder\" style=\"text-align:left\">preferred</th><th class=\"bottomBorder\" style=\"text-align:left\">versions</th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.com:events</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188</td><td style=\"vertical-align:top\">1.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742054\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-19T10:17:09.188</td><td class=\"leftBorder\" style=\"vertical-align:top\">1Password Events API Specification.</td><td style=\"vertical-align:top\">Events API</td><td style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742055\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">events</td><td style=\"vertical-align:top\">2021-07-22T10:32:52.774</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1password.local:connect</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939</td><td style=\"vertical-align:top\">1.3.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742056\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-16T15:56:45.939</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@1password.com</td><td style=\"vertical-align:top\">1Password Integrations</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://support.1password.com/</td><td style=\"vertical-align:top\">REST API interface for 1Password Conn<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">1Password Connect</td><td style=\"vertical-align:top\">1.3.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742057\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://i.1password.com/media/1passwo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">1password.local</td><td class=\"rightBorder\" style=\"vertical-align:top\">connect</td><td style=\"vertical-align:top\">2021-07-26T08:51:53.432</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.2</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742058\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">license</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder\" style=\"text-align:left\">x-logo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">backgroundColor</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2017-03-15T14:45:58</td><td class=\"leftBorder\" style=\"vertical-align:top\">hello@authentiq.com</td><td style=\"vertical-align:top\">Authentiq team</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://authentiq.io/support</td><td class=\"rightBorder\" style=\"vertical-align:top\">Strong authentication, without the pa<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">Apache 2.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">http://authentiq.com/terms/</td><td style=\"vertical-align:top\">Authentiq API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[security]</td><td class=\"leftBorder\" style=\"vertical-align:top\">#F26641</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742059\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Aut<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">6-dot-authentiqio.appspot.com</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ably.io:platform</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07</td><td style=\"vertical-align:top\">1.1.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742060\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-07-13T11:28:07</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@ably.io</td><td style=\"vertical-align:top\">Ably Support</td><td style=\"vertical-align:top\">https://www.ably.io/contact</td><td class=\"rightBorder\" style=\"vertical-align:top\">ablyrealtime</td><td style=\"vertical-align:top\">The [REST API specification](https://<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Platform API</td><td style=\"vertical-align:top\">1.1.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[cloud]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742061\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/abl<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">ably.io</td><td class=\"rightBorder\" style=\"vertical-align:top\">platform</td><td style=\"vertical-align:top\">2021-07-26T09:42:14.653</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ably.net:control</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-26T09:45:31.536</td><td style=\"vertical-align:top\">1.0.14</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742062\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.14</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-07-26T09:45:31.536</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">ablyrealtime</td><td style=\"vertical-align:top\">Use the Control API to manage your ap<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Control API v1</td><td style=\"vertical-align:top\">1.0.14</td><td class=\"rightBorder\" style=\"vertical-align:top\">[cloud]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742063\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/abl<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">ably.net</td><td class=\"rightBorder\" style=\"vertical-align:top\">control</td><td style=\"vertical-align:top\">2021-07-26T09:47:48.565</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">abstractapi.com:geolocation</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-14T17:12:40.648</td><td style=\"vertical-align:top\">1.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742064\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">externalDocs</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th class=\"rightBorder\" style=\"text-align:left\">url</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-04-14T17:12:40.648</td><td class=\"leftBorder\" style=\"vertical-align:top\">Abstract IP geolocation API allows de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">IP geolocation API</td><td style=\"vertical-align:top\">1.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[location]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742065\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://documentation.abstractapi.com<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">abstractapi.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">geolocation</td><td class=\"leftBorder\" style=\"vertical-align:top\">API Documentation</td><td class=\"rightBorder\" style=\"vertical-align:top\">https://www.abstractapi.com/ip-geoloc<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.1</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adafruit.com</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2018-02-10T10:41:43</td><td style=\"vertical-align:top\">2.0.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742066\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th class=\"rightBorder\" style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">2.0.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2018-02-10T10:41:43</td><td class=\"leftBorder\" style=\"vertical-align:top\">### The Internet of Things for Everyo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adafruit IO REST API</td><td style=\"vertical-align:top\">2.0.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[iot]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742067\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">swagger</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/ada<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td><td class=\"rightBorder\" style=\"vertical-align:top\">adafruit.com</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adobe.com:aem</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-01-03T07:01:34</td><td style=\"vertical-align:top\">3.5.0-pre.0</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742068\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-serviceName</th><th class=\"rightBorder\" style=\"text-align:left\">x-unofficialSpec</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">3.5.0-pre.0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2019-01-03T07:01:34</td><td class=\"leftBorder\" style=\"vertical-align:top\">opensource@shinesolutions.com</td><td style=\"vertical-align:top\">Shine Solutions</td><td style=\"vertical-align:top\">http://shinesolutions.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">Adobe</td><td style=\"vertical-align:top\">Swagger AEM is an OpenAPI specificati<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adobe Experience Manager (AEM) API</td><td style=\"vertical-align:top\">3.5.0-pre.0</td><td class=\"rightBorder\" style=\"vertical-align:top\">[marketing]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742069\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/shi<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adobe.com</td><td style=\"vertical-align:top\">aem</td><td class=\"rightBorder\" style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">2021-06-21T12:16:53.715</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:AccountService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742070\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Account API provides endpoints fo<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Account API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742071\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">AccountService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:BalancePlatformService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-14T12:42:12.263</td><td style=\"vertical-align:top\">1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742072\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-14T12:42:12.263</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Balance Platform API enables you <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Issuing: Balance Platform API</td><td style=\"vertical-align:top\">1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742073\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">BalancePlatformService</td><td style=\"vertical-align:top\">2021-11-22T23:16:57.458</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:BinLookupService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742074\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The BIN Lookup API provides endpoints<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen BinLookup API</td><td style=\"vertical-align:top\">50</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742075\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">BinLookupService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:CheckoutService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742076\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">Adyen Checkout API provides a simple <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Checkout API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742077\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">CheckoutService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:CheckoutUtilityService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-18T13:57:32.889</td><td style=\"vertical-align:top\">1</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742078\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-providerName</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-18T13:57:32.889</td><td class=\"leftBorder\" style=\"vertical-align:top\">support@adyen.com</td><td style=\"vertical-align:top\">Adyen Support</td><td style=\"vertical-align:top\">https://support.adyen.com/</td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A web service containing utility func<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://docs.adyen.com/legal/terms-co<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Checkout Utility Service</td><td style=\"vertical-align:top\">1</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 4]</summary><table class=\"dataframe\" id=\"static_df_1073742079\"><thead><tr><th style=\"text-align:left\">converter</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">format</th><th style=\"text-align:left\">url</th><th style=\"text-align:left\">version</th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">version</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">https://github.com/lucybot/api-spec-c<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">2.7.11</td><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">adyen.com</td><td class=\"rightBorder\" style=\"vertical-align:top\">CheckoutUtilityService</td><td style=\"vertical-align:top\">2021-06-18T13:57:32.889</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.0.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:FundService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742080\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Fund API provides endpoints for m<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Fund API</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742081\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">FundService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:HopService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742082\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Hosted onboarding API provides en<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Hosted Onboarding</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742083\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">HopService</td><td style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:MarketPayNotificationService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-21T10:54:37.877</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742084\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-06-21T10:54:37.877</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Notification API sends notificati<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Notifications</td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742085\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">MarketPayNotificationService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:NotificationConfigurationSe<span class=\"structural\">...</span></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td style=\"vertical-align:top\">6</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742086\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">6</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-11-03T12:51:40.318</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Notification Configuration API pr<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen for Platforms: Notification Con<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">6</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742087\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">NotificationConfigurationService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:PaymentService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742088\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A set of API endpoints that allow you<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Payment API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742089\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">PaymentService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:PayoutService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742090\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">A set of API endpoints that allow you<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Payout API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742091\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">PayoutService</td><td style=\"vertical-align:top\">2021-11-12T23:18:19.544</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">adyen.com:RecurringService</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td style=\"vertical-align:top\">68</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742092\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">key</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">value</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"leftBorder\" style=\"text-align:left\">info</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">updated</th><th style=\"text-align:left\">swaggerUrl</th><th style=\"text-align:left\">swaggerYamlUrl</th><th style=\"text-align:left\">openapiVer</th><th style=\"text-align:left\">externalDocs</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">contact</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">description</th><th style=\"text-align:left\">termsOfService</th><th style=\"text-align:left\">title</th><th style=\"text-align:left\">version</th><th class=\"rightBorder\" style=\"text-align:left\">x-apisguru-categories</th><th class=\"leftBorder rightBorder\" style=\"text-align:left\">x-logo</th><th style=\"text-align:left\">x-origin</th><th style=\"text-align:left\">x-preferred</th><th style=\"text-align:left\">x-providerName</th><th style=\"text-align:left\">x-publicVersion</th><th class=\"rightBorder\" style=\"text-align:left\">x-serviceName</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">email</th><th class=\"bottomBorder\" style=\"text-align:left\">name</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">x-twitter</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder rightBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">68</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2021-11-01T23:17:40.475</td><td class=\"leftBorder\" style=\"vertical-align:top\">developer-experience@adyen.com</td><td style=\"vertical-align:top\">Adyen Developer Experience team</td><td style=\"vertical-align:top\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Adyen</td><td style=\"vertical-align:top\">The Recurring APIs allow you to manag<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">Adyen Recurring API</td><td style=\"vertical-align:top\">68</td><td class=\"rightBorder\" style=\"vertical-align:top\">[payment]</td><td class=\"leftBorder rightBorder\" style=\"vertical-align:top\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 3]</summary><table class=\"dataframe\" id=\"static_df_1073742093\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">format</th><th class=\"bottomBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">version</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">openapi</td><td style=\"vertical-align:top\">https://raw.githubusercontent.com/Ady<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1</td></tr></tbody></table></details></td><td style=\"vertical-align:top\">true</td><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">true</td><td class=\"rightBorder\" style=\"vertical-align:top\">RecurringService</td><td style=\"vertical-align:top\">2021-11-02T23:15:52.596</td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">3.1.0</td></tr></tbody></table></details></td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1073742053\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":1290,\"ncol\":2},\"kotlin_dataframe\":[{\"key\":\"1password.com:events\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-07-19T10:17:09.188\",\"info\":{\"data\":{\"description\":\"1Password Events API Specification.\",\"title\":\"Events API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-events-reporting/1password-events-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.com\",\"x-serviceName\":\"events\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-22T10:32:52.774\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"1password.local:connect\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939\",\"preferred\":\"1.3.0\",\"versions\":{\"data\":[{\"key\":\"1.3.0\",\"value\":{\"data\":{\"added\":\"2021-04-16T15:56:45.939\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@1password.com\",\"name\":\"1Password Integrations\",\"url\":\"https://support.1password.com/\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"REST API interface for 1Password Connect.\",\"title\":\"1Password Connect\",\"version\":\"1.3.0\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://i.1password.com/media/1password-connect/1password-connect-api.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"1password.local\",\"x-serviceName\":\"connect\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T08:51:53.432\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml\",\"openapiVer\":\"3.0.2\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"6-dot-authentiqio.appspot.com\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2017-03-15T14:45:58\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"hello@authentiq.com\",\"name\":\"Authentiq team\",\"url\":\"http://authentiq.io/support\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Strong authentication, without the passwords.\",\"license\":{\"data\":{\"name\":\"Apache 2.0\",\"url\":\"http://www.apache.org/licenses/LICENSE-2.0.html\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"name\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"termsOfService\":\"http://authentiq.com/terms/\",\"title\":\"Authentiq API\",\"version\":\"6\",\"x-apisguru-categories\":[\"security\"],\"x-logo\":{\"data\":{\"backgroundColor\":\"#F26641\",\"url\":\"https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"backgroundColor\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/issuer.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"6-dot-authentiqio.appspot.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"license\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.io:platform\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07\",\"preferred\":\"1.1.0\",\"versions\":{\"data\":[{\"key\":\"1.1.0\",\"value\":{\"data\":{\"added\":\"2019-07-13T11:28:07\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@ably.io\",\"name\":\"Ably Support\",\"url\":\"https://www.ably.io/contact\",\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably.\",\"title\":\"Platform API\",\"version\":\"1.1.0\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/platform-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.io\",\"x-serviceName\":\"platform\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:42:14.653\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml\",\"openapiVer\":\"3.0.1\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"ably.net:control\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536\",\"preferred\":\"1.0.14\",\"versions\":{\"data\":[{\"key\":\"1.0.14\",\"value\":{\"data\":{\"added\":\"2021-07-26T09:45:31.536\",\"info\":{\"data\":{\"contact\":{\"data\":{\"x-twitter\":\"ablyrealtime\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\\n\\nDetailed information on using this API can be found in the Ably <a href=\\\"https://ably.com/documentation/control-api\\\">developer documentation</a>.\\n\\nControl API is currently in Beta.\\n\",\"title\":\"Control API v1\",\"version\":\"1.0.14\",\"x-apisguru-categories\":[\"cloud\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/ably/open-specs/main/definitions/control-v1.yaml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"ably.net\",\"x-serviceName\":\"control\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-07-26T09:47:48.565\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml\",\"openapiVer\":\"3.0.1\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"abstractapi.com:geolocation\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648\",\"preferred\":\"1.0.0\",\"versions\":{\"data\":[{\"key\":\"1.0.0\",\"value\":{\"data\":{\"added\":\"2021-04-14T17:12:40.648\",\"info\":{\"data\":{\"description\":\"Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.\",\"title\":\"IP geolocation API\",\"version\":\"1.0.0\",\"x-apisguru-categories\":[\"location\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://documentation.abstractapi.com/ip-geolocation-openapi.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"abstractapi.com\",\"x-serviceName\":\"geolocation\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"externalDocs\":{\"data\":{\"description\":\"API Documentation\",\"url\":\"https://www.abstractapi.com/ip-geolocation-api#docs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.yaml\",\"openapiVer\":\"3.0.1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"externalDocs\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adafruit.com\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43\",\"preferred\":\"2.0.0\",\"versions\":{\"data\":[{\"key\":\"2.0.0\",\"value\":{\"data\":{\"added\":\"2018-02-10T10:41:43\",\"info\":{\"data\":{\"description\":\"### The Internet of Things for Everyone\\n\\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\\n\\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\\n\\n#### Authentication\\n\\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username \\\"io_username\\\" and the key \\\"io_key_12345\\\" could look like this:\\n\\n $ curl -H \\\"X-AIO-Key: io_key_12345\\\" https://io.adafruit.com/api/v2/io_username/feeds\\n\\nOr like this:\\n\\n $ curl \\\"https://io.adafruit.com/api/v2/io_username/feeds?X-AIO-Key=io_key_12345\\n\\nUsing the node.js [request](https://github.com/request/request) library, IO HTTP requests are as easy as:\\n\\n```js\\nvar request = require('request');\\n\\nvar options = {\\n url: 'https://io.adafruit.com/api/v2/io_username/feeds',\\n headers: {\\n 'X-AIO-Key': 'io_key_12345',\\n 'Content-Type': 'application/json'\\n }\\n};\\n\\nfunction callback(error, response, body) {\\n if (!error && response.statusCode == 200) {\\n var feeds = JSON.parse(body);\\n console.log(feeds.length + \\\" FEEDS AVAILABLE\\\");\\n\\n feeds.forEach(function (feed) {\\n console.log(feed.name, feed.key);\\n })\\n }\\n}\\n\\nrequest(options, callback);\\n```\\n\\nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):\\n\\n```arduino\\n/// based on\\n/// https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266HTTPClient/examples/Authorization/Authorization.ino\\n\\n#include <Arduino.h>\\n#include <ESP8266WiFi.h>\\n#include <ESP8266WiFiMulti.h>\\n#include <ESP8266HTTPClient.h>\\n\\nESP8266WiFiMulti WiFiMulti;\\n\\nconst char* ssid = \\\"---\\\";\\nconst char* password = \\\"---\\\";\\n\\nconst char* host = \\\"io.adafruit.com\\\";\\n\\nconst char* io_key = \\\"---\\\";\\nconst char* path_with_username = \\\"/api/v2/---/dashboards\\\";\\n\\n// Use web browser to view and copy\\n// SHA1 fingerprint of the certificate\\nconst char* fingerprint = \\\"77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18\\\";\\n\\nvoid setup() {\\n Serial.begin(115200);\\n\\n for(uint8_t t = 4; t > 0; t--) {\\n Serial.printf(\\\"[SETUP] WAIT %d...\\\\n\\\", t);\\n Serial.flush();\\n delay(1000);\\n }\\n\\n WiFi.mode(WIFI_STA);\\n WiFiMulti.addAP(ssid, password);\\n\\n // wait for WiFi connection\\n while(WiFiMulti.run() != WL_CONNECTED) {\\n Serial.print('.');\\n delay(1000);\\n }\\n\\n Serial.println(\\\"[WIFI] connected!\\\");\\n\\n HTTPClient http;\\n\\n // start request with URL and TLS cert fingerprint for verification\\n http.begin(\\\"https://\\\" + String(host) + String(path_with_username), fingerprint);\\n\\n // IO API authentication\\n http.addHeader(\\\"X-AIO-Key\\\", io_key);\\n\\n // start connection and send HTTP header\\n int httpCode = http.GET();\\n\\n // httpCode will be negative on error\\n if(httpCode > 0) {\\n // HTTP header has been send and Server response header has been handled\\n Serial.printf(\\\"[HTTP] GET response: %d\\\\n\\\", httpCode);\\n\\n // HTTP 200 OK\\n if(httpCode == HTTP_CODE_OK) {\\n String payload = http.getString();\\n Serial.println(payload);\\n }\\n\\n http.end();\\n }\\n}\\n\\nvoid loop() {}\\n```\\n\\n#### Client Libraries\\n\\nWe have client libraries to help you get started with your project: [Python](https://github.com/adafruit/io-client-python), [Ruby](https://github.com/adafruit/io-client-ruby), [Arduino C++](https://github.com/adafruit/Adafruit_IO_Arduino), [Javascript](https://github.com/adafruit/adafruit-io-node), and [Go](https://github.com/adafruit/io-client-go) are available. They're all open source, so if they don't already do what you want, you can fork and add any feature you'd like.\\n\\n\",\"title\":\"Adafruit IO REST API\",\"version\":\"2.0.0\",\"x-apisguru-categories\":[\"iot\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"swagger\",\"url\":\"https://raw.githubusercontent.com/adafruit/io-api/gh-pages/v2.json\",\"version\":\"2.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adafruit.com\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.yaml\",\"openapiVer\":\"2.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adobe.com:aem\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34\",\"preferred\":\"3.5.0-pre.0\",\"versions\":{\"data\":[{\"key\":\"3.5.0-pre.0\",\"value\":{\"data\":{\"added\":\"2019-01-03T07:01:34\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"opensource@shinesolutions.com\",\"name\":\"Shine Solutions\",\"url\":\"http://shinesolutions.com\",\"x-twitter\":\"Adobe\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API\",\"title\":\"Adobe Experience Manager (AEM) API\",\"version\":\"3.5.0-pre.0\",\"x-apisguru-categories\":[\"marketing\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/shinesolutions/swagger-aem/master/conf/api.yml\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adobe.com\",\"x-serviceName\":\"aem\",\"x-unofficialSpec\":true},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\",\"x-unofficialSpec\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"}]}},\"updated\":\"2021-06-21T12:16:53.715\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:AccountService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Account/v6/createAccountHolder\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Account API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/AccountService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"AccountService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BalancePlatformService\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-14T12:42:12.263\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\\n\\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\\n\\n ## Authentication\\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\\n\\n ```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: YOUR_API_KEY\\\" \\\\\\n...\\n```\\n\\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-U \\\"ws@BalancePlatform.YOUR_BALANCE_PLATFORM\\\":\\\"YOUR_WS_PASSWORD\\\" \\\\\\n...\\n```\\n## Versioning\\nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://balanceplatform-api-test.adyen.com/bcl/v1\\n```\\n## Going live\\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https://balanceplatform-api-live.adyen.com/bcl/v1`.\\n\\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Issuing: Balance Platform API\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BalancePlatformService-v1.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BalancePlatformService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-22T23:16:57.458\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:BinLookupService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"50\",\"versions\":{\"data\":[{\"key\":\"50\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen BinLookup API\",\"version\":\"50\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BinLookupService-v50.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"BinLookupService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\\n\\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\\n\\n## Authentication\\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v68/payments\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Checkout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/CheckoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"CheckoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:CheckoutUtilityService\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889\",\"preferred\":\"1\",\"versions\":{\"data\":[{\"key\":\"1\",\"value\":{\"data\":{\"added\":\"2021-06-18T13:57:32.889\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"support@adyen.com\",\"name\":\"Adyen Support\",\"url\":\"https://support.adyen.com/\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A web service containing utility functions available for merchants integrating with Checkout APIs.\\n## Authentication\\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\\n\\n```\\ncurl\\n-H \\\"Content-Type: application/json\\\" \\\\\\n-H \\\"X-API-Key: Your_Checkout_API_key\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\\n\\n## Versioning\\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://checkout-test.adyen.com/v1/originKeys\\n```\",\"termsOfService\":\"https://docs.adyen.com/legal/terms-conditions\",\"title\":\"Adyen Checkout Utility Service\",\"version\":\"1\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"converter\":{\"data\":{\"url\":\"https://github.com/lucybot/api-spec-converter\",\"version\":\"2.7.11\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/adyen/adyen-openapi/master/specs/3.0/CheckoutUtilityService-v1.json\",\"version\":\"3.0\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"converter\",\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":4,\"nrow\":1}},\"x-providerName\":\"adyen.com\",\"x-serviceName\":\"CheckoutUtilityService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-providerName\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-06-18T13:57:32.889\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.yaml\",\"openapiVer\":\"3.0.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:FundService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\\n## Authentication\\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Fund/v6/accountHolderBalance\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Fund API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/FundService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"FundService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:HopService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\\n\\n## Authentication\\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Hop/v6/getOnboardingUrl\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Hosted Onboarding\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/HopService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"HopService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-01T23:17:40.475\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:MarketPayNotificationService\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2021-06-21T10:54:37.877\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notifications\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"MarketPayNotificationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:NotificationConfigurationService\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"preferred\":\"6\",\"versions\":{\"data\":[{\"key\":\"6\",\"value\":{\"data\":{\"added\":\"2020-11-03T12:51:40.318\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\\n\\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\\n## Authentication\\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@MarketPlace.YourMarketPlace\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://cal-test.adyen.com/cal/services/Notification/v6/createNotificationConfiguration\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen for Platforms: Notification Configuration API\",\"version\":\"6\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/NotificationConfigurationService-v6.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"NotificationConfigurationService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PaymentService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\\n\\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\\n\\n## Authentication\\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@Company.YourCompany\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://pal-test.adyen.com/pal/servlet/Payment/v68/authorise\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payment API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PaymentService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PaymentService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:PayoutService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\\n\\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\\n## Authentication\\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\\n\\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:\\n\\n```\\ncurl\\n-U \\\"storePayout@Company.[YourCompany]\\\":\\\"YourBasicAuthenticationPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nWhen going live, you need to generate new API credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Payout API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PayoutService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"PayoutService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-12T23:18:19.544\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}},{\"key\":\"adyen.com:RecurringService\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"preferred\":\"68\",\"versions\":{\"data\":[{\"key\":\"68\",\"value\":{\"data\":{\"added\":\"2021-11-01T23:17:40.475\",\"info\":{\"data\":{\"contact\":{\"data\":{\"email\":\"developer-experience@adyen.com\",\"name\":\"Adyen Developer Experience team\",\"url\":\"https://www.adyen.help/hc/en-us/community/topics\",\"x-twitter\":\"Adyen\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"email\",\"name\",\"url\",\"x-twitter\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"description\":\"The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.\\n\\nFor more information, refer to our [Tokenization documentation](https://docs.adyen.com/online-payments/tokenization).\\n## Authentication\\nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\\n\\n```\\ncurl\\n-U \\\"ws@Company.YourCompany\\\":\\\"YourWsPassword\\\" \\\\\\n-H \\\"Content-Type: application/json\\\" \\\\\\n...\\n```\\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\\n\\n## Versioning\\nRecurring API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \\\"vXX\\\", where XX is the version number.\\n\\nFor example:\\n```\\nhttps://pal-test.adyen.com/pal/servlet/Recurring/v68/disable\\n```\",\"termsOfService\":\"https://www.adyen.com/legal/terms-and-conditions\",\"title\":\"Adyen Recurring API\",\"version\":\"68\",\"x-apisguru-categories\":[\"payment\"],\"x-logo\":{\"data\":{\"url\":\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"x-origin\":{\"data\":[{\"format\":\"openapi\",\"url\":\"https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/RecurringService-v68.json\",\"version\":\"3.1\"}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"format\",\"url\",\"version\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}],\"ncol\":3,\"nrow\":1}},\"x-preferred\":true,\"x-providerName\":\"adyen.com\",\"x-publicVersion\":true,\"x-serviceName\":\"RecurringService\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"contact\",\"description\",\"termsOfService\",\"title\",\"version\",\"x-apisguru-categories\",\"x-logo\",\"x-origin\",\"x-preferred\",\"x-providerName\",\"x-publicVersion\",\"x-serviceName\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.collections.List<kotlin.String>\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Boolean\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"updated\":\"2021-11-02T23:15:52.596\",\"swaggerUrl\":\"https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.json\",\"swaggerYamlUrl\":\"https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.yaml\",\"openapiVer\":\"3.1.0\",\"externalDocs\":{\"data\":null,\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[],\"types\":[]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"info\",\"updated\",\"swaggerUrl\",\"swaggerYamlUrl\",\"openapiVer\",\"externalDocs\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":2,\"nrow\":1}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"preferred\",\"versions\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.LocalDateTime\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}]}}}]}"
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 7
},
{
"cell_type": "markdown",
"source": [
"Other schemas can be read directly as well."
],
"metadata": {
"collapsed": false
}
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-05-27T14:19:14.365755Z",
"start_time": "2025-05-27T14:19:13.573426Z"
}
},
"cell_type": "code",
"source": [
"val df3 = ApiGuru.Metrics.readJson(\"apiGuruMetrics.json\")\n",
"df3"
],
"outputs": [
{
"data": {
"text/html": [
" <iframe onload=\"o_resize_iframe_out_5()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_5\" frameBorder=\"0\" srcdoc=\" &lt;html theme='dark'&gt;\n",
" &lt;head&gt;\n",
" &lt;style type=&quot;text&sol;css&quot;&gt;\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody &gt; tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover &gt; td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"&sol;* formatting *&sol;\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
":root {\n",
" --scroll-bg: #f5f5f5;\n",
" --scroll-fg: #b3b3b3;\n",
"}\n",
":root[theme=&quot;dark&quot;], :root [data-jp-theme-light=&quot;false&quot;]{\n",
" --scroll-bg: #3c3c3c;\n",
" --scroll-fg: #97e1fb;\n",
"}\n",
"body {\n",
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
"}\n",
"body::-webkit-scrollbar {\n",
" width: 10px; &sol;* Mostly for vertical scrollbars *&sol;\n",
" height: 10px; &sol;* Mostly for horizontal scrollbars *&sol;\n",
"}\n",
"body::-webkit-scrollbar-thumb {\n",
" background-color: var(--scroll-fg);\n",
"}\n",
"body::-webkit-scrollbar-track {\n",
" background-color: var(--scroll-bg);\n",
"}\n",
" &lt;&sol;style&gt;\n",
" &lt;&sol;head&gt;\n",
" &lt;body&gt;\n",
" &lt;table class=&quot;dataframe&quot; id=&quot;df_1073742094&quot;&gt;&lt;&sol;table&gt;\n",
"\n",
"&lt;p class=&quot;dataframe_description&quot;&gt;DataFrame: rowsCount = 1, columnsCount = 12&lt;&sol;p&gt;\n",
"\n",
" &lt;&sol;body&gt;\n",
" &lt;script&gt;\n",
" (function () {\n",
" window.DataFrame = window.DataFrame || new (function () {\n",
" this.addTable = function (df) {\n",
" let cols = df.cols;\n",
" for (let i = 0; i &lt; cols.length; i++) {\n",
" for (let c of cols[i].children) {\n",
" cols[c].parent = i;\n",
" }\n",
" }\n",
" df.nrow = 0\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" if (df.cols[i].values.length &gt; df.nrow) df.nrow = df.cols[i].values.length\n",
" }\n",
" if (df.id === df.rootId) {\n",
" df.expandedFrames = new Set()\n",
" df.childFrames = {}\n",
" const table = this.getTableElement(df.id)\n",
" table.df = df\n",
" for (let i = 0; i &lt; df.cols.length; i++) {\n",
" let col = df.cols[i]\n",
" if (col.parent === undefined &amp;&amp; col.children.length &gt; 0) col.expanded = true\n",
" }\n",
" } else {\n",
" const rootDf = this.getTableData(df.rootId)\n",
" rootDf.childFrames[df.id] = df\n",
" }\n",
" }\n",
"\n",
" this.computeRenderData = function (df) {\n",
" let result = []\n",
" let pos = 0\n",
" for (let col = 0; col &lt; df.cols.length; col++) {\n",
" if (df.cols[col].parent === undefined)\n",
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
" }\n",
" for (let i = 0; i &lt; result.length; i++) {\n",
" let row = result[i]\n",
" for (let j = 0; j &lt; row.length; j++) {\n",
" let cell = row[j]\n",
" if (j === 0)\n",
" cell.leftBd = false\n",
" if (j &lt; row.length - 1) {\n",
" let nextData = row[j + 1]\n",
" if (nextData.leftBd) cell.rightBd = true\n",
" else if (cell.rightBd) nextData.leftBd = true\n",
" } else cell.rightBd = false\n",
" }\n",
" }\n",
" return result\n",
" }\n",
"\n",
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
" if (result.length === depth) {\n",
" const array = [];\n",
" if (pos &gt; 0) {\n",
" let j = 0\n",
" for (let i = 0; j &lt; pos; i++) {\n",
" let c = result[depth - 1][i]\n",
" j += c.span\n",
" let copy = Object.assign({empty: true}, c)\n",
" array.push(copy)\n",
" }\n",
" }\n",
" result.push(array)\n",
" }\n",
" const col = cols[colId];\n",
" let size = 0;\n",
" if (col.expanded) {\n",
" let childPos = pos\n",
" for (let i = 0; i &lt; col.children.length; i++) {\n",
" let child = col.children[i]\n",
" let childLeft = i === 0 &amp;&amp; (col.children.length &gt; 1 || leftBorder)\n",
" let childRight = i === col.children.length - 1 &amp;&amp; (col.children.length &gt; 1 || rightBorder)\n",
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
" childPos += childSize\n",
" size += childSize\n",
" }\n",
" } else {\n",
" for (let i = depth + 1; i &lt; result.length; i++)\n",
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
" size = 1\n",
" }\n",
" let left = leftBorder\n",
" let right = rightBorder\n",
" if (size &gt; 1) {\n",
" left = true\n",
" right = true\n",
" }\n",
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
" return size\n",
" }\n",
"\n",
" this.getTableElement = function (id) {\n",
" return document.getElementById(&quot;df_&quot; + id)\n",
" }\n",
"\n",
" this.getTableData = function (id) {\n",
" return this.getTableElement(id).df\n",
" }\n",
"\n",
" this.createExpander = function (isExpanded) {\n",
" const svgNs = &quot;http:&sol;&sol;www.w3.org&sol;2000&sol;svg&quot;\n",
" let svg = document.createElementNS(svgNs, &quot;svg&quot;)\n",
" svg.classList.add(&quot;expanderSvg&quot;)\n",
" let path = document.createElementNS(svgNs, &quot;path&quot;)\n",
" if (isExpanded) {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;0 -2 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z&quot;)\n",
" } else {\n",
" svg.setAttribute(&quot;viewBox&quot;, &quot;-2 0 8 8&quot;)\n",
" path.setAttribute(&quot;d&quot;, &quot;M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z&quot;)\n",
" }\n",
" path.setAttribute(&quot;fill&quot;, &quot;currentColor&quot;)\n",
" svg.appendChild(path)\n",
" return svg\n",
" }\n",
"\n",
" this.renderTable = function (id) {\n",
"\n",
" let table = this.getTableElement(id)\n",
"\n",
" if (table === null) return\n",
"\n",
" table.innerHTML = &quot;&quot;\n",
"\n",
" let df = table.df\n",
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
"\n",
" &sol;&sol; header\n",
" let header = document.createElement(&quot;thead&quot;)\n",
" table.appendChild(header)\n",
"\n",
" let renderData = this.computeRenderData(df)\n",
" for (let j = 0; j &lt; renderData.length; j++) {\n",
" let rowData = renderData[j]\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" let isLastRow = j === renderData.length - 1\n",
" header.appendChild(tr);\n",
" for (let i = 0; i &lt; rowData.length; i++) {\n",
" let cell = rowData[i]\n",
" let th = document.createElement(&quot;th&quot;);\n",
" th.setAttribute(&quot;colspan&quot;, cell.span)\n",
" let colId = cell.id\n",
" let col = df.cols[colId];\n",
" if (!cell.empty) {\n",
" if (col.children.length === 0) {\n",
" th.innerHTML = col.name\n",
" } else {\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" col.expanded = !col.expanded\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(col.expanded))\n",
" link.innerHTML += col.name\n",
" th.appendChild(link)\n",
" }\n",
" }\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (isLastRow)\n",
" classes += &quot; bottomBorder&quot;\n",
" if (classes.length &gt; 0)\n",
" th.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(th)\n",
" }\n",
" }\n",
"\n",
" &sol;&sol; body\n",
" let body = document.createElement(&quot;tbody&quot;)\n",
" table.appendChild(body)\n",
"\n",
" let columns = renderData.pop()\n",
" for (let row = 0; row &lt; df.nrow; row++) {\n",
" let tr = document.createElement(&quot;tr&quot;);\n",
" body.appendChild(tr)\n",
" for (let i = 0; i &lt; columns.length; i++) {\n",
" let cell = columns[i]\n",
" let td = document.createElement(&quot;td&quot;);\n",
" let colId = cell.id\n",
" let col = df.cols[colId]\n",
" let classes = (cell.leftBd ? &quot; leftBorder&quot; : &quot;&quot;) + (cell.rightBd ? &quot; rightBorder&quot; : &quot;&quot;)\n",
" if (col.rightAlign)\n",
" classes += &quot; rightAlign&quot;\n",
" if (classes.length &gt; 0)\n",
" td.setAttribute(&quot;class&quot;, classes)\n",
" tr.appendChild(td)\n",
" let value = col.values[row]\n",
" if (value.frameId !== undefined) {\n",
" let frameId = value.frameId\n",
" let expanded = rootDf.expandedFrames.has(frameId)\n",
" let link = document.createElement(&quot;a&quot;)\n",
" link.className = &quot;expander&quot;\n",
" let that = this\n",
" link.onclick = function () {\n",
" if (rootDf.expandedFrames.has(frameId))\n",
" rootDf.expandedFrames.delete(frameId)\n",
" else rootDf.expandedFrames.add(frameId)\n",
" that.renderTable(id)\n",
" }\n",
" link.appendChild(this.createExpander(expanded))\n",
" link.innerHTML += value.value\n",
" if (expanded) {\n",
" td.appendChild(link)\n",
" td.appendChild(document.createElement(&quot;p&quot;))\n",
" const childTable = document.createElement(&quot;table&quot;)\n",
" childTable.className = &quot;dataframe&quot;\n",
" childTable.id = &quot;df_&quot; + frameId\n",
" let childDf = rootDf.childFrames[frameId]\n",
" childTable.df = childDf\n",
" td.appendChild(childTable)\n",
" this.renderTable(frameId)\n",
" if (childDf.nrow !== childDf.totalRows) {\n",
" const footer = document.createElement(&quot;p&quot;)\n",
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
" td.appendChild(footer)\n",
" }\n",
" } else {\n",
" td.appendChild(link)\n",
" }\n",
" } else if (value.style !== undefined) {\n",
" td.innerHTML = value.value\n",
" td.setAttribute(&quot;style&quot;, value.style)\n",
" } else td.innerHTML = value\n",
" this.nodeScriptReplace(td)\n",
" }\n",
" }\n",
" }\n",
"\n",
" this.nodeScriptReplace = function (node) {\n",
" if (this.nodeScriptIs(node) === true) {\n",
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
" } else {\n",
" let i = -1, children = node.childNodes;\n",
" while (++i &lt; children.length) {\n",
" this.nodeScriptReplace(children[i]);\n",
" }\n",
" }\n",
"\n",
" return node;\n",
" }\n",
"\n",
" this.nodeScriptClone = function (node) {\n",
" let script = document.createElement(&quot;script&quot;);\n",
" script.text = node.innerHTML;\n",
"\n",
" let i = -1, attrs = node.attributes, attr;\n",
" while (++i &lt; attrs.length) {\n",
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
" }\n",
" return script;\n",
" }\n",
"\n",
" this.nodeScriptIs = function (node) {\n",
" return node.tagName === 'SCRIPT';\n",
" }\n",
" })()\n",
"\n",
" window.call_DataFrame = function (f) {\n",
" return f();\n",
" };\n",
"\n",
" let funQueue = window[&quot;kotlinQueues&quot;] &amp;&amp; window[&quot;kotlinQueues&quot;][&quot;DataFrame&quot;];\n",
" if (funQueue) {\n",
" funQueue.forEach(function (f) {\n",
" f();\n",
" });\n",
" funQueue = [];\n",
" }\n",
"})()\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;numSpecs: Int&bsol;&quot;&gt;numSpecs&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;3809&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;numAPIs: Int&bsol;&quot;&gt;numAPIs&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2362&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;numEndpoints: Int&bsol;&quot;&gt;numEndpoints&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;79405&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;unreachable: Int&bsol;&quot;&gt;unreachable&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;138&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;invalid: Int&bsol;&quot;&gt;invalid&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;634&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;unofficial: Int&bsol;&quot;&gt;unofficial&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;24&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;fixes: Int&bsol;&quot;&gt;fixes&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;34001&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;fixedPct: Float&bsol;&quot;&gt;fixedPct&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;21.0&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;datasets: DataFrame&lt;*&gt;&bsol;&quot;&gt;datasets&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742095, value: &quot;&lt;b&gt;DataFrame 1 x 2&lt;&sol;b&gt;&quot; }] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;stars: Int&bsol;&quot;&gt;stars&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;2964&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;issues: Int&bsol;&quot;&gt;issues&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;206&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;added: Int&bsol;&quot;&gt;added&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;123&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;updated: Int&bsol;&quot;&gt;updated&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;119&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;thisWeek: DataRow&lt;*&gt;&bsol;&quot;&gt;thisWeek&lt;&sol;span&gt;&quot;, children: [11, 12], rightAlign: false, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;added: 123&bsol;nupdated: 119&bsol;&quot;&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;{ &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;added: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;123&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;, &lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt;updated: &lt;&sol;span&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;119&lt;&sol;span&gt;&lt;span class=&bsol;&quot;structural&bsol;&quot;&gt; }&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742094, rootId: 1073742094, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;title: String&bsol;&quot;&gt;title&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;providerCount&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;data: DataFrame&lt;*&gt;&bsol;&quot;&gt;data&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [{ frameId: 1073742096, value: &quot;&lt;b&gt;DataFrame 19 x 2&lt;&sol;b&gt;&quot; }] }, \n",
"], id: 1073742095, rootId: 1073742094, totalRows: 1 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"&sol;*&lt;!--*&sol;\n",
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: &quot;&lt;span title=&bsol;&quot;key: String&bsol;&quot;&gt;key&lt;&sol;span&gt;&quot;, children: [], rightAlign: false, values: [&quot;adyen.com&quot;,&quot;amazonaws.com&quot;,&quot;apideck.com&quot;,&quot;apisetu.gov.in&quot;,&quot;azure.com&quot;] }, \n",
"{ name: &quot;&lt;span title=&bsol;&quot;value: Int&bsol;&quot;&gt;value&lt;&sol;span&gt;&quot;, children: [], rightAlign: true, values: [&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;69&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;295&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;14&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;181&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;,&quot;&lt;span class=&bsol;&quot;formatted&bsol;&quot; title=&bsol;&quot;&bsol;&quot;&gt;&lt;span class=&bsol;&quot;numbers&bsol;&quot;&gt;1832&lt;&sol;span&gt;&lt;&sol;span&gt;&quot;] }, \n",
"], id: 1073742096, rootId: 1073742094, totalRows: 19 } ) });\n",
"&sol;*--&gt;*&sol;\n",
"\n",
"call_DataFrame(function() { DataFrame.renderTable(1073742094) });\n",
"\n",
"\n",
" &lt;&sol;script&gt;\n",
" &lt;&sol;html&gt;\"></iframe>\n",
" <script>\n",
" function o_resize_iframe_out_5() {\n",
" let elem = document.getElementById(\"iframe_out_5\");\n",
" resize_iframe_out_5(elem);\n",
" setInterval(resize_iframe_out_5, 5000, elem);\n",
" }\n",
" function resize_iframe_out_5(el) {\n",
" let h = el.contentWindow.document.body.scrollHeight;\n",
" el.height = h === 0 ? 0 : h + 41;\n",
" }\n",
" </script> <html theme='dark'>\n",
" <head>\n",
" <style type=\"text/css\">\n",
" :root {\n",
" --background: #fff;\n",
" --background-odd: #f5f5f5;\n",
" --background-hover: #d9edfd;\n",
" --header-text-color: #474747;\n",
" --text-color: #848484;\n",
" --text-color-dark: #000;\n",
" --text-color-medium: #737373;\n",
" --text-color-pale: #b3b3b3;\n",
" --inner-border-color: #aaa;\n",
" --bold-border-color: #000;\n",
" --link-color: #296eaa;\n",
" --link-color-pale: #296eaa;\n",
" --link-hover: #1a466c;\n",
"}\n",
"\n",
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
" --background: #303030;\n",
" --background-odd: #3c3c3c;\n",
" --background-hover: #464646;\n",
" --header-text-color: #dddddd;\n",
" --text-color: #b3b3b3;\n",
" --text-color-dark: #dddddd;\n",
" --text-color-medium: #b2b2b2;\n",
" --text-color-pale: #737373;\n",
" --inner-border-color: #707070;\n",
" --bold-border-color: #777777;\n",
" --link-color: #008dc0;\n",
" --link-color-pale: #97e1fb;\n",
" --link-hover: #00688e;\n",
"}\n",
"\n",
"p.dataframe_description {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe {\n",
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
" font-size: 12px;\n",
" background-color: var(--background);\n",
" color: var(--text-color-dark);\n",
" border: none;\n",
" border-collapse: collapse;\n",
"}\n",
"\n",
"table.dataframe th, td {\n",
" padding: 6px;\n",
" border: 1px solid transparent;\n",
" text-align: left;\n",
"}\n",
"\n",
"table.dataframe th {\n",
" background-color: var(--background);\n",
" color: var(--header-text-color);\n",
"}\n",
"\n",
"table.dataframe td {\n",
" vertical-align: top;\n",
" white-space: nowrap;\n",
"}\n",
"\n",
"table.dataframe th.bottomBorder {\n",
" border-bottom-color: var(--bold-border-color);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(odd) {\n",
" background: var(--background-odd);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:nth-child(even) {\n",
" background: var(--background);\n",
"}\n",
"\n",
"table.dataframe tbody > tr:hover {\n",
" background: var(--background-hover);\n",
"}\n",
"\n",
"table.dataframe a {\n",
" cursor: pointer;\n",
" color: var(--link-color);\n",
" text-decoration: none;\n",
"}\n",
"\n",
"table.dataframe tr:hover > td a {\n",
" color: var(--link-color-pale);\n",
"}\n",
"\n",
"table.dataframe a:hover {\n",
" color: var(--link-hover);\n",
" text-decoration: underline;\n",
"}\n",
"\n",
"table.dataframe img {\n",
" max-width: fit-content;\n",
"}\n",
"\n",
"table.dataframe th.complex {\n",
" background-color: var(--background);\n",
" border: 1px solid var(--background);\n",
"}\n",
"\n",
"table.dataframe .leftBorder {\n",
" border-left-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightBorder {\n",
" border-right-color: var(--inner-border-color);\n",
"}\n",
"\n",
"table.dataframe .rightAlign {\n",
" text-align: right;\n",
"}\n",
"\n",
"table.dataframe .expanderSvg {\n",
" width: 8px;\n",
" height: 8px;\n",
" margin-right: 3px;\n",
"}\n",
"\n",
"table.dataframe .expander {\n",
" display: flex;\n",
" align-items: center;\n",
"}\n",
"\n",
"/* formatting */\n",
"\n",
"table.dataframe .null {\n",
" color: var(--text-color-pale);\n",
"}\n",
"\n",
"table.dataframe .structural {\n",
" color: var(--text-color-medium);\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .dataFrameCaption {\n",
" font-weight: bold;\n",
"}\n",
"\n",
"table.dataframe .numbers {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe td:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"table.dataframe tr:hover .formatted .structural, .null {\n",
" color: var(--text-color-dark);\n",
"}\n",
"\n",
"\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <table class=\"dataframe\" id=\"static_df_1073742097\"><thead><tr><th style=\"text-align:left\">numSpecs</th><th style=\"text-align:left\">numAPIs</th><th style=\"text-align:left\">numEndpoints</th><th style=\"text-align:left\">unreachable</th><th style=\"text-align:left\">invalid</th><th style=\"text-align:left\">unofficial</th><th style=\"text-align:left\">fixes</th><th style=\"text-align:left\">fixedPct</th><th style=\"text-align:left\">datasets</th><th style=\"text-align:left\">stars</th><th class=\"rightBorder\" style=\"text-align:left\">issues</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">thisWeek</th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">added</th><th class=\"bottomBorder\" style=\"text-align:left\">updated</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">3809</td><td style=\"vertical-align:top\">2362</td><td style=\"vertical-align:top\">79405</td><td style=\"vertical-align:top\">138</td><td style=\"vertical-align:top\">634</td><td style=\"vertical-align:top\">24</td><td style=\"vertical-align:top\">34001</td><td style=\"vertical-align:top\">21.000000</td><td style=\"vertical-align:top\"><details><summary>DataFrame [1 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742098\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">title</th><th class=\"bottomBorder\" style=\"text-align:left\">data</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">providerCount</td><td style=\"vertical-align:top\"><details><summary>DataFrame [19 x 2]</summary><table class=\"dataframe\" id=\"static_df_1073742099\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">key</th><th class=\"bottomBorder\" style=\"text-align:left\">value</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">adyen.com</td><td style=\"vertical-align:top\">69</td></tr><tr><td style=\"vertical-align:top\">amazonaws.com</td><td style=\"vertical-align:top\">295</td></tr><tr><td style=\"vertical-align:top\">apideck.com</td><td style=\"vertical-align:top\">14</td></tr></tbody></table><p>... showing only top 3 of 19 rows</p></details></td></tr></tbody></table></details></td><td style=\"vertical-align:top\">2964</td><td class=\"rightBorder\" style=\"vertical-align:top\">206</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">123</td><td style=\"vertical-align:top\">119</td></tr></tbody></table>\n",
" </body>\n",
" <script>\n",
" document.getElementById(\"static_df_1073742097\").style.display = \"none\";\n",
" </script>\n",
" </html>"
],
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"numSpecs\",\"numAPIs\",\"numEndpoints\",\"unreachable\",\"invalid\",\"unofficial\",\"fixes\",\"fixedPct\",\"datasets\",\"stars\",\"issues\",\"thisWeek\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Float\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":1,\"ncol\":12},\"kotlin_dataframe\":[{\"numSpecs\":3809,\"numAPIs\":2362,\"numEndpoints\":79405,\"unreachable\":138,\"invalid\":634,\"unofficial\":24,\"fixes\":34001,\"fixedPct\":21.0,\"datasets\":{\"data\":[{\"title\":\"providerCount\",\"data\":{\"data\":[{\"key\":\"adyen.com\",\"value\":69},{\"key\":\"amazonaws.com\",\"value\":295},{\"key\":\"apideck.com\",\"value\":14},{\"key\":\"apisetu.gov.in\",\"value\":181},{\"key\":\"azure.com\",\"value\":1832},{\"key\":\"ebay.com\",\"value\":20},{\"key\":\"fungenerators.com\",\"value\":12},{\"key\":\"googleapis.com\",\"value\":443},{\"key\":\"hubapi.com\",\"value\":11},{\"key\":\"interzoid.com\",\"value\":20},{\"key\":\"mastercard.com\",\"value\":14},{\"key\":\"microsoft.com\",\"value\":27},{\"key\":\"nexmo.com\",\"value\":20},{\"key\":\"nytimes.com\",\"value\":11},{\"key\":\"parliament.uk\",\"value\":11},{\"key\":\"sportsdata.io\",\"value\":35},{\"key\":\"twilio.com\",\"value\":41},{\"key\":\"windows.net\",\"value\":10},{\"key\":\"Others\",\"value\":743}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"key\",\"value\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}],\"ncol\":2,\"nrow\":19}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"title\",\"data\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"}],\"ncol\":2,\"nrow\":1}},\"stars\":2964,\"issues\":206,\"thisWeek\":{\"data\":{\"added\":123,\"updated\":119},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"added\",\"updated\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}}]}"
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 8
}
],
"metadata": {
"kernelspec": {
"display_name": "Kotlin",
"language": "kotlin",
"name": "kotlin"
},
"language_info": {
"name": "kotlin",
"version": "1.8.0-dev-3517",
"mimetype": "text/x-kotlin",
"file_extension": ".kt",
"pygments_lexer": "kotlin",
"codemirror_mode": "text/x-kotlin",
"nbconvert_exporter": ""
},
"ktnbPluginMetadata": {
"projectLibraries": []
}
},
"nbformat": 4,
"nbformat_minor": 0
}