<!DOCTYPE html>
<html lang="en">
<head>
    {{template|header.[theme].html}}
</head>
<body>

    <div id="copyinfo">
        <a tabindex="-1" href="https://www.blackforestbytes.com">&#169; blackforestbytes</a>
        <a tabindex="-1" href="https://www.mikescher.com">made by Mike Schw&ouml;rer</a>
    </div>

    {{template|theme_switch.[theme].html}}

    <div id="mainpnl">
        <a tabindex="-1" href="/documentation/swagger" class="button bordered edge-btn" id="tl_linkDocs"><span class="icn-openapi"></span><span class="tl_btntxt">API Documentation</span></a>

        <a tabindex="-1" href="/" class="button bordered edge-btn" id="tr_link">Send</a>

        <a tabindex="-1" href="/" class="linkcaption"><h1>Simple Cloud Notifier</h1></a>

        <p>Get your user-id and user-key from the android or iOS app.<br/>And send notifications to your phone by performing a POST request against <code>{{config|baseURL}}/</code> from anywhere</p>
        <pre>
curl                                                                        \
    --data "user_id=${userid}"                                              \
    --data "key=${key}"                                                     \
    --data "title=${message_title}"                                         \
    --data "content=${message_body}"                                        \
    --data "priority=${0|1|2}"                                              \
    --data "msg_id=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32)"    \
    --data "timestamp=$(date +%s)"                                          \
    --data "channel={channel_name}"                                         \
    --data "sender_name=$(hostname)"                                        \
    {{config|baseURL}}/</pre>
    <p>Most parameters are optional, you can send a message with only a title (default priority and channel will be used)</p>
        <pre>
curl                                          \
    --data "user_id={userid}"                 \
    --data "key={key}"                        \
    --data "title={message_title}"            \
    {{config|baseURL}}/</pre>

        <a href="/api_more" class="button bordered tertiary" style="float: right; min-width: 100px; text-align: center">More</a>

    </div>
</body>
</html>