REST Generate key - email is always emptySolved

Hi everyone,I am a learning how to use REST and I succeed to build a generate key request:https://wyday.com/limelm/api/rest/?method=limelm.pkey.generate&version_id=1&email =test@test.com&feature_name[]=Feature_TEST&feature_value[]=0

It creates a new key but the email adresse always remains empty... I tried different ways to store the email with " or ' but it never worked.Thanks for your helpClement

, edited

Hey Clement,

Don't use GET and don't do it in a browser (because by default a response will be XML, and the XML won't render anything in a browser).

Use POST and use an HTTPS communication tool (curl, wget, etc.) to do the request.

Wyatt wrote:> Hey Clement,> > Don't use GET and don't do it in a browser (because by default a response> will be XML, and the XML won't render anything in a browser).> > Use POST and use an HTTPS communication tool (curl, wget, etc.) to do the> request.

Hi wyatt, even with POST, it is not solving my problem. The key generates still has an empty email...I am using Postman because I am still learning REST and I need to test my requests before to implement its in a code. 🤓 ThanksClement

We can't reproduce it using POST with properly urlencoded parameters.

Wyatt wrote:> We can't reproduce it using POST with properly urlencoded parameters.If you type the request on your URL bar on Chrome, it should work :https://wyday.com/limelm/api/rest/?api_key=**********************************&method=limelm.pkey.generate&version_id=*****&email="test@test.com"

I have implemented a simple example on Wix and since then the email is corectly attached to the Serial Key... I don't know what I have changed...