Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request PUT \
--url https://open.beatpass.ca/api/v1/notifications/{user}/subscriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"selections": [
{
"notif_id": "new_message",
"channels": {
"email": true,
"in_app": true,
"mobile": false
}
}
]
}
'{
"status": "success"
}Update one or more notification subscription channel selections for the authenticated user. Valid channel keys are email, in_app, and mobile.
curl --request PUT \
--url https://open.beatpass.ca/api/v1/notifications/{user}/subscriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"selections": [
{
"notif_id": "new_message",
"channels": {
"email": true,
"in_app": true,
"mobile": false
}
}
]
}
'{
"status": "success"
}API access is invite-only. Contact contact@beatpass.ca to request access. Once approved, generate tokens from Account Settings → Developers. Include as: Authorization: Bearer {token}. Tokens expire after 90 days.
Authenticated user ID or me.
"me"
Show child attributes
Notification subscriptions updated
"success"
Was this page helpful?