Exercise the platform API request path.
GET
/test
const url = 'https://example.com/test';const options = {method: 'GET'};
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://example.com/testEmits a structured service log entry and returns a simple success response. This endpoint is intended for deployment smoke testing only.
Responses
Section titled “ Responses ”The test endpoint was reached.
Media type application/json
object
success
required
boolean
Example
{ "success": true}