Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created October 18, 2025 15:42
Show Gist options
  • Select an option

  • Save wullemsb/625224756bdc127901446854528bbe98 to your computer and use it in GitHub Desktop.

Select an option

Save wullemsb/625224756bdc127901446854528bbe98 to your computer and use it in GitHub Desktop.
# 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