Skip to main content

API Request Scheduling

This feature allows you to schedule your API request to be executed at a later time.

How It Works

When making a request to the endpoint, include the optional scheduled parameter in the request body.
This parameter must be a string in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ).

  • The scheduled time must be at least 2 hours later than the current time.
  • If this condition is not met, the request will be rejected during validation.

Example Request Body

{
"scheduled": "2025-09-22T18:30:00.000Z"
}

Note

  • The request will be queued and automatically executed at the specified time.
  • Proper formatting and time zone awareness are crucial to ensure accurate scheduling.

This ensures your request is validated and executed at the intended time without manual intervention.