Automatisering & Integraties

Duw uw gegevens automatisch overal naartoe.

Pushers leveren PlusClouds-gegevens — zoals nieuwe LeadOcean-overeenkomsten — naar een externe bestemming op het moment dat ze plaatsvinden. Configureer er één keer een; elk daaropvolgend overeenkomend evenement wordt automatisch geleverd.

Hoe het werkt

Maak een Pusher aan via de API, kies een driver, en PlusClouds verzorgt de leveringswachtrij, herhalingen en logging voor u.

Ondersteunde drivers

Generic Webhook

Send a signed HTTP request to any URL you control — build your own receiver in any language.

provider: "default"

n8n

Native support for n8n automation workflows, with test mode and a configurable timeout.

provider: "n8n"

Capsule CRM

Push new leads directly into Capsule CRM as organizations, tagged automatically.

provider: "capsule_crm_organization"

Generic CRM (customer + deal)

Compatible with any CRM that exposes a simple customers/deals REST API.

provider: "leadgen"

Maak een Pusher

Eén POST-verzoek naar /commons/pushers registreert een nieuwe bezorgbestemming.

POST /commons/pushers
Authorization: Bearer <token>
Content-Type: application/json

{
  "name": "Send new LeadOcean matches to n8n",
  "provider": "n8n",
  "url": "https://your-n8n-instance.com/webhook/leadocean",
  "method": "POST",
  "require_auth": "true",
  "token": "<your-n8n-webhook-token>",
  "auth_header": "Authorization",
  "provider_metadata": "{\"is_test\": false, \"timeout\": 30}"
}

Veld aanvragen

nameA label for this Pusher (shown in your dashboard).
providerWhich driver to use — see the provider keys above.
urlDestination URL the driver delivers to (not used by CRM-specific drivers that call a fixed API).
methodHTTP method used for generic webhook deliveries (e.g. POST).
tokenAuth token/API key for the destination (e.g. your Capsule CRM API token).
auth_headerHeader name to send the token in — defaults to a Bearer Authorization header if omitted.
require_authWhether the destination requires authentication at all.
provider_metadataJSON string of driver-specific options (e.g. n8n's is_test/timeout).

Leveringen debuggen

Elke bezorgpoging wordt geregistreerd — inspecteer status, herhalingen en payloads via het Pusher Logs-eindpunt.

Bekijk Pusher-eindpunten in de API-referentie →

Automatisering FAQ