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/json
ok 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}
Ask a question... ⌘I