Skip to main content

Webhooks API

Provider webhook ingress for Stripe, WaveSpeed, and future providers.

How To Use This API Group

Use this group when a client needs to work with webhooks behavior in Veoveo. Start with the route list, choose the method that matches the user task, then open the API reference for exact parameters and schemas.

Authentication And Scope

Most workspace routes require a signed-in session or an integration token with access to the target workspace. Keep the workspace reference and resource references from prior responses or visible app routes.

Current Routes

MethodPathSummaryAuthSurface
POST/api/webhooks/providers/{provider_ref}Receive provider webhookprovider_webhook_signatureprovider_webhook
POST/api/webhooks/providers/stripeReceive Stripe webhookprovider_webhook_signatureprovider_webhook
POST/api/webhooks/providers/wavespeedReceive Wavespeed webhookprovider_webhook_signatureprovider_webhook

Representative Request

This example uses one webhooks route. Replace bracketed path values with ids from prior API responses and use the reference for the exact request body and response schema.

curl -sS \
-H "Authorization: Bearer <token>" \
-X POST \
-H "Content-Type: application/json" \
--data '<request-json-from-generated-reference>' \
"https://veoveo.ai/api/webhooks/providers/{provider_ref}"

Response Review

  • Check status codes and structured error details before retrying.
  • Treat returned identifiers as the values to use in follow-up calls.
  • For routes that create or update workspace facts, review the affected artifact, event, link, bot, or operation in the app.

Media To Add

  • Table: common webhooks calls with required references, expected result, and next review action. It helps developers choose the right route quickly. Source: this route group and the API reference.