JSONPath: Difference between revisions

From Planfix
Jump to: navigation, search
No edit summary
No edit summary
Line 15: Line 15:
<p style="padding-left:10px;">
<p style="padding-left:10px;">
"firstName": "John",
"firstName": "John",
"lastName": "Smith",
"lastName": "Smith",
"address": {
"address": {
"streetAddress": "10 Main Street, Apartment 101",
"streetAddress": "10 Main Street, Apartment 101",
"city": "Pleasantville",
"city": "Pleasantville",
"postalCode": 10101
"postalCode": 10101
},
},
"phoneNumbers": [
"phoneNumbers": [
"812-123-1234",
"812-123-1234",
"916-123-4567"
"916-123-4567"
]
]
}
}
</p>
</p>
</div>
</div>
 
 
Let's say we need the following data from the JSON:
Let's say we need the following data from the JSON:
<div style="background-color:#f9f9f9; border:1px solid #ddd; padding:1em;">
{
{
"firstName": "John",
"firstName": "John",
Line 62: Line 45:
]
]
}
}
</p>
</div>
 
 
We would configure the following rule for processing emails:
We would configure the following rule for processing emails:



Revision as of 03:47, 26 March 2021

mails sent to Planfix can be parsed using JSON. JavaScript Object Notation is a format for storing and exchanging information available as human-readable text.  There are two main elements in a JSON object: the key and the value.  

Example

{"city":"New York", "country":"United States"} keys — city and country; values — New York and United States Planfix can parse emails in this format and add the relevant data to infoblocks. The JsonPath library is used to do so.  

Example

An email is sent to Planfix with JSON: {

"firstName": "John", "lastName": "Smith", "address": { "streetAddress": "10 Main Street, Apartment 101", "city": "Pleasantville", "postalCode": 10101 }, "phoneNumbers": [ "812-123-1234", "916-123-4567" ] }

  Let's say we need the following data from the JSON:

{ "firstName": "John", "lastName": "Smith", "address": { "streetAddress": "10 Main Street, Apartment 101", "city": "Pleasantville", "postalCode": 10101 }, "phoneNumbers": [ "812-123-1234", "916-123-4567" ] }

 

We would configure the following rule for processing emails:


Go To