To work with push notifications, execute requests using the "push" API method (determine user token before executing the request):
Get tokens list:
curl -X GET '<IP address or DNS server name>/api/v1/push/tokens/' --header 'Authorization: Bearer <user token>' --header 'Accept: application/json'
The example of response:
[
{
"received_date":"2020-10-30T10:58:04.414637Z",
"device":{
"id_string":"654654ghdfg5435",
"is_active":true,
"os_version":"iOS"
},
"token":"b34735aa4681cfe91616c775f3b9b8f7f410a3e7c79ed6a48dfd41907a13be23",
"push_service":"Firebase"
}
]
Add a token:
In iOS:
curl -X POST '<IP address or DNS server name>/api/v1/push/tokens/add/' --header 'Authorization: Bearer <user token>' --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"token": {"value": "<token>","platform": "ios"}}'
In Android:
curl -X POST '<IP address or DNS server name>/api/v1/push/tokens/add/' --header 'Authorization: Bearer <user token>' --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"token": {"service": "firebase", "platform": "android", "value": "<token>"}}'
The example of response:
{
"status":"OK"
}
Remove token:
curl -X POST '<IP address or DNS server name>/api/v1/push/tokens/remove/' --header 'Authorization: Bearer <user token>' --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"tokens": ["<token>"]}'
The example of response:
{
"status":"OK"
}
Get push topics list:
curl -X GET '<IP address or DNS server name>/api/v1/push/topics/' --header 'Authorization: Bearer <user token>' --header 'Accept: application/json'
The example of response:
[
{
"name":"topic",
"description":"",
"subscribed":true
},{
"name":"topic1",
"description":"",
"subscribed":false
},{
"name":"topic2",
"description":"",
"subscribed":false
}
]
Subscribe user to push topics:
curl -X POST '<IP address or DNS server name>/api/v1/push/topics/subscribe/' --header 'Authorization: Bearer <user token>' --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"topics":["<topic 1 name>","<topic 2 name>",...,"<topic n name>"]}'
The example of response:
{
"status":"OK"
}
Unsubscribe user from push topics:
curl -X POST '<IP address or DNS server name>/api/v1/push/topics/unsubscribe/' --header 'Authorization: Bearer <user token>' --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"topics":["<topic 1 name>","<topic 2 name>",...,"<topic n name>"]}'
The example of response:
{
"status":"OK"
}
Send push notification to specific user:
curl -X POST '<IP address DNS server name>/api/v1/push/send/<template name>/user/<user name>/' --header 'Authorization: Bearer <user token>' --header 'Content-Type: application/json' -d '{"title": "<title>","body": "<body>"}'
The example of response:
{
"status":"OK"
}
Send push notification to all users subscribed to specific push topic:
curl -X POST '<IP topic or DNS server name>/api/v1/push/send/<template name>/topic/<topic name>/' --header 'Authorization: Bearer <user token>' --header 'Content-Type: application/json' -d '{"title": "<title>","body": "<body>"}'
The example of response:
{
"status":"OK"
}
When push notification is passed to a specific user or to all users, the request body contains the parameters specified in the template:
-d '{"title": "<title>","body": "<body>"}'
For example, the specified values of the title and body parameters will correspond to the following template:
For Firebase:
{
"notification": {
"title": "{{title}}",
"body": "{{body}}"
}
}
For APNs:
{
"aps": {
"alert": {
"title": "{{title}}",
"body": "{{body}}"
}
}
}
See also: