> ## Documentation Index
> Fetch the complete documentation index at: https://docs.telli.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Call rescheduled

> Receive the later call time selected by the scheduler

The `call_rescheduled` event is sent whenever the scheduler decides not to place a call immediately and persists a later time instead. This includes the first scheduling decision for a newly created call loop as well as later changes to an existing schedule.

The payload identifies the assigned agent and includes the contact as it stood after the new schedule was persisted. `call.next_call_at` and `contact.next_call_at` contain the selected ISO 8601 timestamp. `call.to_number` is the contact's phone number.


## OpenAPI

````yaml openapi-v2.json webhook call_rescheduled
openapi: 3.1.1
info:
  title: telli API
  version: 2.0.0
  description: telli V2 API
servers:
  - url: https://api.telli.com
    description: prod
security:
  - BearerAuth: []
paths: {}
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key authentication. Use your telli API key as the bearer token.

````

## Related topics

- [Webhooks](/webhooks.md)
- [List Calls](/v1/endpoint/list-calls.md)
- [Get Call](/v1/endpoint/get-call.md)
