Skip to content

Create Push Subscription



wss push_subscription_create

The push_subscription_create request registers devices for receiving push notifications.

NameTypeDescription
platformstringDevice platform (web, ios, etc.)
web_endpointstringWeb Push endpoint URL
web_key_authstringWeb Push authentication key
web_key_p256dhstringWeb Push P256DH public key
device_tokenstringDevice token
device_udidstringCurrent device id
NameTypeDescription
platformstringDevice platform (web, ios, etc.)
web_endpointstringWeb Push endpoint URL
web_key_authstringWeb Push authentication key
web_key_p256dhstringWeb Push P256DH public key
device_tokenstringDevice token
device_udidstringCurrent device id
{
"request": {
"push_subscription_create": {
"platform": "web",
"web_endpoint": "enpoint",
"web_key_auth": "auth",
"web_key_p256dh": "p256dh",
"device_token": "...",
"device_udid": "deviceId"
},
"id": "RequestId",
},
};
{
"response": {
"id": "RequestId",
"subscription": {
"_id": "644156fea451b5950d13d0e8",
"platform": "web",
"web_endpoint": "enpoint",
"web_key_auth": "auth",
"web_key_p256dh": "p256dh",
"device_udid": "deviceId",
"user_id": "644156fea451b5950d13d0e5",
"created_at": "2025-08-13T05:51:44.733Z",
"updated_at": "2025-08-13T05:51:44.733Z"
}
}
}