Create a scheduled request
Scheduling
Create Schedule
Schedule an HTTP request to be executed at a specific time. Requires 1 credit per request.
POST
Create a scheduled request
Schedule an HTTP request to be executed at a specific time. This endpoint requires 1 credit per request.
Example Request
Response
Use Cases
- User Onboarding: Schedule welcome emails or follow-up messages
- E-commerce: Send abandoned cart reminders or order updates
- Notifications: Time-delayed alerts and reminders
- Webhooks: Trigger delayed webhook calls to external services
- Automation: Schedule API calls for recurring tasks
Authorizations
API key authentication. Include your API key in the x-api-key header.
Body
application/json
Schedule configuration
The URL to make the HTTP request to
Example:
"https://api.example.com/webhook"
HTTP method to use
Available options:
GET, POST, PUT, PATCH, DELETE Example:
"POST"
When to execute the request (ISO 8601 format)
Example:
"2024-12-25T10:00:00Z"
HTTP headers to include in the request
Example:
{
"Content-Type": "application/json",
"Authorization": "Bearer token123"
}Request body (for POST, PUT, PATCH methods)
Example:
{ "message": "Hello from CallMeLater!" }
