Retrieve a JSON
In order to retrieve a JSON, you will need to pass one or more JSON IDs using a POST request.

URL


https://client.logoom.io/api/data/json/retrieve

NPM


https://www.npmjs.com/package/logoom

Parameters


id REQUIRED
The 'id' parameter is required. Please select at least one ID to retrieve a log. You can add more IDs if you wish to retrieve multiple JSONS.



  • cURL
  • Node.js
  • PHP
  • C#
POST/CreateLandscape picture
curl -X POST \
  https://client.logoom.io/api/data/retrieve \
  -H 'Content-Type: application/json' \
  -H 'apikey: your-api-key' \
  -H 'apisecret: your-api-secret' \
  -d '{
          "id": ["json id"]
   }'
Response
{
  "success": true,
  "message": "LOGOOM.SUCCESS",
  "statusCode": 201,
  "data": [
    {
      "id": 1,
      "value": "{'name':'Jon'}",
      "is_deleted": "false",
      "date_created": "2023-03-23T19:47:13.415Z",
      "date_updated": "2023-06-05T10:53:48.572Z",
      "collection_id": {
        "id": 1
      }
    }
  ]
}