Skip to main content

Create an AR and Task on Prospect

Create an action_required and task in funnel and disable third party vla, if specified in request

POST
/api/partners/v1/community/:community_id/renters/:funnel_renter_id/action-required/

Request

Example requestPOSTapplication/json
curl -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -d '{
      "funnel_last_communication_id": "string",
      "disable": false,
      "due_date": "2023-05-16T14:30:00-04:00",
      "task_description": "string"
    }' \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/renters/:funnel_renter_id/action-required/"

Response

Example responseJSON200 · application/json
{
  "message": "Successfully added task"
}