Interface CreateStoryLinkParams

Request parameters for creating a Story Link within a Story.

interface CreateStoryLinkParams {
    object_id?: number;
    subject_id?: number;
    verb: "blocks" | "duplicates" | "relates to";
}

Properties

object_id?: number

The unique ID of the Story defined as object.

int64

subject_id?: number

The unique ID of the Story defined as subject.

int64

verb: "blocks" | "duplicates" | "relates to"

How the subject Story acts on the object Story. This can be "blocks", "duplicates", or "relates to".