Send test event
Fires asset.test to your webhook_url. First successful test auto-flips webhooks_enabled.
POST
/api/projects/{id}/webhooks/test
Authentication
API Key (cookie: better-auth.session_token)
Path Parameters
id
string
required
path
Example:
"abc123"Responses
200
Test queued
application/jsonok
boolean
REQUIRED
400
Webhook URL not configured
401
Unauthenticated
404
Not found
curl -X POST 'https://motioness.com/api/projects/abc123/webhooks/test'
const response = await fetch('https://motioness.com/api/projects/abc123/webhooks/test', { method: 'POST'});const data = await response.json();console.log(data);
import requestsresponse = requests.post('https://motioness.com/api/projects/abc123/webhooks/test')print(response.json())
200
Response
{ "ok": true}
API Playground
Try this endpoint
POST
/api/projects/{id}/webhooks/test