*I am new to the world of API and am not an expert in programming in general. I was looking through API from warriorplus and their documentation seems so straightforward and easy to comprehend: https://warriorplus.com/api/docs/ I can easily request via URL with parameters like this and view products that a customer have purchased from me. I just need to input the customer email and my api key https://warriorplus.com/api/v2/sales/?email=CUSTOMER_EMAIL&apiKey=MYAPIKEY Now at JVZOO API documentation: https://api.jvzoo.com/docs/versions/v2.0.html I have no idea how to do this. I'm not sure what the api key parameter is. Can someone shed some light with some examples of how to make a URL request with the proper parameter using JVZOO api? I don't want to use CURL, I just want a simple URL request with the appropriate parameters to view customer orders with their email and apikey (just like with warriorplus api). Thank you!
You cant simply because you need to make a POST request to the JVZOO api url unlike warriorplus api wherein it utilizes GET method hence you can just append parameters to access it like your API key etc.