good morning all...i have trouble with url using api...i have url like this
"https://localhost/phalcon-api/public/api/products/id=911'"
i want add string like "?" or "&" and then thats url will be like :
"https://localhost/phalcon-api/public/api/products?id=911&token=token'"
but, when i run on postman...that's repons like :
"{ "status": "011002", "message": "API NOT FOUND." }"
oh yes, i forgot..this is my annotation
* get detail products by products_id
* URL : https://localhost/phalcon-api/public/api/products/?id=616031221770
* @return detail products_id
* @Route(method = "get", route = "?id={master_products_id}!token=token", authentication = false)
how i can use this string "?" on my url..thanks after ^_^