Skip to main content
POST
/
v1
/
platforms
/
me
/
webhooks
/
{endpoint_id}
/
test
Send test webhook
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.keystoneos.xyz/v1/platforms/me/webhooks/{endpoint_id}/test', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "status_code": 123,
  "duration_ms": 123,
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token. See Authentication for details.

Path Parameters

endpoint_id
string<uuid>
required

Response

Successful Response

success
boolean
required
status_code
integer | null
duration_ms
integer | null
error
string | null