POST /v1/notifications/read-all
Tags: notifications
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
Idempotency-Key | header | string,null |
Responses
200
JSON
{
"$ref": "#/components/schemas/ReadAllResponse"
}Code samples
TypeScript
TypeScript
import { firecase } from "@firecase/sdk";
const result = await firecase.post("/notifications/read-all", { /* body */ });
console.log(result);Python
Python
import firecase
result = firecase.post("/notifications/read-all", json={})
print(result)curl
Bash
curl -X POST https://api.firecase.ai/v1/notifications/read-all \
-H "Authorization: Bearer $FIRECASE_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'