Skip to main content

PUT

Thread (Update)

/api/v1/app/thread/update/<int:thread_id>/

Endpoint

/api/v1/app/thread/update/<int:thread_id>/

Headers

{
    "Content-Type": "application/json",
    "Authorization": "Bearer <str:token>"
}

Body

{
    "title": "<str:title>",
    "panel_id": "<int:panel_id>",
    "meta": {json}
}

Response

{
    "id": "<int:id>",
    "status": "success",
    "message": "Thread updated successfully",
    "title": "<str:title>",
    "panel_id": "<int:panel_id>",
    "created_by": "<str:created_by>",
    "created_on": "<datetime:created_on>",
    "updated_at": "<datetime:updated_at>",
    "meta": {json}
}