Can we use GET Request Instead of PUT to Create a Resource?

PUT or POST method is used create a resource. GET is only used to request the resources.

No, the correct HTTP method to create a resource is typically POST, not GET or PUT.

GET is used to retrieve information from the server, and it should not be used for operations that modify data on the server. PUT is generally used to update or create a resource, but it’s more commonly associated with updating an existing resource.

For creating a new resource, you should use the POST method. The POST request is designed to submit data to be processed to a specified resource. In the context of RESTful APIs, it is commonly used for creating new resources on the server.