跳转到主要内容
GET
/
v1
/
issuing
/
transfers
/
{id}
Retrieve Issuing Transfer
curl --request GET \
  --url https://api-sandbox.uqpaytech.com/api/v1/issuing/transfers/{id} \
  --header 'x-auth-token: <api-key>'
{
  "transfer_id": "5135e6cc-28b6-4889-81dc-3b86a09e1395",
  "reference_id": "T250624-K0XMYZRF",
  "source_account_id": "7c4ff2cd-1bf6-4aaa-bf16-266771425011",
  "destination_account_id": "7c4ff2cd-1bf6-4aaa-bf16-266771425011",
  "amount": 1000,
  "fee_amount": 0.25,
  "currency": "SGD",
  "transfer_status": "completed",
  "create_time": "2024-03-21T17:17:32+08:00",
  "complete_time": "2024-03-21T17:17:32+08:00",
  "creator_id": "7c4ff2cd-1bf6-4aaa-bf16-266771425011",
  "remark": "Transfer to Jack."
}

Documentation Index

Fetch the complete documentation index at: https://developers-sandbox.uqpaytech.com/llms.txt

Use this file to discover all available pages before exploring further.

授权

x-auth-token
string
header
必填

The API token for login provided by UQPay.

请求头

x-on-behalf-of
string

Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts endpoint. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.

路径参数

id
string
必填

Unique identifier for the transfer.

示例:

"c0cef051-29c5-4796-b86a-cd5b684bfad7"

响应

200 - application/json

Retrieve a transfer successfully.

transfer_id
string<uuid>
必填

Unique identifier for transfer.

示例:

"5135e6cc-28b6-4889-81dc-3b86a09e1395"

reference_id
string<uuid>
必填

Short reference id for the transfer.

示例:

"T250624-K0XMYZRF"

source_account_id
string<uuid>
必填

The account id that initiated the transfer.

示例:

"7c4ff2cd-1bf6-4aaa-bf16-266771425011"

destination_account_id
string<uuid>
必填

The account id that received the transfer.

示例:

"7c4ff2cd-1bf6-4aaa-bf16-266771425011"

amount
number
必填

Transfer amount.

示例:

1000

fee_amount
number
必填

Transaction fee amount.

示例:

0.25

currency
string
必填

Transfer currency.

示例:

"SGD"

transfer_status
string
必填

The current status of the transfer. Valid values are:

示例:

"completed"

create_time
string
必填

Transfer create time.

示例:

"2024-03-21T17:17:32+08:00"

complete_time
string
必填

Transfer complete time.

示例:

"2024-03-21T17:17:32+08:00"

creator_id
string<uuid>
必填

The account id that create the transfer.

示例:

"7c4ff2cd-1bf6-4aaa-bf16-266771425011"

remark
string
必填

The remark of the transfer.

示例:

"Transfer to Jack."