@apple/app-store-server-library
    Preparing search index...

    Interface UploadMessageRequestBody

    The request body for uploading a message, which includes the message text and an optional image reference.

    UploadMessageRequestBody

    interface UploadMessageRequestBody {
        body: string;
        bulletPoints?: BulletPoint[];
        header: string;
        headerPosition?: string;
        image?: UploadMessageImage;
    }
    Index

    Properties

    body: string

    The body text of the retention message that the system displays to customers.

    Maximum length: 144 characters

    body

    bulletPoints?: BulletPoint[]

    An optional array of bullet points.

    BulletPoint

    header: string

    The header text of the retention message that the system displays to customers.

    Maximum length: 66 characters

    header

    headerPosition?: string

    The position of header text, which defaults to placing header text above the body.

    headerPosition

    The optional image identifier and its alternative text to appear as part of a text-based message with an image.

    UploadMessageImage