πŸ’¬Comments

Comments API Documentation

All available routes for Comments is written down below :

Comment List

GET /panel/comment/list

Return Comment List as Datatable


{
    // Response
}

Comment Approve

PATCH /comment/approve/{id}

Comment Approve transaction.

Path Parameters

NameTypeDescription

*

integer

Comment Id


{
    // Response
}

Comment Reject

PATCH /comment/reject/{id}

Comment Reject transaction.

Path Parameters

NameTypeDescription

*

integer

Comment Id


{
    // Response
}

Comment Delete

DELETE /panel/comment/delete/{id}

Delete Comment by Id

Path Parameters

NameTypeDescription

*

integer

Comment Id


{
    // Response
}

Last updated