["{"RequestedByUser":false,"RequestedBySystem":null,"RequestedBySellerNotification":null,"RequestedByPaymentNotification":true,"Reason":null,"CancellationDate":"2024-01-16T00:40:59.0928615+00:00"}"]
tryingjson_extract, jsonpath and nothing
["{"RequestedByUser":false,"RequestedBySystem":null,"RequestedBySellerNotification":null,"RequestedByPaymentNotification":true,"Reason":null,"CancellationDate":"2024-01-16T00:40:59.0928615+00:00"}"]
tryingjson_extract, jsonpath and nothing
2
Answers
We have a JSON string inside a list. If you want to extract values from this JSON string, you can use the json module in Python.
Try like this
Output:
I assume that you get a list of Json strings, from that you want to get the CancellationDate. You can do this in python, by loading the json string in the json module. Like this example: