1. Alfresco Content Services 5.2 Documentation, "Web Script types": "A RESTful Web Script is one that fully adheres to the principles of a RESTful service. In particular, this means: Explicit use of HTTP methods. For example, a GET performs a query, a POST creates a resource, a PUT updates a resource, and a DELETE removes a resource." (Source: Alfresco Documentation, specific section on RESTful Web Script conventions).
2. IETF RFC 7231, "Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content", Section 4.3.3: This standard defines the POST method. It states, "The POST method requests that the target resource process the representation enclosed in the request... The fundamental difference between the POST and PUT methods is highlighted by the different meaning of the URIs... A POST request is subordinated to the URI... in the sense that the URI identifies a resource that will process the enclosed representation... for example, for creating a new resource in a collection." This confirms POST's primary role in resource creation.