---
title: "Place a test voice call via Sierra"
method: POST
path: "/api/v1/ca/voice-calls/test"
tags: ["CA Voice Calls"]
---

# Place a test voice call via Sierra

`POST /api/v1/ca/voice-calls/test`

Dry-run/confirm-gated endpoint to place a Sierra voice-agent test call.

Requires scope: voice_calls:write

Two possible 202 response shapes, depending on ``payload.confirmation_token``:

- Dry run (``confirmation_token`` omitted)::

    {
        "mode": "dry_run",
        "confirmation_token": "<token>",
        "validated_config": {
            "purpose": ..., "target": {...}, "inputs": {...},
            "resolved_agent": ..., "caller_id_number": ...
        }
    }

- Confirmed (``confirmation_token`` supplied and valid)::

    {"mode": "confirmed", "call_id": "<sierra call id>", "status": "dispatched"}

## Request body

- VoiceCallTestRequest — Request body for ``POST /api/v1/ca/voice-calls/test``. ``confirmation_token`` is omitted (or null) for the initial dry-run call, which validates the payload and mints a token, and supplied on the follow-up call that actually dispatches the Sierra call.
  - `purpose` string, required
  - `target` VoiceCallTarget, required — The person or facility the test call is placed to.
    - `type` 'provider' | 'member', required
    - `name` string, required
    - `phone_number` string, required
  - `inputs` object
  - `confirmation_token` string, nullable

## Response `202`

Accepted

- object

## Other responses

- `409` — Conflict
- `410` — Gone
- `502` — Bad Gateway

---

[API](https://skmtc.net/cloverhealth/apis/clover-api.md) · [All operations](https://skmtc.net/cloverhealth/apis/clover-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cloverhealth/clover-api/revisions/28797307aae6/schema)
