Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Creating a calculation logic as a REST API for Postman Request consists of these steps: 

...

Code Block
{
    "data": {
        "CustomerID": "111980",
        "ProductID": "1504795"
    }
}

Now create execute a calculation logic which returns the some expected data and make it receive the request parameter, e.g ProductID, using api.input("ProductID").

Request Logic with POSTMAN

...