Skip to main content

Communication

Manages communication with customers, including notifications, emails, and messaging.

Push Token

A push notification is a message or alert sent by an application to a user's device, even when the app is not actively in use. These notifications are typically used to deliver timely and relevant information, updates, reminders, or promotions to users. They appear on the device's home screen or in the notification center and can include text, images, or other media. Push notifications are a powerful tool for engaging users, keeping them informed, and encouraging them to interact with the application. A push token is a unique identifier generated by a mobile operating system when a mobile application registers to receive push notifications. This token is used by the application server to send push notifications to the specific device. It acts as a form of address, allowing the server to target and deliver notifications to the intended recipient app on the user's device. This resource allows you to manage push notification tokens associated with mobile applications. You can upsert (update or insert) push tokens for individual users or devices. This is crucial for sending targeted push notifications to users who have opted in to receive them, allowing you to engage with your mobile app's audience effectively.

Operations
POST
/service/application/communication/v1.0/pn-token
# Update or adds app push token
POST

Update or adds app push token

Update or inserts the push token of the user.
Parameters
body
object (PushtokenReq)
Check the request body shown below or refer `PushtokenReq` for more details
PushtokenReq
action
string
Optional
Enum
bundle_identifier
string
Optional
push_token
string
Optional
unique_device_id
string
Optional
type
string
Optional
Response
200
400
Success. Check the example shown below or refer `PushtokenRes` for more details.
PushtokenRes
_id
string
Optional
bundle_identifier
string
Optional
push_token
string
Optional
unique_device_id
string
Optional
type
string
Optional
platform
string
Optional
application_id
string
Optional
user_id
string
Optional
created_at
string
Optional
updated_at
string
Optional
expired_at
string
Optional
Examples
Parameters
Parameters are not required.
Was this section helpful?
POST
/service/application/communication/v1.0/pn-token
Loading...
Response
Example response not available.