feedbackTask:report task result
Feedback Task Result
We rely on reports to automatically analyze the quality of tokens issued by our API. These reports are processed automatically, and our team takes proactive steps to enhance token quality, such as updating the system for new tasks, improving grids, and more.
Example request
POST https://api.capsolver.com/feedbackTask
Host: api.capsolver.com
Content-Type: application/json
{
"clientKey":"YOUR_API_KEY",
"appId": "APP_ID",
"taskId": "$taskId",
"result": {
"invalid": true, //true,false Whether the results of task processing pass validation
"code": 1001,
"message": "invalid token"
}
}
Request Parameters
Parameters | Type | Required | Description |
---|---|---|---|
clientKey | String | Required | Client account key, can be found in dashboard |
appId | String | Optional | Your Developer appId, Apply in dashboard’s developer section |
taskId | String | Required | Your task id |
result | Object | Required | Task result object |
result.invalid | Boolean | Required | true or false |
result.code | Integer | Optional | code of task result |
result.message | String | Optional | invalid token messages |
Response Structure
Parameters | Type | Description |
---|---|---|
errorId | Integer | Error message: 0 - no error 1 - with error |
errorCode | String | Error code table |
errorDescription | String | Error description |
message | String | returns the messages |