curl --request GET 'api.pulsecron.com/v1/register'
--header 'X-Pulseconr-Auth-Key: pulsecron'
--header 'Content-Type: application/json'
--data '{
"jobName:": "Generate monthly usage reports on the first day of each month",
"jobDescription": "",
"type": "repeat",
"time": "yyyy-mm-ddThh:mm:ss",
"webhook": {
"url": "your_url",
"method": "POST",
"headers": {
"Authorization": "Bearer your_token"
},
"body": {
"key": "value"
}
}
}'
curl --request GET 'api.pulsecron.com/v1/register'
--header 'X-Pulseconr-Auth-Key: pulsecron'
--data '{
"jobName:": "Trigger a follow-up survey 1 week after a service purchase",
"type": "schedule",
"time": "yyyy-mm-ddThh:mm:ss",
"webhook": {
"url": "your_url",
"method": "GET",
}
}'
curl --request GET 'api.pulsecron.com/v1/register'
--header 'X-Pulseconr-Auth-Key: pulsecron'
--data '{
"jobName:": "Automate Weekly Content Delivery to Users every Monday",
"jobDescription": "",
"type": "repeat",
"cron": "0 0 * * 1",
"webhook": {
"url": "your_url",
"method": "GET",
}
}'
curl --request GET 'api.pulsecron.com/v1/register'
--header 'X-Pulseconr-Auth-Key: pulsecron'
--data '{
"jobName:": "Remind users to complete their profile 2 days after signing up",
"jobDescription": "",
"type": "schedule",
"time": "yyyy-mm-ddThh:mm:ss",
"webhook": {
"url": "your_url",
"method": "GET",
}
}'
curl --request GET 'api.pulsecron.com/v1/register'
--header 'X-Pulseconr-Auth-Key: pulsecron'
--data '{
"jobName:": "Notify users of impending subscription expiration 3 days before the due date",
"jobDescription": "",
"type": "schedule",
"time": "yyyy-mm-ddThh:mm:ss",
"webhook": {
"url": "your_url",
"method": "GET",
}
}'
curl --request GET 'api.pulsecron.com/v1/register'
--header 'X-Pulseconr-Auth-Key: pulsecron'
--data '{
"jobName:": "Generate monthly usage reports on the first day of each month",
"jobDescription": "",
"type": "repeat",
"cron": "0 0 1 * *",
"webhook": {
"url": "your_url",
"method": "GET",
}
}'
curl --request GET 'api.pulsecron.com/v1/register'
--header 'X-Pulseconr-Auth-Key: pulsecron'
--data '{
"jobName:": "Send promotional offers on user birthdays",
"jobDescription": "",
"type": "schedule",
"time": "yyyy-mm-ddThh:mm:ss",
"webhook": {
"url": "your_url",
"method": "GET",
}
}'
Offers exact scheduling capabilities to trigger events at specific times, ensuring high accuracy in event execution, such as sending notifications or emails.
Provides a robust API that enables easy integration into existing systems, allowing developers to automate workflows efficiently.
Utilizes webhooks to communicate with user-specified URLs at the scheduled times, facilitating real-time data processing and actions.
Designed to handle large volumes of events without degradation in performance, ensuring reliability as user demand increases.
Supports a wide range of time settings, from minutes to month and global time zone, enabling versatile across different scenarios.
Includes a dashboard for managing and monitoring scheduled events, offering insights into performance and operational status.
Implements advanced security protocols to ensure data integrity and protect against unauthorized access during event triggering and processing.