Created
October 18, 2025 15:42
-
-
Save wullemsb/625224756bdc127901446854528bbe98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create a new project | |
| # @name createProject | |
| POST {{HostAddress}}/api/projects | |
| Content-Type: application/json | |
| { | |
| "name": "My New Project" | |
| } | |
| ### | |
| # Add a task to the created project | |
| # @name addTask | |
| POST {{HostAddress}}/api/projects/{{createProject.response.body.$.id}}/tasks | |
| Content-Type: application/json | |
| { | |
| "title": "First task", | |
| "description": "Getting started" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment