--- title: 'Test App - Do Not Launch' description: 'Demo REST API connector for integration testing. Provides user management, content, and status endpoints. Not intended for production use.' --- # 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 1. Go to **Connections** and click **New Connection**. 2. Pick **Test App - Do Not Launch** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /users](./get_users_users_list) | List all users | | [POST /users](./post_users_users_create) | Create a new user | | [GET /users/{id}](./get_users_id_users_get) | Get a user by ID | | [PUT /users/{id}](./put_users_id_users_update) | Update a user | | [DELETE /users/{id}](./delete_users_id_users_delete) | Delete a user | | [GET /posts](./get_posts_posts_list) | List all posts | | [POST /posts](./post_posts_posts_create) | Create a new post | | [GET /posts/{id}](./get_posts_id_posts_get) | Get a post by ID | | [PUT /posts/{id}](./put_posts_id_posts_update) | Update a post | | [DELETE /posts/{id}](./delete_posts_id_posts_delete) | Delete a post | | [GET /posts/{id}/comments](./get_posts_id_comments_comments_listbypost) | List comments on a post | | [POST /posts/{id}/comments](./post_posts_id_comments_comments_create) | Add a comment to a post | | [GET /status](./get_status_api_getstatus) | Get API health status | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.