LDIF_PARSE
Parse text from a LDAP Data Interchange Format (LDIF) file into an object
Categories: Data Parsing/Conversion
Syntax
LDIF_PARSE(ldif_file_text)
Examples
Example 1
Input
1
{
2
"my_action": {
3
"message": "dn: cn=The Postmaster,dc=example,dc=com\nobjectClass: organizationalRole\ncn: The Postmaster"
4
}
5
}
Formula
LDIF_PARSE(my_action.message)
Output
1
[
2
{
3
"cn": [
4
"The Postmaster"
5
],
6
"objectclass": [
7
"organizationalRole"
8
]
9
}
10
]
Sample actions
Select an action to inspect
You can also click "Copy actions" and paste them in your Tines story to see how they work.