How to add generete PDF option to an Embedded URL in a website

Hello @Farzana_Mohammed , thanks for posting into the community.

This question is answered here.

Basically there is a setting under the toolbar options which allows you to enable this.

contentOptions .parameters.toolbarOptions.export = True

const contentOptions = {
                    parameters: [
                        ...your parameters here

                    ],
                    locale: "en-US",
                    sheetOptions: {
                        initialSheetId: '<YOUR_SHEETID>',
                        singleSheet: false,                        
                        emitSizeChangedEventOnSheetChange: false,
                    },
                    toolbarOptions: {
                        export: false,
                        undoRedo: false,
                        reset: false
                    },
                    attributionOptions: {
                        overlayContent: false,
                    },                    
                };
                const embeddedDashboardExperience = await embeddingContext.embedDashboard(frameOptions, contentOptions);

Hope it helps, please mark this solution as solved if that’s the case also to help other members of the community., otherwise let us know.