Skip to main content
POST
/
api
/
ext
/
v1
/
backdoor
/
webhook
cURL
curl --request POST \
  --url https://staging-api.covver.io/api/ext/v1/backdoor/webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "webhookEventType": "OrderConfirmed",
  "orderId": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.covver.io/llms.txt

Use this file to discover all available pages before exploring further.

This only works in our development environment

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
webhookEventType
enum<string>
required
Available options:
OrderConfirmed,
OrderFulfilled,
OrderPlaced
orderId
string
required

Response

object | null

Default Response

success
boolean
required