GET /api/v1/transfers/:transfer
| Key | Value |
|---|
| Accept | application/json |
| Key | Type | Required | Sign | Description |
|---|
| transfer | string | Yes | No | The transaction ID you provided or DaYangPay provided. |
| Key | Type | Required | Sign | Description |
|---|
| client_key | string | Yes | Yes | The API access key. |
| signature | string | Yes | No | Signed value. |
curl -X GET \
https://example.com/api/v1/transfers/20230101000000?client_key=01h6tn69wfcpy5q5x3vpb3x9me&signature=ba5df26991273c746960ce5238c6479e8ca6116381ac46cea96ffd30fafed082 \
-H "Accept: application/json"
| Key | Type | Description |
|---|
| client_key | string | The API access key. |
| amount | string | The amount for send money. |
| transfer_no | string | The transaction ID DaYangPay provided. |
| out_transfer_no | string | The transaction ID you provided. |
| channel_id | string | The payment method. |
| payee_account | string | Send money to the account. |
| payee_name | string | Full name for the account. |
| created_at | string | Created time. UTC±00:00 |
| paid_at | string | Paid time. UTC±00:00 |
| status | integer | The transaction status. |
| Code | Description |
|---|
| 0 | Pending |
| 1 | Successful |
| 2 | Processing |
| 3 | Failed |
{
"client_key": "01hcd0d0c2qh9wy5efm5sxrk38",
"amount": "100.00",
"transfer_no": "100000012023072123389872",
"out_transfer_no": "20230101000000",
"channel_id": "5001",
"payee_account": "1234567890",
"payee_name": "Sammy Shark",
"created_at": "2023-01-01T01:01:01.000000Z",
"paid_at": "2023-01-01T01:02:03.000000Z",
"status": 1
}