Should route parameters only be used for get/delete requests? A user can join a challenge and I want to have an API endpoint for that.
Is this ok:
Route::post('/challenge/{challenge}/join', 'UserController@joinChallenge');
or should I rather pass the challenge id in the post body?