Skip to content

Releases: ParrySMS/PocketRentalCompany

PocketRentalAPI-V0.6.0

PocketRentalAPI-V0.4.0

23 May 10:44
bea3f99
Compare
Choose a tag to compare
Pre-release

Deployed and run in the cloud environment.

http://demo-company.azurewebsites.net/swagger-ui.html#/

PocketRentalAPI-V0.5.0

23 May 16:02
982db50
Compare
Choose a tag to compare

PocketRentalAPI-V0.3.0

23 May 04:43
a609e05
Compare
Choose a tag to compare

PocketRentalAPI-V0.2.0

22 May 17:42
efab7cf
Compare
Choose a tag to compare
Pre-release

Completed two APIs (including unit testing)

PocketRentalAPI-V0.1.0

22 May 09:01
58d8720
Compare
Choose a tag to compare
Pre-release

Two health check API to show the whole data flow and integration are done.

  • health-check

curl -X GET "http://localhost:8080/health-check" -H "accept: */*"

response body:

 It's OK. 2021-05-22
  • database-check

curl -X GET "http://localhost:8080/database-check" -H "accept: */*"

response body:

{
  "status": true,
  "message": "success",
  "data": [
    {
      "id": 1,
      "frequencyType": "Daily"
    },
    {
      "id": 2,
      "frequencyType": "Weekly"
    },
    {
      "id": 3,
      "frequencyType": "Monthly"
    },
    {
      "id": 4,
      "frequencyType": "Half-Yearly"
    },
    {
      "id": 5,
      "frequencyType": "Yearly"
    },
    {
      "id": 6,
      "frequencyType": "test"
    }
  ]
}