Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/f0rkb0mbz/spring-credit-microservice
A RESTful web service to do credit related operations
https://github.com/f0rkb0mbz/spring-credit-microservice
Last synced: 13 days ago
JSON representation
A RESTful web service to do credit related operations
- Host: GitHub
- URL: https://github.com/f0rkb0mbz/spring-credit-microservice
- Owner: f0rkb0mbZ
- Created: 2020-09-18T11:01:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-20T19:24:26.000Z (over 4 years ago)
- Last Synced: 2023-08-05T13:42:06.295Z (over 1 year ago)
- Language: Java
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Credit Microservice
#### 1. [8080]spring-credit-adduser
| Endpoint | Method | Consumes |
| ------------- | -------- | ------------------ |
| `/users` | `GET` | - |
| `/users/{id}` | `GET` | - |
| `/users` | `POST` | `application/json` |
| `/users/{id}` | `DELETE` | - |
| `/users/{id}` | `PUT` | `application/json` |#### 2. [8081]spring-credit-purchasehandler
| Endpoint | Method | Consumes |
| ------------------------------------------ | -------- | ------------------ |
| `/users/{id}/addpurchase` | `POST` | `application/json` |
| `/users/{id}/deletepurchase/{purchase_id}` | `DELETE` | - |#### 3. [8082]spring-credit-billgenerator
| Endpoint | Method | Consumes |
| --------------------- | ------ | -------- |
| `/users/{id}/getbill` | `GET` | - |
| `/users/getbills` | `GET` | - |#### 4. [8083]spring-credit-limitfine
| Endpoint | Method | Consumes |
| ----------------- | ------ | -------- |
| `/applylimitfine` | `PUT` | - |#### 5. [8084]spring-credit-pendingusers
| Endpoint | Method | Consumes |
| --------------- | ------ | -------- |
| `/notpaidusers` | `GET` | - |#### 6. [8085]spring-credit-notpaidfine
| Endpoint | Method | Consumes |
| ------------------- | ------ | -------- |
| `/applynotpaidfine` | `PUT` | - |