πŸ‘‹Quick Start

Create your first Noty project:

After registering and logging in to Noty, we take you to onboarding to create your first project. When you finish onboarding, you will be directed to the main screen of your project. On this screen, you can access your API key.

If you need to find your API Key later, click on the three dots in the upper right corner of the project screen and go to Project settings. Here you can see your API Key; if there is a security problem, you can regenerate it.

Send your events to Noty:

Send your first event

POST https://usenoty.com/api/v1/send

This endpoint is used to send your events to Noty.

Headers

Name
Type
Description

Content-Type*

String

application/json

Authorization*

String

Bearer: YOUR_TOKEN

Request Body

Name
Type
Description

channel*

string

The channel you'd like to send an event to.

message

String

Notification message.

level

Integer

Low, Normal, and High levels can be defined here. If you leave this field blank, we will send a Low level notification. For more details, you can take a look at Notification Levels.

date

Timestamp

By default, we store the current date and time. Use this field to send a different day and time. The date must be sent in "Y-m-d H:i:s" format.

Take a look at an example for publishing events.

Last updated