> ## 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.

# Obter status da transação

> Retorna o status de uma transação de inventário específica.

<ParamField header="x-api-key" type="string" required>
  API key do BOH com escopo `inventory:read`.
</ParamField>

<ParamField path="vendorId" type="string" required>UUID do vendor.</ParamField>
<ParamField path="transactionId" type="string" required>UUID da transação.</ParamField>

<ResponseField name="id" type="string">UUID da transação.</ResponseField>
<ResponseField name="type" type="string">Tipo: `GOODS_RECEIPT`, `STOCK_COUNT`, `WASTE_EVENT`, `TRANSFER`, ou `PRODUCTION_BATCH`.</ResponseField>
<ResponseField name="status" type="string">`PENDING`, `PROCESSING`, `COMPLETED`, ou `FAILED`.</ResponseField>
<ResponseField name="reference_id" type="string">UUID do documento operativo correspondente.</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>
