Skip to main content
New Contact Webhook
David Isak Hansen avatar
Written by David Isak Hansen
Updated over a week ago

Knips uses a webhook API endpoint to receive new contacts to a feed. Each feed has its own unique webhook you can call with a POST request.

https://webhook.knips.app/some-id

You can test what the webhook will save by inserting test/ like this in the URL

https://webhook.knips.app/test/some-id

Body:

{ 
"source": "website.com",
"name": "Ola Nordmann",
"email": "[email protected]",
"phone": "+4790504020",
"note": "My message here",
"tags": ["Byggetrinn 2"]
}

Header:
Content-Type application/json

You don’t need any authentication to call this endpoint, as this webhook is created per feed.

If you have any questions, please feel free to reach out to [email protected]

Did this answer your question?