Success Page

Overview

The client has the option to change the text in success page of Fize modal by using success_page property.

PropertyTypeDefault Value
title_textstringSuccess
body_textstring{{display_name}} successfully linked your account
1542
<html lang="en">
<head>
<script src="https://cdn.getfize.com/sdk/v1.0/getfize.js"></script>
</head>
<body>
  <div id="inline-container"></div>
<script>
       let handler = FIZE.configure({
         client_id: "FIZE_PROVIDED_CLIENT_ID",
         content_config:{
          	 success_page: {
                  title_text: "custom title",
                  body_text: "custom body text"
                },
           },
         display_mode: "inline",
         element_id: "inline-container"
       });   
   </script>
</body>
</html>