Skip to main content
Accesses values at the supplied keys. Use this when you want to read fields directly by name from a known spot in your data, such as picking the customer details out of an order. You point it at a base location and it reads the values that live directly underneath it, optionally narrowing the result to just the keys you list.

Fields

Sample data

FieldValue
Rootcustomer
Keysemail, first_name
Input:
{
    "customer": {
        "first_name": "Anna",
        "last_name": "de Vries",
        "email": "anna@example.com",
        "newsletter": true
    }
}
Output:
{
    "first_name": "Anna",
    "email": "anna@example.com"
}