Skip to content

Instantly share code, notes, and snippets.

@infomaven
Last active June 14, 2024 02:24
Show Gist options
  • Select an option

  • Save infomaven/a20403d26b76e27dd7aa0ef2e4d4eec8 to your computer and use it in GitHub Desktop.

Select an option

Save infomaven/a20403d26b76e27dd7aa0ef2e4d4eec8 to your computer and use it in GitHub Desktop.
SoapUI OSS Cheat Sheets

REST API TESTING

REST services are collections of resources, and endpoints are typically concerned with CRUD functionality (create, read, update, delete).

Http verbs

Full List of Verbs and Definitions

Post

  • Creates a record by sending data to the service.

Forms

Form Encodings -
  1. x-www-form-urlencoded
  • 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`

GET

Fetches data from the service

PUT

Updates a record

DELETE

Removes a record

SUPPORTING VERBS

There are other http verbs that are less common, but may be seen. ex. PATCH, OPTION,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment