cURL
curl --request DELETE \ --url https://sandbox.tight.com/v6/tasks/{id} \ --header 'Authorization: Bearer <token>'
{ "result": "SUCCESS", "data": { "id": "tsk_123456789", "name": "Transaction Review Required", "description": "You have 5 transactions that require review", "shortDescription": "Stay up-to-date on 5 transactions", "priority": "HIGH", "type": "TRANSACTION_REVIEW", "dismissable": "true", "status": "ACTIVE", "actionLink": "www.example.com" }, "error": [ { "type": "UNKNOWN_ERROR", "message": "<string>", "param": "<string>" } ] }
Delete (dismiss) a task for the given id. Only dismissable tasks can be deleted.
Bearer authentication header of the form Bearer <token>, see Authentication for more detail.
Bearer <token>
The id of the task
Success
The result of the action performed.
SUCCESS
FAILURE
The data generated by the action performed.
Show child attributes