JavaScript
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>" }
Send a test event to verify the endpoint is reachable.
Documentation IndexFetch the complete documentation index at: https://docs.keystoneos.xyz/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.keystoneos.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Auth0 JWT access token. See Authentication for details.
Successful Response