Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 573 Bytes

agenda_item.update.md

File metadata and controls

25 lines (22 loc) · 573 Bytes

Payload

{
// Required
    id: Id;

// Optional
    item_number: string;
    comment: string;
    closed: boolean;
    type: string;
    duration: number; // in minutes
    weight: number;
    tag_ids: Id[];
    moderator_notes: HTML;
}

Action

Updates the agenda item. tag_ids must be from the same meeting. The type attribute of one agenda_item must be one of [common, internal, hidden].

Permissions

The request user needs agenda_item.can_manage_moderator_notes to set moderator_notes and agenda_item.can_manage for all other fields.