This commit is contained in:
Morten Olsen
2025-05-18 18:43:30 +02:00
commit bc92c91ff8
26 changed files with 5001 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Document with Multiple Requests
First, create a resource:
```http id=createUser
POST https://httpbin.org/post
Content-Type: application/json
{"username": "alpha"}
```
Then, fetch a different resource:
```http id=getItem
GET https://httpbin.org/get?item=123
```
Response from creating the user:
::response{#createUser}
Response from getting the item:
::response{#getItem}