> For the complete documentation index, see [llms.txt](https://docs.relysia.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.relysia.com/enterprise-wallet/transaction.md).

# Transaction

#### 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&#x20;
* 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"
    }
  ]
}'
```
