> For the complete documentation index, see [llms.txt](https://phpfreakbd.gitbook.io/licensepoint-lp-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phpfreakbd.gitbook.io/licensepoint-lp-documentation/dll-class-documentations/redeem-token.md).

# Redeem Token

{% hint style="info" %}
Redeeming a token will add to the users existing time. Tokens can only be redeemed once.
{% endhint %}

```
C# WINFORMS
/* C# WINFORMS */
​
private void Button1_Click() { // Redeem token button event handler

  // The register arguments goes in the order: username, password, token
   bool response = Api.RedeemToken(textBox1.Text, textBox2.Text, textBox3.Text);
   if (response){
   // Redeem token was successful
   }
   else {
   // Redeem Token wasn't a success
   }

​
}
```
