{
"start": 0,
"count": 3,
"data": [
{
"companyName": "Company 3",
"startDate": 1577854800000,
"endDate": 1593489600000,
"comments": "- Successfully led the business unit establishing all policy and procedure \n- Negotiated multiple outsourced contracts for suppliers across IT and digital \n- faced off to the business etc "
},
{
"companyName": "Company2",
"startDate": 1594526400000,
"endDate": 1612069200000,
"comments": "- Barry review contracts \n- barry highlighted failed calluses \n- Was in charge of re-writing contracts \n- Reviewed and re negotiated supplier contracts \n"
},
{
"companyName": "Copmpany1",
"startDate": 1612155600000,
"endDate": 1617854400000,
"comments": "- barry ran the asdnjsabndjkaskdjna\n- Barry managed the day to day delivery or lasdjkasndjksnadkjasndsa\n- sahdjasdnjkasdnaksjdas\n- ajsndjaksndjanas\n- asjdajsndja nsdjkasnd\n- asjdjikasndjasnkdjand"
}
]
}
Dear all, I am looking at building a profile builder from data held in one of our databases. Essentially I am trying to build a list of their work history.
The JSON is what is currently returned when I make my HTTP call.
However I need to convert the date (number) into a string with month - year for example
May - 2001.
However I am struggling to convert the json item into a DateTime Variable.
I have deserialized the json and looping through each record in data.
Assign → startDate = cdate(item(“startDate”).ToString).Date
However, it throws an error when trying to assign the value to the variable. Any ideas how I can get the date number into a Month - Year string??