---
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": ..., "inputs": {...}},
        "sierra_request_preview": {
            "url": "https://api.sierra.chat/playbooks/<playbook_id>/start",
            "target": "MemberSchedulingTestTarget",
            "body": {"idempotencyKey": ..., "entities": {...}, "events": [...]}
        }
    }

- 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
  - `inputs` object
  - `confirmation_token` string, nullable

## Response `202`

Accepted

- object

## Other responses

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

## Changes

- **2026-09-04** `da40ef807c67` — 1 warning
  - removed the request property `target`
- **2026-08-11** `28797307aae6` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/cloverhealth/apis/clover-api/changes/api/v1/ca/voice-calls/test/post.md)

---

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