mirror of
https://github.com/morten-olsen/http.md.git
synced 2026-02-08 00:46:28 +01:00
23 lines
382 B
Markdown
23 lines
382 B
Markdown
# Document with Multiple Requests
|
|
|
|
First, create a resource:
|
|
|
|
```http #createUser,format=yaml
|
|
POST https://httpbin.org/post
|
|
Content-Type: application/json
|
|
|
|
username: alpha
|
|
```
|
|
|
|
Then, fetch a different resource:
|
|
|
|
```http #getItem
|
|
GET https://httpbin.org/get?item=123
|
|
```
|
|
|
|
Response from creating the user:
|
|
::response{#createUser}
|
|
|
|
Response from getting the item:
|
|
::response{#getItem}
|