#!/usr/bin/env bash
set -euo pipefail

# FinanceGPT generated client starter
# Source: FinanceGPT API v2 OpenAPI index
# OpenAPI SHA-256: dea651760d4f9eb2788e7dc398eb1ad7a1304e5c4b008a2407b0027fb746b65d
# Operations: post-client-intelligence-calls-uid-transcribe-recording
# Credential: FINANCEGPT_API_KEY environment variable; no credential is embedded.
# Authority: API identity and generated code do not create model-promotion, QLM-binding or Financial Actions authority.

# Transcribe the stored Client Intelligence recording with FinanceGPT Native Speech | scope: client:intelligence:run
curl -X POST \
  -H "Authorization: Bearer $FINANCEGPT_API_KEY" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  --data '{
    "language": "en"
}' \
  "https://financegpt.dev/api/v2/client-intelligence/calls/{uid}/transcribe-recording"
