Test App - Do Not Launch ​
Demo REST API connector for integration testing. Provides user management, content, and status endpoints. Not intended for production use.
| Detail | Value |
|---|---|
| Category | Dev Tools |
| Base URL | https://api.example.com/v1 |
| Authentication | Bearer Token |
| Endpoints | 13 |
| Connector key | test-app-do-not-launch |
Using Test App - Do Not Launch in a workflow ​
- Go to Connections and click New Connection.
- Pick Test App - Do Not Launch from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| GET /users | List all users |
| POST /users | Create a new user |
| GET /users/{id} | Get a user by ID |
| PUT /users/{id} | Update a user |
| DELETE /users/{id} | Delete a user |
| GET /posts | List all posts |
| POST /posts | Create a new post |
| GET /posts/{id} | Get a post by ID |
| PUT /posts/{id} | Update a post |
| DELETE /posts/{id} | Delete a post |
| GET /posts/{id}/comments | List comments on a post |
| POST /posts/{id}/comments | Add a comment to a post |
| GET /status | Get API health status |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.