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

# Resolve Suspense Item

> Manually resolve an anomalous payment by routing it to a wallet.

## Request Headers

<ParamField header="x-api-key" type="string" required>
  Your live or test API key.
</ParamField>

## Path Parameters

<ParamField path="suspense_id" type="string" required>
  The suspense item ID.
</ParamField>

## Request Body

<ParamField body="action" type="string" required>
  `CREDIT_WALLET`, `DISMISS`, or `REFUND`.
</ParamField>

<ParamField body="target_wallet_id" type="string">
  The wallet to credit (required if action is `CREDIT_WALLET`).
</ParamField>

<ParamField body="note" type="string">
  Manual resolution note.
</ParamField>

## Response

<Note>
  All amounts and balances in this endpoint are represented in **kobo** (e.g., `500000` = ₦5,000.00). Ensure you do not send or expect Naira values.
</Note>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "message": "Suspense item resolved.",
      "action": "CREDIT_WALLET"
    }
  }
  ```
</ResponseExample>
