Apply Lock Exchange

Request Method: POST

Request Path: /v2/payment/apply_quote

Request Body: application/json

Field Name Description Type Required
amount Amount received integer yes
remark string no
account Payment account object yes

account Description , Specific value transmission reference Query Channel Params

Field Name Description Type Required
paymentMethod Payment channel string yes
accountNo Incoming account string yes
firstName Name of payee string no
middleName Middle name string no
lastName Last noame string no
phone Mobile phone string no
address Address string no
Example
{
    "amount": "10",
    "account": {
        "paymentMethod": "PAYPAL",
        "accountNo": "[email protected]",
        "firstName": "",
        "middleName": "",
        "lastName": "",
        "phone": "",
        "address": ""
    }
}

Reponse Data

Reponse example
{
    "code": 200,
    "message": "Success",
    "data": {
        "quoteNo": "Z-PO202409201618229283768",
        "paymentMethod": "PAYPAL",
        "paymentAccount": "[email protected]",
        "amountReceived": {
            "amount": 10,
            "currency": "USD"
        },
        "paymentAmount": {
            "amount": 13.22,
            "currency": "USD"
        },
        "fee": {
            "amount": 3.22,
            "currency": "USD"
        },
        "paymentRate": 1,
        "createTime": "2024-09-20T08:18:22.928+00:00",
        "remark": null,
        "expireAt": "2024-09-20T08:23:22.870+00:00"
    }
}