Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codewithmike01/wills-blog
https://github.com/codewithmike01/wills-blog
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/codewithmike01/wills-blog
- Owner: codewithmike01
- Created: 2022-06-21T18:39:08.000Z (over 2 years ago)
- Default Branch: development
- Last Pushed: 2022-09-26T14:36:21.000Z (about 2 years ago)
- Last Synced: 2024-08-20T16:43:33.448Z (3 months ago)
- Language: JavaScript
- Homepage: wills-blog-gamma.vercel.app
- Size: 10.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API Development and Documentation Final Project
## Wills Blog App
POST user
Request : {
"first_name": "Sammy",
"last_name": "Lewis",
"role": "user",
"disable_account": false,
"facebook_link": "https://me",
"linkedIn_link":"https://me",
"instagram_link":"https://",
"github_link": "https://me",
"nick_name": "lewisCreed"
}Response:
{
"success": true,
"user": {
"disable_account": false,
"facebook_link": "https://me",
"github_link": "https://me",
"id": 2,
"instagram_link": "https://",
"linkedIn_link": "https://me",
"nick_name": "lewisCreed",
"role": "user"
}
}POST Category
Request
{
"type": "Politics"
}Response
{
"success": true
}