🎬Channels

Channels API Documentation

All available routes for Channels is written down below :

Channel List

GET /panel/channel/list

Return Channel List as Datatable


{
    // Response
}

Channel Edit

GET /panel/channel/edit/{id}

Returns Channel By Id

Path Parameters

NameTypeDescription

*

integer

Channel Id


{
    // Response
}

Channel Update

POST /panel/channel/update/{id}

Updates channel by id

Path Parameters

NameTypeDescription

*

integer

Channel Id


{
    // Response
}

Feature/Unfeature Channel

GET /panel/channel/change-featured/{id}/{feature}

Feature or Unfeature a Channel by Id

Path Parameters

NameTypeDescription

*

integer

Channel Id

feature*

boolean

Feature it or un feature (true or false)


{
    // Response
}

Enable/Disable Channel

GET /panel/channel/change-status/{id}/{status}

Enable or disable a Channel by Id

Path Parameters

NameTypeDescription

*

integer

Channel Id

status*

boolean

Enable it or unable (true or false)


{
    // Response
}

Delete Channel

DELETE /panel/channel/delete/{id}

Delete Channel by Id

Path Parameters

NameTypeDescription

*

integer

Channel Id


{
    // Response
}

Last updated