Source type

SharpSpring Source Configuration

SharpSpring sources receive form postback payloads at a stable FastHook URL for lead capture and routing.

SHARPSPRINGPOSTWebhook URL SecretEmail and messaging
SharpSpring sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.SharpSpringProviderPOSTRequestFastHookSource URLSHARPSPRINGProvider credentialheader authVerify before queue401 on auth failure405 on wrong methodAcceptedRequestverified: trueConnections route the accepted request to destinationsFilters, transformations, retries, replay, and destination signatures stay downstream from source verification.

SharpSpring configuration

Create a SharpSpring source, keep POST enabled, and provide the configured Webhook URL Secret values for provider signature. FastHook uses these settings to validate each SharpSpring delivery before it enters the routing workflow.

Source Type

SHARPSPRING

Allowed methods

POST

Authentication

Provider signature

Credential fields

Webhook URL Secret

SharpSpring source config
{
  "type": "SHARPSPRING",
  "config": {
    "auth_type": "PROVIDER_SIGNATURE",
    "auth": {
      "provider": "SHARPSPRING",
      "webhook_signing_secret": "long-random-url-secret",
      "query_parameter_name": "secret"
    },
    "allowed_http_methods": ["POST"]
  }
}

SharpSpring request contract

FastHook checks a secret query parameter and removes it from stored request metadata before storing the postback.

POST

SharpSpring headers

Preserve the source authentication values when sending SharpSpring test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.

The SharpSpring source does not require provider-specific signature headers. Use its configured source auth fields and inspect rejected requests if SharpSpring does not match the saved credentials.

SharpSpring setup

  1. Create a SharpSpring source and choose a long random Webhook URL Secret.
  2. Append ?secret=YOUR_SECRET to the Source URL and use that full value as the form Postback URL.
  3. Submit a test lead and confirm the received field names before mapping downstream systems.
  4. Keep the URL secret private because SharpSpring does not publish a standard payload signature for form postbacks.

Continue with SharpSpring