# Report Bad Solution \[/reportIncorrectRecaptcha]

{% hint style="danger" %}
This currently is only available for Recaptcha task types. Automatic token validation and accurate feedback submissions are critical to the accuracy of the service we provide.&#x20;
{% endhint %}

Full Rest API Endpoint: `https://captcha.datalabs.net/reportIncorrectRecaptcha`

## Request Structure

<table><thead><tr><th width="184">Parameters</th><th width="109">Required</th><th width="370">Description</th></tr></thead><tbody><tr><td>clientKey</td><td>true</td><td>Your accounts private API Key.</td></tr><tr><td>taskId</td><td>true</td><td>The <code>taskId</code> parameter.</td></tr></tbody></table>

```json
POST https://captcha.datalabs.net/reportIncorrectTokenCaptcha
Host: captcha.datalabs.net
Content-Type: application/json

{
  "clientKey": "DATALABS_API_KEY",
  "taskId": "1234567890"
}
```

## Response Structure

<table><thead><tr><th width="184">Parameters</th><th width="720">Description</th></tr></thead><tbody><tr><td>errorId</td><td>0: Without error.<br>1: Error with request.</td></tr><tr><td>errorCode</td><td>Short code for error type.</td></tr><tr><td>errorDescription</td><td>More thorough description of the error.</td></tr><tr><td>status</td><td>The current status of the task.</td></tr></tbody></table>

## Example Responses

```json
{
    "errorId": 16,
    "errorCode": "ERROR_NO_SUCH_CAPCHA_ID",
    "errorDescription": "Task you are requesting does not exist in your current task list or has been expired."
}
```

```json
{
    "errorId":0,
    "status":"success"
}
```
