Getting Started
How to use JustPush efficiently
The JustPush user manual is our manual and tutorial list explaining you on how to implement and use JustPush services. It describes the process of getting from downloading the app to working / implementing with various frameworks.
1
2
Find your API Key
Find your API as described in the dedicated API Key topic.
3
Send your first message
Find per programming language how you can send your first message. These examples do not use an SDK and are just setup to send your first message.
curl -X "POST" "https://api.justpush.io/messages" \
-H 'Accept: application/json' \
-H 'Content-Type: application/json; charset=utf-8' \
-d $'{
"message": "My First Message",
"topic" : "Default",
"title": "Bingo! I've just received my first message",
"user": "REPLACE WITH API TOKEN"
}'
Last updated