Call your API endpoint according to your software version, if your version is ( v1.x ) then your call url must be like this:
// base url + software version
https://yourdomain.com/API/V1/
Each section within our software has its own folder, keep this in mind while calling your API endpoint:
// base url + software version + section folder
https://yourdomain.com/API/V1/CMS/
API endpoint files are different for each section, after installing the software and exploring the files, as a php developer you will understand each file and how it should work, if you needed any help at any time, don't hesitate to contact us.
Example of ( about us ) page content using GET method:
// call about us page
https://yourdomain.com/API/V1/CMS/about.php
// result
{"status":1,"message":"","result":{"title":"EL EDARA - ERP Business Management System with REST API","content":"EL EDARA - ERP Business Management System with REST API<\/strong> developed using a procedural PHP & PDO features, which make it easy for any php developer to custom it according to his requirements, even though we will advise you to wait until we finish all upcoming updates before you make any customization, this will prevent the loss of any updates you make on this code.<\/p>","Tel":"00971500000000","email":"support@eledara.com"}}
// in case of a wrong api key, or a bad request
// result
{"status":0,"message":"Failure, your API KEY doesn't match our records","result":{}}
// message will explain where is the error to fix it.