---
title: "Get a transfer approval"
method: GET
path: "/v2/transfer-approvals/{approvalId}"
tags: ["Transfer Approvals"]
---

# Get a transfer approval

`GET /v2/transfer-approvals/{approvalId}`

Retrieve detailed information about a specific transfer approval

## Path parameters

- `approvalId` string, uuid, required

## Response `200`

Transfer approval details retrieved successfully

- GetTransferApprovalResponse
  - `success` boolean — Whether the operation was successful
  - `message` string — Human-readable message about the operation
  - `approval` TransferApprovalDetail
    - `id` string, uuid
    - `transferId` string, uuid
    - `status` 'PENDING' | 'APPROVED' | 'REJECTED' | 'EXPIRED' — Current status of the approval process
    - `createdAt` string, date-time
    - `updatedAt` string, date-time — When the approval was last updated
    - `transferType` 'WALLET.TRANSFER' | 'WALLET.TRANSFER.BATCH' | 'WALLET.BRIDGE' — Type of transfer requiring approval
    - `votes` ApprovalVote[] — Array of votes cast on this approval
      - `approverId` string, uuid — ID of the approver who cast the vote
      - `vote` 'APPROVE' | 'REJECT' — The vote cast by the approver
      - `comment` string, nullable — Optional comment explaining the vote decision
      - `createdAt` string, date-time — When the vote was cast

## Other responses

- `401` — Unauthorized
- `404` — Resource not found
- `500` — Internal Server Error

---

[API](https://skmtc.net/hifibridge/apis/hifi-api.md) · [All operations](https://skmtc.net/hifibridge/apis/hifi-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hifibridge/hifi-api/revisions/74d9e530fbea/schema)
