RESTful API using Python Flask
git clone https://github.com/peter11420/api.git
Start with command:
cd api
docker-compose up -d
http://localhost:5000
| Field | Description |
|---|---|
| id | list id |
| name | user name |
| job_title | user job |
| user email | |
| mobile | user phone number |
{
"communicate_information": {
"email": "wayne@gmail.com",
"mobile": "09XX-XXX-XXX"
},
"job_title": "Devops",
"name": "Wayne",
"id": 1
}
Add user
-
Response 200 (application/json)
Response will get all user.
Get all user info
-
Response 200 (application/json)
Response will get all user.
Update user info
-
Response 200 (application/json)
Response will get all user.
remove user
-
Response 200 (application/json)
Response will get all user.