Fize SDK Methods
Once you initialize the Fize SDK, you can use the Fize Methods after successful loading of your website.
Fize methods:
- configure
configure
This method accepts the client_id as required parameter to configure the Fize SDK.
Property | Type | Required | Description |
---|---|---|---|
client_id | string | Yes | Fize will provide client_id to access Fize SDK. |
Note: It also accepts the SDK Configurations, SDK Callbacks and SDK Macros.
SDK Configurations
SDK Callbacks
SDK Macros
<html lang="en">
<head>
<script src="https://cdn.getfize.com/sdk/v1.0/getfize.js"></script>
</head>
<body>
<script>
(function () {
var handler = FIZE.configure({
client_id: "FIZE_PROVIDED_CLIENT_ID",
launch_immediate: true, // fize configuration to open fize modal immediate loading of SDK
});
})();
</script>
</body>
</html>
Updated 7 months ago
What’s Next