Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.29 KB

webhooks.md

File metadata and controls

37 lines (27 loc) · 1.29 KB

🪝 Webhooks

In this chapter you will learn how to setup webhooks on UP42 via the Python SDK. When a new order or job is finished, the webhook sends a signal to a selected HTTPS url which can be used to e.g. trigger additional operations on your end. Also see the full webhook documentation and accompanying blogpost.

Authenticate

First connect with UP42 as explained in the authentication chapter.

import up42
up42.authenticate(project_id="your project ID", project_api_key="your-project-API-key")

Manage existing webhooks

Query existing webhooks in your UP42 workspace to modify, test or delete the resulting webhook object, see the webhook code reference for all available functionality.

webhooks = up42.get_webhooks()
webhooks[0].trigger_test_event()

Create a new webhook

events = up42.get_webhook_events() #[e.g. "job.status", "order.status"]
webhook = up42.create_webhook(name="new-webhook", 
                              url="https://receiving-url.com", 
                              events=events, 
                              active=True)
webhook.trigger_test_event()