List of Transfer Request

Get a transfer details

Method and URL

GET | [BASE_URL]/v1/transfers?referenceId=[Your Ref ID]

referenceId is optional. With referenceId provided, the response will return array of data contains single transfer with exact match reference id

Response

Example Response Body

{
    "code": "string",
    "message": "string",
    "data": [
        {
            "uuid": "8uh7-n332-9vst-l2c1",
            "referenceId": "PAY/trf-0109332",
            "recipientId": "u734-981324saf-53tu",
            "amount": 10000,
            "remarks": "transfer for coffeeshop",
            "transferType": "DIRECT",
            "status": "SUCCESS",
            "transaction_timestamp": "2024-05-13T08:21:44.967496538Z",
            "created": "2024-05-13T08:21:44.967496538Z",
            "updated": "2024-05-13T08:21:44.967496538Z"
        },
        // more transfer items
    ],
    "pagination": {
        "page": 1,
        "perPage": 10,
        "totalPage": 10,
        "totalData": 100
    }
}

Response Data Schema

Schema Path
Description
Data Type Validation

code

Response Code from Pivot

String

message

Human readable message that represent response from Pivot

String

data

Response Data from Pivot contains list of Transfer Object

Object

pagination

Page Information

Object

Last updated