Made with laravel, the api its a backend for my current principal side project, Todo.sh, the purpouse of this api is the comunication of data from the Todo.sh and for the Todo.sh.
(Return 200 if its connected)
keys:
- (header) token: String
(Return user data)
keys:
- username: String
- password: String
(Verify the user)
keys:
- username: String
- password: String
(Insert the user)
keys:
- (header) token: String
(Return user projects)
keys:
- (header) token: String
- project_title: String
- project_icon: String
- project_type: String | T or K
- project_days: Int
(Add user project)
🏗️👷 ...Other project route features, are comming!!
keys:
- (header) token: String
- project_id: Int
(Return user tasks by project)
keys:
- (header) token: String
- project_id: Int
- task_title: String
- task_desc: String
(Add user task by project)
keys:
- (header) token: String
- project_id: Int
- task_id: Int
- action: String | done, not-done, edit-info
(Edit user task based on action)
keys:
- (header) token: String
- project_id: Int
- task_id: Int
(Remove/Disable user task)