A POST API that takes a sample json:
{ “operation_type”: Enum <addition | subtraction | multiplication> , “x”: Integer, “y”: Integer }
The Operation can either be addition, subtraction or mutiplication x can be a number and Integer datatype y can be a number and Integer datatype
Based on the operation sent, the app performs a simple arithmetic operation on x and y and returns a response with the result of the operation.