Activation Request and Response Files

Is there an option in the Web API to specify a different filename for the activation request and activation response files? It was suggested by a potential client that it might be helpful to differentiate them by product (for example, if the customer has two different pieces of software that they're activating at about the same time). Examples: Product1_ActivationRequest.xml and Product1_ActivationResponse.xmlvsProduct2_ActivationRequest.xml and Product2_ActivationResponse.xml

You can deliver files using the web API using any filename you want. There's absolutely no limitation to that.

As you can see from the web API call all that is returned is an XML file: https://wyday.com/limelm/help/api/limelm.pkey.manualActivation/

You actually have to "create the file" to deliver to the customer. See the PHP or ASP.NET examples.

Thanks, I decided to have the offline deactivation create a url link as well as the request file. The user copies the url link and the request file to a connected computer. When he clicks on the url link, it will pass in the product's 'prefix' string along with the url.

ex: http://mycompany.com/mymanualactivationpage.php?progid=Product2

The sample manual activation php script was altered to read the passed-in progid and prepend it to the ActivationResponse.xml filename. This gives them the product-specific response file I was after (ex. Product2ActivationResponse.xml).