ImMPrada / our-memories-monolith

0 stars 0 forks source link

Posts#update endpoint #40

Closed mapra99 closed 3 years ago

mapra99 commented 3 years ago

Closes #23

curl -X PUT \
  http://localhost:3000/api/posts/<POST ID> \
  -H 'cache-control: no-cache' \
  -H 'content-type: application/json' \
  -H 'postman-token: 936c21f1-38c7-13ad-9b82-2aeae1488966' \
  -H 'x-csrf-token: <CSRF TOKEN>' \
  -d '{
    "post": {
        "title": "New Title :)"
    }
}'