A RESTful API built with Django REST Framework for managing blog posts.
Endpoint | Method | Description |
---|---|---|
/blogposts/ |
GET | List all posts |
/blogposts/ |
POST | Create post |
/blogposts/ |
DELETE | Delete posts |
/blogposts/{id}/ |
GET | Get post |
/blogposts/{id}/ |
PUT | Update post |
/blogposts/{id}/ |
DELETE | Delete post |