Axinom Mosaic Libraries
    Preparing search index...

    Interface ImageUploadWebhookRequestPayload

    The request payload schema for Image Upload webhook. Used by https://docs.axinom.com/services/image/api/webhooks#image-upload

    interface ImageUploadWebhookRequestPayload {
        format: string;
        has_alpha: boolean;
        height: number;
        image_name: string;
        image_type: string;
        size: number;
        width: number;
    }
    Index

    Properties

    format: string

    Format of the image. e.g. jpeg, png, webp, gif, svg

    has_alpha: boolean

    Boolean indicating the presence of an alpha transparency channel

    height: number

    Height of the image in pixels

    image_name: string

    Original image name

    image_type: string

    Type of the image as defined in the Image Service. e.g. MOVIE_COVER

    size: number

    Size of the image in bytes

    width: number

    Width of the image in pixels