The requested feature xmlFormId is not supported by this server

1. What is the problem?
Hello ODK community. Currently developping a wrapper around the ODK Central API for Laravel (https://github.com/mchev/laravel-odk), I have an error that i don't understand when i'm calling this API endpoint : /projects/2/forms/basic.svc/Submissions?$top=250&$skip=0&$count=1&$wkt=1
It give me this error : The requested feature xmlFormId is not supported by this server

2. What app or server are you using and on what device and operating system?
ODK Central v1.2.2 is hosted on digital ocean

3. What you have you tried to fix the problem?
Trying to change the Header request Content Type, Change the form id, Playing with parameters.

4. What steps can we take to reproduce the problem?
Install the package via composer require mchev/laravel-odk
Then call OdkCentral::projects($projectId)->forms($xmlFormId)->answers()->get();

  1. Anything else we should know or have?
    This is a package for Laravel so you should have an ODK Central Server (with admin crendentials) and a Laravel test application to try the package.

Sorry to have bothered you, it turns out that I was sending unnecessary parameters (like xmlFormId) in the get request.
Apparently the API interprets these parameters even if they are not needed.