mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
Zulip Hello World integration
Learn how Zulip integrations work with this simple Hello World example!
This webhook is Zulip's official example integration.
{start_tabs}
- 
The Hello World webhook will use the
testchannel, which is created by default in the Zulip development environment. If you are running Zulip in production, you should make sure that this channel exists. - 
{!create-an-incoming-webhook.md!}
 - 
{!generate-webhook-url-basic.md!}
 - 
To trigger a notification using this example webhook, you can use
send_webhook_fixture_messagefrom a Zulip development environment:(zulip-py3-venv) vagrant@vagrant:/srv/zulip$ ./manage.py send_webhook_fixture_message \ > --fixture=zerver/tests/fixtures/helloworld/hello.json \ > '--url=http://localhost:9991/api/v1/external/helloworld?api_key=abcdefgh&stream=channel%20name;'Or, use curl:
curl -X POST -H "Content-Type: application/json" -d '{ "featured_title":"Marilyn Monroe", "featured_url":"https://en.wikipedia.org/wiki/Marilyn_Monroe" }' http://localhost:9991/api/v1/external/helloworld\?api_key=abcdefgh&stream=channel%20name; 
{end_tabs}
{!congrats.md!}
Related documentation
{!webhooks-url-specification.md!}
