<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>JSON on Kinetica Docs</title><link>/7.2/snippet-tags/json/</link><description>Recent content in JSON on Kinetica Docs</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="/7.2/snippet-tags/json/index.xml" rel="self" type="application/rss+xml"/><item><title>JSON Egress</title><link>/7.2/snippets/json-egress/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/json-egress/</guid><description>Simple Egress Egress with Parameters Egress with Aggregation The /get/records/json REST endpoint can be called to retrieve data in JSON form directly from the database.
See Overview for call details and Responses for return values.
Simple Egress cURL Python Java JavaScript Node.js cURL 1 2 3 4 5 6 7 8 9 10 KINETICA_URL=http://localhost:9191 USERNAME=auser PASSWORD=apassword TABLE_NAME=product # Quote the URL when passing multiple options, or any &amp;amp; will stop the URL # parsing and run the URL parsed up to that point as a background job curl -sS ${KINETICA_URL}/get/records/json?</description></item><item><title>JSON Ingest</title><link>/7.2/snippets/json-ingest/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/json-ingest/</guid><description>Basic Ingest from File Ingest from File with Options Ingest from JSON String The /insert/records/json REST endpoint can be called directly, or with a convenient wrapper in the Java API.
See Overview for call details and Responses for return values.
Basic Ingest from File cURL Python Java Java (Distributed Ingest) JavaScript Node.js cURL 1 2 3 4 5 6 7 8 9 10 KINETICA_URL=http://localhost:9191 USERNAME=auser PASSWORD=apassword TABLE_NAME=product JSON_FILE_NAME=products.json curl -sS -X POST --header &amp;#34;Content-Type: application/json&amp;#34; \ --user &amp;#34;${USERNAME}:${PASSWORD}&amp;#34; \ -d @${JSON_FILE_NAME} \ ${KINETICA_URL}/insert/records/json?</description></item></channel></rss>