Workflow webhook
Workflow webhook definition

// Assuming the next step is an Upload step of type 'Webhook' let webhookUrl = Workflow.createNextWebhookUrl() // Use an imaginary payment provider to create a payment and set the webhook URL: // This payment provider will call the webhook URL when the payment is completed Http.post('https://payment-provider.com/create-payment', { amount: 100, currency: 'EUR', webhookUrl: webhookUrl })

Last updated