POST /v1/admin/simulations/cache-dry-run

Tags: admin_simulations

Request body

Required.

JSON
{
  "$ref": "#/components/schemas/CacheDryRunRequest"
}

Responses

200

JSON
{
  "$ref": "#/components/schemas/CacheDryRunResponse"
}

400 — INVALID_REQUEST

401 — CONFIRMATION_REQUIRED

403 — FORBIDDEN

Code samples

TypeScript

TypeScript
import { firecase } from "@firecase/sdk";

const result = await firecase.post("/admin/simulations/cache-dry-run", { /* body */ });
console.log(result);

Python

Python
import firecase

result = firecase.post("/admin/simulations/cache-dry-run", json={})
print(result)

curl

Bash
curl -X POST https://api.firecase.ai/v1/admin/simulations/cache-dry-run \
  -H "Authorization: Bearer $FIRECASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'