REST API integration
Make Webhook REST API integration for Draftbit
Trigger Make scenarios with custom webhooks
What is Make Webhook?
Make custom webhooks let apps send JSON payloads into scenarios. Use the webhook host from your Make scenario URL, such as hook.us1.make.com.
Use Make Webhook with Draftbit
- Built-in endpoints: Trigger webhook, Trigger webhook with query.
- Bind any Make Webhook endpoint to a screen, list, form, or AI agent action.
- Authentication is configured once per app — secrets stay on the server.
- Add custom request and response transforms without forking Make Webhook's client library.
Example
make-webhook-example.ts // Example: fetch from Make Webhook
// Make Webhook doesn't require an auth header for this endpoint —
// some providers authenticate via a query param or app-level token.
// Check Make Webhook's docs for auth requirements on protected endpoints.
const response = await fetch("https://{make_webhook_host}/{webhook_id}");
const data = await response.json();Use cases
- Trigger downstream workflows from app events
- Connect form submissions to a Google Sheet or CRM
- Stitch together third-party services without writing glue code
Authentication
Add any required auth headers when you connect Make Webhook in Draftbit. Secrets stay on the server side.
Use Make Webhook in a Draftbit app today
Start free, connect Make Webhook in minutes, and ship with AI agents that know how to use it.
Frequently asked questions
What is the Make Webhook REST integration?
Make custom webhooks let apps send JSON payloads into scenarios. Use the webhook host from your Make scenario URL, such as hook.us1.make.com.
How do I connect Make Webhook to a Draftbit app?
Go to Integrations and then REST APIs in your Draftbit app and pick Make Webhook from the catalog. Fill in any base URL variables, such as a project ID or host, and the endpoints are available across your screens and to the AI agents while you build. The preconfigured calls need no auth header.
Does Make Webhook require authentication?
The preconfigured Make Webhook endpoints do not need an auth header. Some providers authenticate with a query parameter or an app-level token, and others are public read-only APIs, so check the Make Webhook docs before you call a protected endpoint. The preconfigured endpoints include Trigger webhook, Trigger webhook with query.
What can I build with Make Webhook and Draftbit?
Most teams use Make Webhook as a workflow automation platform for a mobile or web app. You might use Make Webhook to trigger downstream workflows from app events, or to connect form submissions to a Google Sheet or CRM.