Example: Listening to notifications¶
Frequency of use | Common |
---|---|
Actors |
|
Communication Flow: Kotlin
NotificationDescriptions.subscription.subscribe(
Unit,
user,
handler = { /* will receive messages listed below */ }
)
/*
Notification(
id = 56123,
message = "Something has happened",
meta = JsonObject(mapOf("myParameter" to JsonLiteral(
coerceToInlineType = null,
content = "42",
isString = false,
)),)),
read = false,
ts = 1717663228605,
type = "MY_NOTIFICATION_TYPE",
)
*/
NotificationDescriptions.markAsRead.call(
FindByNotificationIdBulk(
ids = "56123",
),
user
).orThrow()
/*
MarkResponse(
failures = emptyList(),
)
*/
Communication Flow: Curl
# ------------------------------------------------------------------------------------------------------
# $host is the UCloud instance to contact. Example: 'http://localhost:8080' or 'https://cloud.sdu.dk'
# $accessToken is a valid access-token issued by UCloud
# ------------------------------------------------------------------------------------------------------
# Authenticated as user
curl -XPOST -H "Authorization: Bearer $accessToken" -H "Content-Type: content-type: application/json; charset=utf-8" "$host/api/notifications/read" -d '{
"ids": "56123"
}'
# {
# "failures": [
# ]
# }