Skip to main content

Update a task

Update a task

PUT
/api/partners/v1/community/:community_id/renters/:funnel_renter_id/task/:task_id

Request

Example requestPUTapplication/json
$ curl -X PUT \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -d '{ "due_date": "2023-10-05", "task_type": "string", "description": "Call about renewal options", "status": "string", "task_category": 0 }' \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/renters/:funnel_renter_id/task/:task_id"

Response

Example responseJSON200 · application/json
{
"task_id": "string"
}