Skip to main content

Create a Task

Create a task and assign it to team or agent

POST
/api/partners/v1/community/:community_id/renters/:funnel_renter_id/task/

Request

Example requestPOSTapplication/json
curl -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -d '{
      "due_date": "2025-10-05",
      "task_type": "FOLLOW_UP",
      "group_assignment_assignee": false,
      "assignee_funnel_user_id": 0,
      "description": "Call about renewal options",
      "task_category": 0
    }' \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/renters/:funnel_renter_id/task/"

Response

Example responseJSON200 · application/json
{
  "task_id": 456,
  "message": "Successfully created task"
}