I have designed a Rest Assured Framework where I create a separate JSON file that contains all API endpoints. So, now I want to pull the data out of this JSON file using Rest Assured. How can that be achieved?
Sample JSON file :
{
   "data": [{
         "TestCasesID": "TestCase_1",
         "ModuleName": "ABC",
         "TestCaseDescription": "Get Special Offer",
         "GetURL1": "#v1/my/specialOffers",
         "GetURL2": "#v1/my/specialOffers"
      }
   ]
}