Skip to main content
GET
/
api
/
v1
/
alerts
/
{id}
Get alert
curl --request GET \
  --url https://shelfforce.ai/api/v1/alerts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "generation_failed",
    "severity": "critical",
    "title": "<string>",
    "message": "<string>",
    "status": "unread",
    "createdAt": "2023-11-07T05:31:56Z",
    "sourceType": "generation",
    "sourceId": "<string>",
    "placeId": "<string>",
    "snoozedUntil": "2023-11-07T05:31:56Z",
    "actionedBy": "<string>",
    "actionedAt": "2023-11-07T05:31:56Z",
    "isPinned": true,
    "metadata": {},
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key with sf_live_ prefix. Pass as Authorization: Bearer sf_live_...

Path Parameters

id
string
required

Alert ID

Response

Alert details.

data
object