I have a .json file containing the following parameters:
{
"account_ref" : "dh2fk3weh28dnd",
"fname" : "john",
"sname" : "smith",
"address" : "42 test street",
"product" : "all",
"email" : "[email protected]",
"tele" : "0384756783"
}
This file will be on a linux server and I need find a way to extract the account_ref value and insert it into a csv file using automation.
I have no experience in this scripting, regex and I believe that regex may be the answer to extracting the account_ref value. Any advice is welcome. Thanks.