24 lines
306 B
Text
24 lines
306 B
Text
meta {
|
|
name: get_snippets
|
|
type: http
|
|
seq: 4
|
|
}
|
|
|
|
get {
|
|
url: {{host}}/api/snippets?limit=100&skip=0
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
params:query {
|
|
limit: 100
|
|
skip: 0
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"title": "Test Snippet",
|
|
"markdown": "## Cool Snippet\ndoes a cool thing",
|
|
"tags": ["git", "jj"]
|
|
}
|
|
}
|