Get transaction charges

The endpoint retrieves the transaction charges for a specific escrow transaction.

get transaction charges

GET v2/escrow/transaction-charges/:transaction_id

Params

Name
Type
Description

transaction_id

String

The transaction id of the created escrow

Headers

Name
Type
Description

Accept*

string

application/json

V-PRIVATE-KEY*

string

your vesicash private key

V-PUBLIC-KEY*

String

your vesicash public key

Response

The response is in JSON format and follows the schema

{
    "status": "success",
    "code": 200,
    "message": "success",
    "data": {
        "disbursement_charge": int,
        "escrow_charge": int
    }
}

Last updated