Get user's alerts
Prod Env
https://api.sqabl.com/v1
Prod Env
https://api.sqabl.com/v1
GET
/alerts
Request
Query Params
pageSize
integer
optional
lastEvaluatedKey
string
optional
Header Params
Authorization
string
required
Example:
Bearer some-random-token
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sqabl.com/v1/alerts?pageSize&lastEvaluatedKey' \
--header 'Authorization: Bearer some-random-token'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"success": true,
"statusCode": 200,
"data": [
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-follower",
"read": true,
"dateCreated": "2024-10-07 16:26:42.125Z",
"user": {
"id": "cm22ydxx6000108mgedm7d313",
"displayName": "Hiseous Hiseous",
"imageSrc": "https://image.url/"
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-arena-invite",
"...": "...",
"user": {
"...": "..."
},
"invitedAsModerator": true,
"arena": {
"id": "cm22ydxx6000108mgedm7d313",
"name": "Arena Name",
"coverImageSrc": "https://image.url/",
"guidelines": "Some arena guidelines"
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-post-flame",
"...": "...",
"user": {
"...": "..."
},
"post": {
"id": "cm22ydxx6000108mgedm7d313",
"type": "debate",
"description": "Perceived end knowledge certainly day sweetness why cordially. Ask quick six seven offer see among. Handsome met debating sir dwelling age material."
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-post-participant",
"...": "...",
"user": {
"...": "..."
},
"post": {
"...": "..."
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-post-comment",
"...": "...",
"user": {
"...": "..."
},
"post": {
"...": "..."
},
"comment": {
"id": "cm22ydxx6000108mgedm7d313",
"argumentType": "oppose",
"text": "Perceived end knowledge certainly day sweetness why cordially. Ask quick six seven offer see among. Handsome met debating sir dwelling age material."
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-comment-flame",
"...": "...",
"user": {
"...": "..."
},
"post": {
"...": "..."
},
"comment": {
"...": "..."
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-comment-reply",
"...": "...",
"user": {
"...": "..."
},
"post": {
"...": "..."
},
"comment": {
"...": "..."
},
"reply": {
"id": "cm22ydxx6000108mgedm7d313",
"text": "Perceived end knowledge certainly day sweetness why cordially. Ask quick six seven offer see among. Handsome met debating sir dwelling age material."
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-comment-mention",
"...": "...",
"user": {
"...": "..."
},
"post": {
"...": "..."
},
"comment": {
"...": "..."
}
},
{
"id": "cm1p9es41000008ii30np3dix",
"type": "new-reply-mention",
"...": "...",
"user": {
"...": "..."
},
"post": {
"...": "..."
},
"comment": {
"...": "..."
},
"reply": {
"...": "..."
}
}
]
}