Google Keep API with Ruby on Rails
Route | HTTP Verb | Request Body | Header Body | Description |
---|---|---|---|---|
/users | POST |
{user: {email: "[email protected]", password: "mypass", password_confirmation: "mypass", fullname: "şevo"}} |
Empty | Returns authentication bearer token on header |
/users/sign_in | POST |
{user: {email: "[email protected]", password: "mypass"}} |
Empty | Returns authentication bearer token on header |
/users/sign_out | DELETE |
Empty | Authentication: Bearer Token | Returns sign out message |
Route | HTTP Verb | Request Body | Header Body | Description |
---|---|---|---|---|
/colors | GET |
Empty | Authentication: Bearer Token | Returns user's colors |
/colors | POST |
{color: {color: "hexcode-or-rgb-or-etc"}} |
Authentication: Bearer Token | Returns created resource or error messages |
/colors/:id | GET |
Empty | Authentication: Bearer Token | Returns resource |
/colors/:id | PATCH |
{color: {color: "#fff"}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/colors/:id | PUT |
{color: {color: "#fff"}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/colors/:id | DELETE |
Empty | Authentication: Bearer Token | Returns status of destroying |
Route | HTTP Verb | Request Body | Header Body | Description |
---|---|---|---|---|
/labels | GET |
Empty | Authentication: Bearer Token | Returns user's labels |
/labels | POST |
{label: {name: "Business"}} |
Authentication: Bearer Token | Returns created resource or error messages |
/labels/:id | GET |
Empty | Authentication: Bearer Token | Returns resource |
/labels/:id | PATCH |
{label: {name: "Birthday"}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/labels/:id | PUT |
{label: {name: "Car"}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/labels/:id | DELETE |
Empty | Authentication: Bearer Token | Returns status of destroying |
Route | HTTP Verb | Request Body | Header Body | Description |
---|---|---|---|---|
/notes | GET |
Empty | Authentication: Bearer Token | Returns user's notes |
/notes?status=normal | GET |
Empty | Authentication: Bearer Token | Returns user's normal notes |
/notes?status=archived | GET |
Empty | Authentication: Bearer Token | Returns user's archived notes |
/notes?status=deleted | GET |
Empty | Authentication: Bearer Token | Returns user's deleted notes |
/notes | POST |
{label: {name: "Business"}} |
Authentication: Bearer Token | Returns created resource or error messages |
/notes/:id | GET |
Empty | Authentication: Bearer Token | Returns resource |
/notes/:id | PATCH |
{label: {name: "Birthday"}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/notes/:id | PUT |
{label: {name: "Car"}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/notes/:id | DELETE |
Empty | Authentication: Bearer Token | Returns status of destroying |
Route | HTTP Verb | Request Body | Header Body | Description |
---|---|---|---|---|
/notes/:note_id/images | GET |
Empty | Authentication: Bearer Token | Returns user's images of note |
/notes/:note_id/images | POST |
{image: {image: Image File}} |
Authentication: Bearer Token | Returns created resource or error messages |
/notes/:note_id/images/:id | DELETE |
Empty | Authentication: Bearer Token | Returns status of destroying |
Route | HTTP Verb | Request Body | Header Body | Description |
---|---|---|---|---|
/notes/:note_id/todos | GET |
Empty | Authentication: Bearer Token | Returns user's todos of note |
/notes/:note_id/todos | POST |
{todo: {content: "Create a CV", status: 0, sequence: 0}} |
Authentication: Bearer Token | Returns created resource or error messages |
/notes/:note_id/todos/:id | GET |
Empty | Authentication: Bearer Token | Returns resource |
/notes/:note_id/todos/:id | PATCH |
{todo: {sequence: 1}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/notes/:note_id/todos/:id | PUT |
{todo: {sequence: 2}} |
Authentication: Bearer Token | Returns updated resource or error messages |
/notes/:note_id/todos/:id | DELETE |
Empty | Authentication: Bearer Token | Returns status of destroying |
Route | HTTP Verb | Request Body | Header Body | Description |
---|---|---|---|---|
/notes/:note_id/collaborators | GET |
Empty | Authentication: Bearer Token | Returns user's collaborators of note |
/notes/:note_id/collaborators | POST |
{collaborator: {email: "[email protected]"}} |
Authentication: Bearer Token | Returns created resource or error messages |
/notes/:note_id/collaborators/:id | DELETE |
Empty | Authentication: Bearer Token | Returns status of destroying |
- Ruby
- NodeJS (>=10.x)
- PostgreSQL
- ImageMagick
sudo apt-get install imagemagick libmagickcore-dev libmagickwand-dev
-
Install GEM dependencies:
bundle install
-
Create database, migrate tables and run the seed data:
rails db:create rails db:migrate rails db:seed
-
If you are setting up again, when you already have previous databases:
rails db:reset
-
For dropping database
rails db:drop
GNU GENERAL PUBLIC LICENSE Version 3