Skip to content

Working with multiple endpoints

Eduardo Rodrigues edited this page Jun 5, 2023 · 1 revision

The main purpose of quartz is to organize and design the architecture of APIs and make it easy to test. As such, this is a highly evolving module of this tool.

Listing

Let's quickly create another endpoint for our example:

quartz create /post --method POST --url http://httpbin.org/post

We can see all our endpoints using the list command:

quartz list
   POST  /post
*  GET   /get

Our endpoint in use gets conveniently marked with an asterisk (*) to make it easy for us to see.

Clone this wiki locally