Update entry.bru 335 B

123456789101112131415161718192021222324252627
  1. meta {
  2. name: Update entry
  3. type: http
  4. seq: 41
  5. }
  6. put {
  7. url: {{minifluxBaseURL}}/v1/entries/{{entryID}}
  8. body: json
  9. auth: basic
  10. }
  11. auth:basic {
  12. username: {{minifluxUsername}}
  13. password: {{minifluxPassword}}
  14. }
  15. body:json {
  16. {
  17. "title": "New title",
  18. "content": "Some text"
  19. }
  20. }
  21. vars:pre-request {
  22. entryID: 1789
  23. }