interface GetAttachments {
    expand?: string | string[] | ServerParameters.GetAttachments.Expand[];
    filename?: string;
    id: string | number;
    limit?: number;
    mediaType?: string;
    start?: number;
}

Properties

expand?: string | string[] | ServerParameters.GetAttachments.Expand[]

A comma separated list of properties to expand on the Attachments returned. Optional.

filename?: string

(optional) filter parameter to return only the Attachment with the matching file name. Optional.

id: string | number
limit?: number

How many items should be returned after the start index. Optional.

mediaType?: string

(optional) filter parameter to return only Attachments with a matching Media-Type. Optional.

start?: number

The index of the first item within the result set that should be returned. Optional.

Generated using TypeDoc v0.25.12