API's for managing Tenants.
Last updated 8 months ago
Production URL: https://tenants-v1-api-t3mipd377q-ey.a.run.app
Requirement: Request an Auth Code from NovaX Support at support@novax.money to create a Tenant Account.
Your unique API Key.
Your API Hash.
curl -L \ --url '/tenant/wallets' \ --header 'x-api-key: text' \ --header 'x-api-hash: text'
[ { "name": "text", "type": "text", "balance": 1, "totalDeposited": 1, "totalDistributed": 1 } ]
curl -L \ --url '/tenant/deposit-addresses' \ --header 'x-api-key: text' \ --header 'x-api-hash: text'
[ { "name": "text", "address": "text", "network": "text", "supportedTokens": [ "text" ] } ]
The Auth Code provided by NovaX to create a new tenant.
The name of the tenant.
The contact email of the tenant - typically the admin contact email.
curl -L \ --request POST \ --url '/tenant' \ --header 'Content-Type: application/json' \ --data '{ "code": "text", "name": "text", "contactEmail": "text" }'
{ "apiSecret": "text", "apiKey": "text", "message": "text" }