> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-vector.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# upstash_qstash_schedule_data

<RequestExample>
  ```hcl example.tf
  data "upstash_qstash_schedule_data" "exampleQstashScheduleData" {
    schedule_id = resource.upstash_qstash_schedule.exampleQstashSchedule.schedule_id
  }
  ```
</RequestExample>

## Schema

### Required

<ParamField query="schedule_id" type="string" required>
  Unique Qstash Schedule ID for requested schedule
</ParamField>

### Read-Only

<ResponseField name="body" type="string">
  Body to send for the POST request in string format. Needs escaping () double
  quotes.
</ResponseField>

<ResponseField name="created_at" type="number">
  Creation time for Qstash Schedule
</ResponseField>

<ResponseField name="cron" type="string">
  Cron string for Qstash Schedule
</ResponseField>

<ResponseField name="destination" type="string">
  Destination for Qstash Schedule. Either Topic ID or valid URL
</ResponseField>

<ResponseField name="forward_headers" type="map(string)">
  Forward headers to your API
</ResponseField>

<ResponseField name="id" type="string">
  The ID of this resource.
</ResponseField>

<ResponseField name="not_before" type="number">
  Start time for Qstash Scheduling.
</ResponseField>

<ResponseField name="retries" type="number">
  Retries for Qstash Schedule requests.
</ResponseField>
