Syntax
REMOVE_KEY(object, path)
Usage examples
Example 1
Input | 1 { 2 "my_action": { 3 "person": { 4 "email": "kubrik@movies.com", 5 "name": "Stanley" 6 } 7 } 8 } |
Formula | REMOVE_KEY(my_action, "person.email") |
Output | 1 { 2 "person": { 3 "name": "Stanley" 4 } 5 } |
Example 2
Input | 1 { 2 "my_action": { 3 "person": { 4 "email": "kubrik@movies.com", 5 "first.name": "Stanley" 6 } 7 } 8 } |
Formula | REMOVE_KEY(my_action, "person.first\.name") |
Output | 1 { 2 "person": { 3 "email": "kubrik@movies.com" 4 } 5 } |
Sample Actions
Event Transform
My Action
Event Transform
REMOVE_KEY
Select an Action to inspect.
You can also click "Copy Actions" and paste them in your Tines Story to see how they work.
Event Transform
My Action
Event Transform
REMOVE_KEY
Select an Action to inspect.
You can also click "Copy Actions" and paste them in your Tines Story to see how they work.