Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/codewithmike01/wills-blog


https://github.com/codewithmike01/wills-blog

Last synced: 30 days ago
JSON representation

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
}