Destination URL
Definition
The Destination URL in Pabbly Hook is the endpoint where webhook data is sent after being received. It is the final target for the data you want to process or store, such as an API or a custom server.Key Points:
- Purpose:
- The Destination URL specifies where the webhook data will be forwarded.
- Example: Sending order data to your CRM or a shipping API.
- Customizable:
- You can set any valid URL as the destination based on your needs.
- HTTP Methods:
- Define how the data is sent (e.g., GET, POST, PUT, PATCH, DELETE).
How to Set the Destination URL:
- Go to Connections in Pabbly Hook.
- Enter a valid URL in the Destination URL field.
- Example: https://api.example.com/webhook
- Choose the HTTP Method (e.g., POST or GET).
- Save the connection to start sending data.
Example Use Case:
You want to send order data to your shipping system.- Destination URL: https://shipping.example.com/create-order
- HTTP Method: POST
- Data Sent:
json
Copy code
{
"order_id": "12345",
"customer_name": "John Doe",
"address": "123 Elm St"
}
Tips:
- Always use HTTPS for secure data transfer.
- Double-check that the URL is correct and active.
- Test the connection to ensure data is sent successfully.
Last edited: