REST services are collections of resources, and endpoints are typically concerned with CRUD functionality (create, read, update, delete).
Full List of Verbs and Definitions
- Creates a record by sending data to the service.
- The contents of the form are formatted by the
Media Typeattribute in soapUI. - SoapUI docs - Media Type
- Commonly used by OAuth endpoints
- This type of encoding is not automatically provided by SoapUI, but you can typing it in manually.
- example -
username=techbos&password=Pa%24%24w0rd`
Fetches data from the service
Updates a record
Removes a record
There are other http verbs that are less common, but may be seen. ex. PATCH, OPTION,