Interface PostingLiveInput

interface PostingLiveInput {
    broadcastId: string;
    caption?: string;
    cover: Buffer;
    disableComments?: boolean;
    location?: PostingLocation;
    sharePreviewToFeed: boolean;
    usertags?: PostingUsertag[];
    xsharing_user_ids?: string[];
}

Properties

broadcastId: string

At the moment of implementation you can not share live video if it is less than 1 minute long.

caption?: string
cover: Buffer

JPEG cover image

disableComments?: boolean
location?: PostingLocation
sharePreviewToFeed: boolean

Whether share preview to feed or not

usertags?: PostingUsertag[]
xsharing_user_ids?: string[]

I can not tell for sure what does it mean, but in my case there were 3 items. And account from where posting was executed was followed by 2 users, and following 1 user. I assume it could be some sort of special notifications. Let's experiment with it.