Send transaction invites

When a transaction is created, it is sent to the other party to either accept or reject. This is implemented by making a post request to the endpoint specifying the id of the transaction.

You need to specify the transaction_id.

Send created transaction invite

POST https://api.vesicash.com/v2/escrow-invite

Headers

NameTypeDescription

Accept*

string

application/json

V-PRIVATE-KEY*

string

your vesicash private key

V-PUBLIC-KEY*

String

your vesicash public key

Request Body

NameTypeDescription

transaction_id*

string

The id of that transaction.

{
    "status": "success",
    "code": 200,
    "message": "Transaction sent"
}

For example, you can make a post request to the endpoint above and pass in the json data below to send the transaction.

{
    "transaction_id":"b8b6620599ea444cad30"
}

When a transaction has been sent, the other party is expected to "accept" or "reject" such transaction before it can proceed to the next stage.

Last updated