Skip to main content

Moment

Moments generally come from integrations, but we encourage you to use this endpoint to create moments from tooling inside your organization!

warning

Creating a moment of type page does not page anyone. To do that, use the Page endpoint.

Add a moment

POST /moment/<token>

Use this endpoint to create a moment in Hotpot. The value for token is available under Teams > Team Settings > Webhooks in Hotpot. Existing webhooks endpoints are listed here. You can generate a new one by clicking New webhook at the top left.

Moment creation is asynchronous; use the Request endpoint to check its processing status.

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <your API key>

Parameters

NameTypeDescription
namestringA name for your moment, like "500 error in production".
typestringThe type of moment, one of: Alert, Incident, Near-miss, or Page.
descriptionstringA longer description of the moment, to provide more context and assist in triage.
prioritystringPriority of the moment, one of: low, medium (the default), or high.

Response

{
"hotpot_request_id": "f1e5ae0a-f90c-4dac-affa-2eda897f5c3f",
"response": {
"success": true,
"message": "Your request has been queued."
}
}