Transaction

Allows users with limited roles to do transections by using following endpoints

Send

Create transactions to peers using the /send endpoint. This endpoint can send either Tokens or BSV and is accessible by users with the following roles:

  • admin

  • operator

  • manager

curl --location --request POST 'https://api.enterprise.relysia.com/api/v1/send' \
--header 'authToken: authToken' \
--header 'serviceid: serviceid' \
--header 'Content-Type: application/json' \
--data-raw '{
  "dataArray": [
    {
      "to":"address",
      "amount": "amount in number",
      "type": "BSV"
    }
  ]
}'

Last updated