mirror of
https://github.com/miniflux/v2.git
synced 2025-08-01 17:38:37 +00:00
Bruno is a lightweight alternative to Postman/Insomnia. - https://www.usebruno.com - https://github.com/usebruno/bruno
22 lines
265 B
Text
22 lines
265 B
Text
meta {
|
|
name: Create a new category
|
|
type: http
|
|
seq: 10
|
|
}
|
|
|
|
post {
|
|
url: {{minifluxBaseURL}}/v1/categories
|
|
body: json
|
|
auth: basic
|
|
}
|
|
|
|
auth:basic {
|
|
username: {{minifluxUsername}}
|
|
password: {{minifluxPassword}}
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"title": "Test"
|
|
}
|
|
}
|