Skip to main content
4 of 4
edited body
7ochem
  • 7.6k
  • 16
  • 54
  • 82

We insert our JSON data in request body in this form:

{ "firstname":"vijay", "secondname":"bokka", "email":"[email protected]" } 

As part of API implementation one method will be invoked when API URL is trigged.

To that method interface write:

apiinvokedmethod($firstname, $secondname, $email) { } 

You can access value of $firstname automatically in the class where you implemented this interface class.

NOTE: The value of key in json and name of the method parameter should be equal.

vijay b
  • 362
  • 1
  • 5
  • 15