An open API service indexing awesome lists of open source software.

https://github.com/smakosh/first-rails-api

First CRUD rails REST API
https://github.com/smakosh/first-rails-api

postgresql rails ruby

Last synced: 16 days ago
JSON representation

First CRUD rails REST API

Awesome Lists containing this project

README

          

# CRUD Rails REST API

- Create post
- `/api/v1/posts`
- Read posts
- `/api/v1/posts`
- Get post by ID
- `/api/v1/posts/:id`
- Update post by ID
- `/api/v1/post/:id`
- Delete post by ID
- `/api/v1/posts/:id`