Reputation: 21
I'm a new user at REST architecture, now I'm trying to make a test with my API. I like to call this method in the url but I don't know the right format.
My concern is that I have two parameters to be sent by post request.
public function CreateExemple ($name, $libelle)
{
}
Upvotes: 2
Views: 242
Reputation: 1184
This is always be a good practice to use a ready to use package if available. There are lots of RESTful APIs available to use. It looks like you are using PHP for development. you can start with :
Upvotes: 1