Skip to main content

Adding Individual Requests

If you want to add an endpoint manually, you can create a request directly from the Workbench. This allows you to test the request first and then save it as an Action inside an app.


Step 1: Click "+ New"

  1. In the top navigation bar, click the + New button.
  2. A dropdown menu will appear showing a list of assets that can be created.

New asset dropdown showing Request option


Step 2: Select "Request"

  1. From the dropdown list, click Request.
  2. You will be prompted to choose where the request should be saved.

Options include:

  • Select an existing App
  • Create a new App

Select app screen showing existing apps and create new option


Step 3: Open the New Request Screen

  1. After selecting an app, the New Request screen will appear.
  2. Paste the API endpoint URL into the URL field.

Example:

https://jsonplaceholder.typicode.com/todos/1
  1. Click Send to execute the request and view the response.

Request editor showing URL field, method selector, and Send button


Step 4: Save the Request

  1. After receiving a response, click the Save button.
  2. A modal will appear asking for additional information.

Fill in the following fields:

FieldDescription
NameHuman-readable name for the request
TagAuto-generated unique identifier (editable)
DescriptionOptional explanation of the request

Save action modal showing name, tag, and description fields


Step 5: Save the Action

  1. Click Save Action.
  2. Once saved successfully, you will be redirected to the App's Actions tab where the new request appears in the list.

Actions list showing the newly created request


Next Steps