๐ฆTenants
API's for managing Tenants.
Production URL: https://tenants-v1-api-t3mipd377q-ey.a.run.app
Create Tenant
Body
codestringRequired
The Auth Code provided by NovaX to create a new tenant.
namestringRequired
The name of the tenant.
contactEmailstringRequired
The contact email of the tenant - typically the admin contact email.
Responses
200
User successfully created.
application/json
409
Permission denied.
500
Internal error.
post
POST /tenant HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 51
{
"code": "text",
"name": "text",
"contactEmail": "text"
}
{
"apiSecret": "text",
"apiKey": "text",
"message": "text"
}
Get Tenant Wallets
Header parameters
x-api-keystringRequired
Your unique API Key.
x-api-hashstringRequired
Your API Hash.
Responses
200
OK
application/json
409
Permission denied.
500
Internal error.
get
GET /tenant/wallets HTTP/1.1
Host:
x-api-key: text
x-api-hash: text
Accept: */*
[
{
"name": "text",
"type": "text",
"balance": 1,
"totalDeposited": 1,
"totalDistributed": 1
}
]
Get Tenant Deposit Addresses
Header parameters
x-api-keystringRequired
Your unique API Key.
x-api-hashstringRequired
Your API Hash.
Responses
200
OK
application/json
409
Permission denied.
500
Internal error.
get
GET /tenant/deposit-addresses HTTP/1.1
Host:
x-api-key: text
x-api-hash: text
Accept: */*
[
{
"name": "text",
"address": "text",
"network": "text",
"supportedTokens": [
"text"
]
}
]
Last updated