cURL

Please replace {channel}, {token} and --body-data argument.

curl -X POST \
     --location 'https://push.bugify.io/{channel}' \
     --header 'Authorization: Bearer {token}' \
     --data 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.'

Or a bash file script.

#!/bin/sh

BUGIFY_CHANNEL=channel-uuid
BUGIFY_TOKEN=account-token

curl -X POST \
     --location 'https://push.bugify.io/'$BUGIFY_CHANNEL \
     --header 'Authorization: Bearer '$BUGIFY_TOKEN \
     --data 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.'