curl --request GET \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/task \
--header 'Authorization: Bearer <token>'{
"data": {
"tasks": [
{
"business_id": "<string>",
"status": "pending",
"task_type": "reconnect_account",
"id": "<string>",
"description": "ABC Business Checking",
"first_requested_at": "2023-11-07T05:31:56Z",
"last_requested_at": "2023-11-07T05:31:56Z"
}
],
"counts": [
{
"task_type": "reconnect_account",
"count": 123
}
]
},
"pagination": {
"next_page_token": "<string>",
"previous_page_token": "<string>"
}
}curl --request GET \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/task \
--header 'Authorization: Bearer <token>'{
"data": {
"tasks": [
{
"business_id": "<string>",
"status": "pending",
"task_type": "reconnect_account",
"id": "<string>",
"description": "ABC Business Checking",
"first_requested_at": "2023-11-07T05:31:56Z",
"last_requested_at": "2023-11-07T05:31:56Z"
}
],
"counts": [
{
"task_type": "reconnect_account",
"count": 123
}
]
},
"pagination": {
"next_page_token": "<string>",
"previous_page_token": "<string>"
}
}The access token received from the authorization server in the OAuth 2.0 flow.
Filter tasks by status. Defaults to pending
pending, completed 1 <= x <= 100Successful Response
Show child attributes
Show child attributes
The id of the business
The status of the task.
pending, completed The type of task.
reconnect_account, categorize_transaction, review_personal_transaction, other, request_receipt, request_statement, request_other_document The id of the task
The task description
255"ABC Business Checking"
The first time the task was requested to the business. This is only available for tasks that require business input.
The last time the task was requested to the business. This is only available for tasks that require business input.
Show child attributes