Skip to main content

Filter tasks

Filter tasks for a community

GET
/api/partners/v1/community/:community_id/tasks/

Request

Example requestGET
$ curl -X GET \
    -H "Authorization: Bearer YOUR_API_KEY" \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/tasks/"

Response

Example responseJSON200 · application/json
{
"items": [
{
"task_id": "123",
"due_date": "2023-10-05",
"status": "string",
"task_type": "string",
"funnel_renter_id": 0,
"funnel_team_id": 0,
"assignee_funnel_user_id": 0,
"description": "Call about renewal options",
"created_at": "2023-10-04T00:02:23",
"task_category": 0
}
],
"page": 0,
"total_pages": 0,
"total_items": 0
}