API Response

I am using an assign to assign jason object to variable:
jsonObject(“entityData”)(totalRecords-1)(“repsAndCerts”)(“certifications”)(“fARResponses”).ToString

I am getting the following error:
Assign: Cannot access child value on Newtonsoft.Json.Linq.JValue

I think there is a problem with how I am accessing the properties.

This is the json response:
@"{
““totalRecords””: 2,
““entityData””: [
{
““repsAndCerts””: {
““certifications””: null,
““qualifications””: null,
““financialAssistanceCertifications””: null,
““pdfLinks””: null
}
},
{
““repsAndCerts””: {
““certifications””: {
““fARResponses””: [
{
““provisionId””: "“FAR 09-2"”,
““listOfAnswers””: [
{
““section””: "“c.1"”,
““questionText””: ““company?””,
““answerId””: "“72"”,
““answerText””: ““No””,
““country””: null,
““company””: null,
““highestLevelOwnerCage””: null,
““immediateOwnerCage””: null,
““personDetails””: null,
““pointOfContact””: null,
““architectExperiencesList””: ,
““disciplineInfoList””: ,
““endProductsList””: ,
““foreignGovtEntitiesList””: ,
““formerFirmsList””: ,
““fscInfoList””: ,
““jointVentureCompaniesList””: ,
““laborSurplusConcernsList””: ,
““naicsList””: ,
““predecessorsList””: ,
““samFacilitiesList””: ,
““samPointsOfContactList””: ,
““servicesRevenuesList””: ,
““softwareList””: ,
““urlList””:
},

What am I doing wrong…

May we ask you to provide us the complete JSON as text file or here in editor, but using the </> format button from editor

Thanks

somewhere here, it looks like a jump into the second repsAndCerts object is needed.

Also have a look on the Path Expressions used within a selectToken(s) method:
JSONPath - XPath for JSON

maybe jsonObject.SelectToken("$..FaRResponses").toString will help for prototypings

Attached is the txt file.

response (1).txt (8.53 KB)

@Nenna_Anya
Prework:
grafik

Have a check on the below prototypes:

grafik
myJObject("entityData")(1)("repsAndCerts")("certifications")("fARResponses").ToString

and also as mentioned
grafik
myJObject.selectToken("$..fARResponses").ToString