diff --git a/docs/resources/control-flow/backend-logic/api/create-test-api-calls.md b/docs/resources/control-flow/backend-logic/api/create-test-api-calls.md
index a26cafdd..485f5e4e 100644
--- a/docs/resources/control-flow/backend-logic/api/create-test-api-calls.md
+++ b/docs/resources/control-flow/backend-logic/api/create-test-api-calls.md
@@ -8,26 +8,57 @@ sidebar_position: 2
# Create & Test API Call
-On this page, you will learn how to [create](#creating-api-calls) and [test](#testing-api-calls) the API call.
+In this guide, you'll learn how to create and test API calls in FlutterFlow. Integrating API calls allows your app to interact with external services, bringing in real-time data and functionality that enhances your app's capabilities.
-## Creating API calls
+## Create API Call
+To use an API in your app, you first need to create the API call in FlutterFlow.
-To use an API in your app, first, you have to create the API Call.
+Simply select API Calls from the left navigation menu, click the **+ Add** button, and choose **Create API Call**. Enter an **API Call Name**, select the **Method Type** (GET, POST, DELETE, PUT, or PATCH), and input the API URL of the service you wish to access.
-Follow the steps below to create an API Call:
+
+
+
+
+
+
+:::tip[Method Types]
+The Method Type specifies the type of operation the API call will perform. Here’s a breakdown of common method types:
+
+- **GET:** Retrieves data from the server.
+- **POST:** Sends data to create or update a resource.
+- **DELETE:** Removes a resource from the server.
+- **PUT:** Updates or creates a resource with full data.
+- **PATCH:** Partially updates a resource.
+:::
-1. Select **API Calls** from the left [Navigation Menu](../../../../intro/ff-ui/builder.md#navigation-menu).
-2. Click on the **+ Add** button and select **Create API Call**.
-3. Enter the **API Call Name**.
-4. Select the **Method Type**: *GET, POST, DELETE, PUT, or PATCH*.
-5. Enter the **API URL** of the service you want to access.
+### Dynamic API URLs
-:::note
If you want to use a dynamic URL, for example, `` where 2 is dynamic and `` where 5 is dynamic:
1. Replace the hard-coded value with a meaningful name inside the brackets (e.g., from `https://reqres.in/api/users/2`to `https://reqres.in/api/users/[user_id]`).
2. And then, [**create a new variable**](rest-api.md#creating-variables) with the same name you provided inside the brackets.
-:::
The further instructions are based on the **Method Type** you selected.
@@ -164,35 +195,13 @@ com/embed/4cd816e67a044604b80fb83748312a03?sid=e4ffd651-f97c-4478-94a4-e81f0931e
-## Trigger API calls [Action]
+## API Call [Action]
-Using this action, you can trigger the API Call defined in your project.
+Once the API calls are defined in your FlutterFlow project, you can use them wherever needed.
-
-
-
-
+Open the Action Flow Editor on the widget where the API call should be triggered. After selecting the desired Action Trigger, search for "API Calls" in the Actions dropdown and select the API call you want to use.
+
+
:::tip
You can also add the API Call as a [**Backend Query**](../backend-query/api-call-query.md) that gets triggered automatically when the page or widget is loaded on the screen.
diff --git a/docs/resources/control-flow/backend-logic/api/imgs/use-api-call.png b/docs/resources/control-flow/backend-logic/api/imgs/use-api-call.png
new file mode 100644
index 00000000..ead43366
Binary files /dev/null and b/docs/resources/control-flow/backend-logic/api/imgs/use-api-call.png differ
diff --git a/docs/resources/ui/widgets/widget-properties.md b/docs/resources/ui/widgets/widget-properties.md
index 032b1c47..4152a1bd 100644
--- a/docs/resources/ui/widgets/widget-properties.md
+++ b/docs/resources/ui/widgets/widget-properties.md
@@ -8,6 +8,34 @@ sidebar_position: 2
In FlutterFlow, the Properties Panel on the right helps you configure and manage your widgets. It opens when you click on a widget or [component](../components/intro-components.md) in the [**Widget Tree**](../widgets/intro-widgets.md#widget-tree).
+Here's a quick demo showing how to add a widget to the canvas, which opens the widget properties panel on the right, allowing you to update the widget's properties:
+
+
+
+
+
The panel is divided into sections, each focusing on settings specific to the selected widget. The available options may vary depending on the widget type, with additional advanced configurations available for further customization.
