> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fire.rest/llms.txt
> Use this file to discover all available pages before exploring further.

# Obtener estado de transacción

> Devuelve el estado de una transacción de inventario específica (recepción, conteo, merma, transferencia o lote de producción).

<ParamField header="x-api-key" type="string" required>
  API key de BOH con scope `inventory:read`.
</ParamField>

<ParamField path="vendorId" type="string" required>UUID del vendor.</ParamField>
<ParamField path="transactionId" type="string" required>UUID de la transacción.</ParamField>

<ResponseField name="id" type="string">UUID de la transacción.</ResponseField>
<ResponseField name="type" type="string">Tipo: `GOODS_RECEIPT`, `STOCK_COUNT`, `WASTE_EVENT`, `TRANSFER`, o `PRODUCTION_BATCH`.</ResponseField>
<ResponseField name="status" type="string">`PENDING`, `PROCESSING`, `COMPLETED`, o `FAILED`.</ResponseField>
<ResponseField name="reference_id" type="string">UUID del documento operativo correspondiente.</ResponseField>
<ResponseField name="created_at" type="string">Cuándo se creó la transacción.</ResponseField>
<ResponseField name="completed_at" type="string | null">Cuándo se completó (o `null` si aún está pendiente).</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "txn_01...",
    "type": "GOODS_RECEIPT",
    "status": "COMPLETED",
    "reference_id": "gr_01...",
    "created_at": "2026-08-07T09:00:00.000Z",
    "completed_at": "2026-08-07T09:00:01.000Z"
  }
  ```
</ResponseExample>
