Request
Mocktail is still in Beta so if you find any bugs with the app or issues with these docs, please report them on GitHub
Introduction
Once you have named your endpoint, you will need to fill out some key details about your request.
URL
You can set the URL your endpoint can be requested on (This will be prefixed with http://localhost:3333/api/data/
). The full URL can be copied to your clipboard by clicking the clipboard icon button to the right of the URL. This will include any Query Params that have been added (See below)
Query params
Query Params are an optional addition to the endpoint URL. These can be used to pass static values to your response body.
You can easily configure Query Params by doing the following:
- Click the 'Add Param' button
- Type the name of the query param
- In the Response Body section, select 'Static Value' from the Node Type dropdown
- Give your static field a name
- Select
Query Param
from the Type dropdown - Select the query param from step 2 from the Param Key dropdown
Request body
The Request body params can be used to pass static values to your response body.
You can easily configure Query Params by doing the following:
- Click the 'Add Param' button
- Type a param name being passed in the request body
- In the Response Body section, select 'Static Value' from the Node Type dropdown
- Give your static field a name
- Select
Request Body
from the Type dropdown - Select the param from step 2 from the Param Key dropdown
Request type
From this dropdown you can set the Request type (default value is GET
).
Request Type |
---|
DELETE |
GET |
PATCH |
POST |
PUT |