I send a request to the Shopify api in javascript to the following url:
https://someauthorizationkey.myshopify.com/admin/api/2019-07/orders.json?id=12334445'
and it works perfectly. I get exactly the request order, everything works find.
If I do the same in curl with the following command:
curl -k https://someauthorizationkey.myshopify.com/admin/api/2019-07/orders.json?id=12334445
I get all orders, as if I haven't use the parameter id=12334445.
How do I correct the command in curl to get only the order with the specific id?