Is there possible get request type in controller? How?
Easy, just call the getMethod() method on your Request object:
getMethod()
Request
$method = $this->get('request')->getMethod();
This will return the HTTP method of the current request, e.g. GET, POST, PUT or DELETE.
GET
POST
PUT
DELETE