Social - Share - Save - JSON
NOT USED, SAME AS SHARE/ADD
/social/share/save/json/{id}/{type}/{title}/{description}?json=<json-object> (GET)
/social/share/save/json/{id}/{type}/{title}/{description} (POST)
Saves some JSON to the share library.
Authentication
Not required (this call gives auth)
Arguments
id (required)
if you want to update a share, submit a valid ID otherwise you can submit null
type (required)
a descriptor of the type of json you are adding
title (required)
a title of the json you are adding
description (required)
the description of the json you are adding
json (required)
JSON object that you want to save
Example
Method.Get
http://infinite.ikanow.com/api/share/save/json/idornull/type/title/description?json={}
Method.Post
Example using curl:
curl -XPOST 'http://infinite.ikanow.com/api/share/save/json/idornull/type/title/description' -d '{"field":"value"}'
Example Response