Skip to content

marekpridal/VaporDemo

Repository files navigation

API Template

Documentation Team Chat MIT License Continuous Integration Swift 4.1

VaporDemo

Demo of using Swift for server app

GET

/requestDebugDescription

Try 🙌

/exchanges

Try 🙌

/exchangeRate

Try 🙌

POST

/exchange

JSON BODY example

{
  "country_code":"EUR",
  "value":1,
  "timestamp":null,
  "priority":1
}

Try 🙌

PUT

/updateExchangeRate

JSON BODY example

{
  "country_code":"CZK",
  "value":25.644444,
  "timestamp":null,
  "priority":1
}

Try 🙌

DELETE

/deleteExchangeRate

JSON BODY example

{
  "country_code":"CZK",
  "value":25.644444,
  "timestamp":null,
  "priority":1
}

Try 🙌