Contacts Application is a sample CRUD application. The application allows you to browse through a list of contacts, as well as add, update, and delete contacts.

In this cookbook, we will demonstrate, how you can validate this sample test application using vREST.

Useful links:

  1. Download the source code from Github.
  2. REST API specifications: Swagger File (TODO)
  3. Setup / install contacts application.

REST Endpoints:

The application has the following REST API endpoints:

MethodAPI EndpointAction
GET/contactsRetrieve all contacts
GET/contacts/{{id}}Retrieve the contact with the specified id
POST/contactsAdd a new contact
PUT/contacts/{{id}}Update the contact with the specified id
DELETE/contacts/{{id}}Delete the contact with the specified id

Versions:

The application has two versions.