Internal Data JSON Methods
Last updated
Was this helpful?
Last updated
Was this helpful?
This guide will help you to quickly use JSON data files (.json) as a data source in ixHello.
An ixHello account
For steps to create an ixHello account, follow the steps
A valid JSON data file
You will need a valid JSON file containing some data. If you do not have this, you can also create a new one with the sample data provided below. Open Notepad, paste the following sample data, and save the file as Sample.json: { "Contacts": [ { "name": "Martin", "contactnumber": "0123456789", "country": "US" }, { "name": "Bob", "contactnumber": "1230456789", "country": "US" }, { "name": "James", "contactnumber": "1230456789", "country": "Canada" } ] }
These instructions will use this sample data.
To proceed with these steps, you will need Studio Mode access in ixHello.
Log in to the ixHello portal at
From the left menu, Navigate to the Content > Content. You should see a page with a list of contents (if any) and a button to add a new content as shown in below screenshot.
Create new content by clicking on ADD NEW CONTENT. Once clicked, you should see a screen to provide new content details. Fill in a Content ID, Content Name, Category, and Text.
Scroll down and select Media Or Data. This will open up some more fields. Set the Media Type to JSON. To load the sample JSON file, select Upload File, click on Choose File, and browse to the Sample.json file created earlier. When finished, press Add.
The file you use must be a valid JSON file with JSON contents else the platform will not allow you to upload it.
Once uploaded, you should see a success notification and added contents as shown below.
From the left menu, navigate to the Integration > Connect System. You should see a list of all the connections that you have already created.
To create a new connection, click on Add New Connection.
On the popup, choose Internal Content as Connection and name the System Instance. Press Next.
You should see a newly created connection as shown in below screenshot.
Now the connection is ready to use with the app.
To create an app, browse to Apps > Custom Apps and click New Custom App
A small screen pops up. Populate the fields and press Save.
Input
Information
Name
You can give any value of your choice.
Custom App Type
Select Search
Category
Please use the same category that you have used for the Internal Data.
Note: If category do not match then methods in this app may not be able to access the JSON data.
Make this app as shared…
Select this if you want to share this app with other users in your organization.
A Data Source connects the app with the integration.
Once you have an App created, open the Data Sources tab and press Create New Data Source.
In the screen that opens, give it a name and choose Internal Content: My Contacts.
If you want to make this connection as private to you, select the available option “Consider as a Personalized Data Source”. If selected, other users in your organization will not be able to use it.
Click on Save. Once a data source is created, you are ready to start creating various methods and use JSON Data.
By using Methods, you will be able to access JSON data as well as add new data to the same JSON.
To access Methods, click on the Methods tab.
As of the publication date of this document, ixHello supports following methods for JSON Data:
GetJSONContents
AddRecord
AddRecordToNode
You can use this method to pull the contents of your JSON file. The method requires just one parameter as explained below.
Parameters:
Parameter
Sample Value
Info
ContentID
Contacts01
This parameter is used to uniquely identify the content (JSON file) used in Internal Data
Other than these two parameters, you need to provide following standard inputs
Parameter
Info
Method Name
You can give any name. This name will be displayed in the methods list.
Request Type
GetJSONContents
This is the method that you are using
Parameters
As explained in the previous table
Record Limit
Numeric value (e.g. 10)
If Method is returning larger number of records, then you can limit this result by providing this value.
Record JsonPath
Each method returns data in JSON format and to pick any specific information from the JSON, we need to specify the Record JsonPath so ixHello platform will pick that data in consideration while displaying results.
Example: $.[*]
This selects all the records that is returned.
Record Template
Let’s assume that the following json represents one record.
{
"attributes": {
"type": "Contact",
"url": "/services/data/v47.0/sobjects/Contact/0032w000002GFOVAA4"
},
"Id": "0032w000002GFOVAA4",
"FirstName": "John",
"LastName": "Bond",
"Phone": "(312) 596-1000"
}
In this example, Phone is at root level and can be accessed by {{Phone}}
So record template can be written as
Phone number of {{FirstName}} {{LastName}} is {{Phone}}
So, when a method is executed, this will be displayed as,
Phone number of John Bond is (312) 596-1000
Note:
Anything written in between {{ }} is represented as a json field and it’s case-sensitive.
{{Phone}} is not same as {{phone}}
Result Template
This indicates how method results should be represented.
Here you go, {{Records}}
Here, {{Records}} represents one or more records separated by a separator.
{ "Contacts": [ { "name": "Martin", "contactnumber": "(678)345 6789", "country": "US" }, { "name": "Bob", "contactnumber": "(678) 045 6789", "country": "US" }, { "name": "James", "contactnumber": "(678) 123 0456", "country": "Canada" } ] }
This method is useful for adding new records in existing JSON that you have uploaded in the Contents section on the ixHello platform.
This method requires following parameters:
Parameter
Sample Value
Info
ContentID
Contacts01
This parameter is used to uniquely identify the content (JSON file) used in Internal Data
NodePath
$.Contacts
NodePath determines the path or location within the JSON to insert the record.
Record
{
"name": "Joe",
"contactnumber": "(678) 000 6789",
"country": "US"
}
The record in valid JSON format
RecordPosition
First
Last
You can select value for dropdown.
It determines the position of the newly inserted record in the original JSON.
{"result":"success"}
This method is useful for adding new records in existing JSON that you have uploaded in the Contents section on the ixHello platform. The method is like the previous one with a difference that, it does not require NodePath. It is useful when you have a very simple JSON (just key value pairs).
This method requires following parameters:
Parameter
Sample Value
Info
ContentID
Contacts01
This parameter is used to uniquely identify the content (JSON file) used in Internal Data
Record
{
"name": "Joe",
"contactnumber": "(678) 000 6789",
"country": "US"
}
The record in valid JSON format
RecordPosition
First
Last
You can select value for dropdown.
It determines the position of the newly inserted record in the original JSON.
{"result":"success"}}