diff --git a/Writerside/p.tree b/Writerside/p.tree
index 5f2650a..aa19fcf 100644
--- a/Writerside/p.tree
+++ b/Writerside/p.tree
@@ -17,4 +17,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/Writerside/redirection-rules.xml b/Writerside/redirection-rules.xml
new file mode 100644
index 0000000..751f381
--- /dev/null
+++ b/Writerside/redirection-rules.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+ Created after removal of "Snippets" from ProWallet
+ Snippets.html
+
+
+ Created after removal of "Snippets" from ProWallet
+ Snippets.html
+
+
\ No newline at end of file
diff --git a/Writerside/topics/AboutProWallet.md b/Writerside/topics/AboutProWallet.md
index dfbce0f..94bc217 100644
--- a/Writerside/topics/AboutProWallet.md
+++ b/Writerside/topics/AboutProWallet.md
@@ -27,6 +27,6 @@ Effortlessly integrate %product_name% services into your projects with our SDK a
Our toolkit enhances the integration of %product_name% by offering a comprehensive suite of libraries specifically designed to be intuitive and user-friendly for developers.See more
-Stay seamlessly informed about updates on your transactions through our notification tools. Our WebHooks empowers you to effortlessly integrate and leverage real-time transaction updates, ensuring you are always in the know. See more
+Stay seamlessly informed about updates on your transactions through our notification tools. Our WebHooks empowers you to effortlessly integrate and leverage real-time transaction updates, ensuring you are always in the know. See more
\ No newline at end of file
diff --git a/Writerside/topics/Snippets.topic b/Writerside/topics/Snippets.topic
new file mode 100644
index 0000000..e326f6d
--- /dev/null
+++ b/Writerside/topics/Snippets.topic
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+ {
+ "event": "orders.status",
+ "id" : "e1a3b4c5-6d7e-8f9a-0b1c-2d3e4f5a6b7c",
+ "payload": {
+ "order": {
+ "referenceId": "G1446845368",
+ "currentStatus": "CHARGE_PENDING"
+ }
+ }
+ }
+
+
+
\ No newline at end of file
diff --git a/Writerside/topics/Webhook-events.md b/Writerside/topics/Webhook-events.md
new file mode 100644
index 0000000..ab85d8f
--- /dev/null
+++ b/Writerside/topics/Webhook-events.md
@@ -0,0 +1,22 @@
+# Webhook events
+
+**%product_name%** sends webhooks to notify your system about the following events:
+
+- [Order events](Webhook-events.md#order-events)
+
+## Order events
+
+
+
+ Event |
+ Trigger |
+ Sample |
+
+
+ order.created |
+ When an order is created |
+
+
+ |
+
+
\ No newline at end of file
diff --git a/Writerside/topics/Webhooks.md b/Writerside/topics/Webhooks.md
new file mode 100644
index 0000000..b1ca215
--- /dev/null
+++ b/Writerside/topics/Webhooks.md
@@ -0,0 +1,40 @@
+# Webhooks
+
+**%product_name%** supports webhooks, which allow you to receive real-time HTTP POST notifications when certain events occur in **%product_name%**. Webhooks are particularly useful for integrating **%product_name%** with your own systems, or for integrating with third-party services.
+
+## How to use
+
+To use webhooks, you need add a webhook subscription to your **%product_name%** account. You can do this by using [Webhook management](Webhook-management.md) endpoints.
+
+> The webhooks will send the notification to the URL using the `POST` HTTP verb
+>
+{style="note"}
+
+## Messages
+
+Webhooks send messages to the URL you specify using the `POST` method. The messages are in JSON format and contain information about the event that triggered the webhook.
+
+For example, when an order is paid by the customer, an event that let your system know that the order has been paid.
+
+When your system receive the message, it must verify that the notification message:
+
+- Comes from **%product_name%**
+- Was not altered in transit
+- Was intended for your organization
+- Has a valid format
+
+Then, the endpoint that attends the URL subscribed must respond with a `200 OK` status code to acknowledge the message.
+
+### Format
+
+The message format is as follows:
+
+
+
+> The payload content may vary depending on the event that triggered the webhook.
+>
+{style="tip"}
+
+## Security
+
+For security, message are sent over HTTPS.
\ No newline at end of file