Request
[GET] /api/v1/transfer/detail/{id}
Content-Type: application/json
x-client-id: <client_id>
x-signature: <signature>
x-timestamp: <timestamp>
Body
Response
Content-Type: application/json
Body
Name | Type | Description |
---|---|---|
id | uuid.UUID | ID |
business_id | uint64 | Business identifier |
amount | float64 | amount |
beneficiary_account_number | string | beneficiary account number |
beneficiary_account_name | string | beneficiary account name |
beneficiary_bank_id | string | beneficiary account bank id |
beneficiary_bank_code | string | beneficiary account bank code |
code | string | code |
note | string | note |
reference_id | string | reference id |
provider_code | string | provider code |
provider_payment_number | string | provider payment number |
provider_transaction_number | string | provider transaction number |
status | string |
Errors
Status | Messsage |
---|---|
200 | Success |
401 | Unauthorized |
Example
Request
[GET] /api/v1/transfer/detail/{id}
Response
{
"message": {
"content": "Thực thi API thành công"
},
"code": 102000,
"request_id": "d5f72213-a078-4ab9-bebc-4ffa467c7860",
"data":{
"id": "cff12595-7e54-4a20-b792-894467e00f10",
"business_id": 123456,
"account_id": "48cec226-d545-4321-8bdd-a1c1ddc31ce4",
"amount": 1000.5,
"currency_code": "USD",
"beneficiary_account_number": "1234567890",
"beneficiary_account_name": "John Doe",
"beneficiary_bank_id": "BANK123",
"beneficiary_bank_code": "ABCXYZ",
"code": "TRX00123456789",
"note": "Payment for services",
"reference_id": "REF123456789",
"provider_code": "PROV001",
"provider_payment_number": "PPN123456",
"provider_transaction_number": "PTXN987654321",
"status": "Completed",
"created_at": "2024-08-30T09:41:10.908172",
"updated_at": "2024-08-30T09:41:10.908187"
}
}