- Back to home
- Core
- Authentication
- User
- Point Reward
- Notification
- HealthcheckGET
- Renew OTPPOST
Register Notification - FCM Token
Developing
POST
/core/v1/notifications/register
Last modified:2025-04-18 11:45:35
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
deviceId
string
required
fcmToken
string
required
isRepeat
boolean
required
Default:
true
Example
{
"deviceId": "string",
"fcmToken": "string",
"isRepeat": true
}
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 POST '/core/v1/notifications/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"deviceId": "string",
"fcmToken": "string",
"isRepeat": true
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-04-18 11:45:35