Skip to main content

POST

Thread (Create)

/api/v1/app/thread/create/

Endpoint

/api/v1/app/thread/create/

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 created 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}
}