Inspect the webhook
GET
/bot/webhook
const url = 'https://play-api.jc.id.lv/bot/webhook';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://play-api.jc.id.lv/bot/webhook \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”The registered webhook (the secret is never shown again).
Media typeapplication/json
object
url
required
string format: uri
verifiedAt
required
string format: date-time
Examplegenerated
{ "url": "https://example.com", "verifiedAt": "2026-04-15T12:00:00Z"}No webhook registered.
Webhooks disabled on this server.