Announcements
No record found.
[ { “Date”: “2020-06-04T13:15:24”, “applicationId”: 3231, “email”: “dwight.k.schrute@dundermifflin.com”, “employerId”: 213, “files”: [ { “fileId”: “c82e2b20-2c96-4dd2-96bf-b67d99c58340”, “fileUrl”: “https://cv.lv/api/v1/applications-service/application/3231/file/c82e2b20-2c96-4dd2-96bf-b67d99c58340” } ], “firstName”: “Dwight K.”, “lastName”: “Schrute”, “answers”: [ { “fileUrl”: “string”, “externalQuestionId”: “Some random text” } ] } ]
public class Rootobject { public List Applications { get; set; } } public class Applicants { public DateTime Date { get; set; } public int applicationId { get; set; } public string email { get; set; } public int employerId { get; set; } public List files { get; set; } public string firstName { get; set; } public string lastName { get; set; } public List answers { get; set; } } public class File { public string fileId { get; set; } public string fileUrl { get; set; } } public class Answer { public string fileUrl { get; set; } public string externalQuestionId { get; set; } }
JsonConvert.DeserializeObject<Rootobject>(json);
DllLibraryJsonParser.RootObject rootObject = new DllLibraryJsonParser.RootObject(); List applicationsListCSharp = new List(Types::Class); rootObject = Newtonsoft.Json.JsonConvert::DeserializeObject(jsonStr); applicationsListCSharp = rootObject.get_Applications();
public static List<Applicants> DeserializeApplicants(string json) { return JsonConvert.DeserializeObject<List<Applicants>>(json); }
List applicationsListCSharp = new List(Types::Class); applicationsListCSharp = DllLibraryJsonParser::DeserializeApplicants(jsonStr);
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Giorgio Bonacorsi 617
André Arnaud de Cal... 461 Super User 2026 Season 1
Syed Haris Shah 298 Super User 2026 Season 1