# Video Publish/Unpublish
Publish/Unpublish single video in project
Reference API link: https://api.mov.mediaoutcast.com/documentation#/Videos/video_publish (opens new window)
PATCH
/api/videos/{video_id}/publish
| KEY | TYPE | DESCRIPTION | 
|---|---|---|
| published | string | true false | 
Request body:
{
    "published": true
}
Response:
{
  "message": "Video published.",
  "published": true
}