A simple CRUD backend for storing books, pages and posts (work in progress)
POST /
body example:
{
"name": "J.K.Rowling",
}
body example
{
"title": "My Post",
"body": "Lorem ipsum dolorum",
}
POST /
body example:
{
"title": "Harry Potter",
"author_id": 1,
"pages": [
{
"page_number": 0,
"content": "lorem ipsum dolorum"
}
]
}