# Pause

The **\<Pause>** verb waits silently for a specific number of seconds. If \<Pause> is the first verb in a RCML response, CallAPI will wait the specified number of seconds before picking up the call.

## Pause Attributes

| Name       | Allowed Values | Default Value |
| ---------- | -------------- | ------------- |
| **length** | integer > 0    | 1 second      |

{% hint style="info" %}
&#x20;**Length.** The 'length' attribute specifies how many seconds CallAPI will wait silently before continuing on.
{% endhint %}

### Nesting

The  verb can not have any other verbs or nouns nested.

## Examples

{% hint style="info" %}
&#x20;Example of how to use the \<Pause> verb:
{% endhint %}

```markup
<Response>
    <Pause length="5"/>
</Response>
```

{% hint style="info" %}
**Delayed pickup**

&#x20;This example demonstrates using `<Pause>` to wait between two `<Say>` verbs.
{% endhint %}

```markup
<Response>
    <Say>I will pause 10 seconds starting now!</Say>
    <Pause length="10"/>
    <Say>I just paused 10 seconds</Say>
</Response>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://apidocs.api19.com/call-api-markup/api-call-markup-language/pause.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
