Creating a new business wallet address
The method allows you to create a new business address.
Header parameters
x-api-public-keystringOptional
Public API-key
x-api-signaturestringOptional
Signing the request body with a private API-key
Content-typestringOptionalExample: 
Request content type
application/jsonBody
Request body for creating a new address
currencystringRequiredExample: 
Coin ticker
USDTnetworkstringRequiredExample: 
Network name
USDTaliasstringRequiredExample: 
Address alias
USDTcommentstringRequiredExample: 
Comment to the address
USDTResponses
200Success
application/json
post
/api-gateway/business-addressPOST /api-gateway/business-address HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 68
{
  "currency": "USDT",
  "network": "USDT",
  "alias": "USDT",
  "comment": "USDT"
}200Success
{
  "success": true,
  "response": [
    {
      "id": "c4179377-b199-455b-ab08-16c517bb3f1b",
      "advancedBalanceId": "a68fa430-705f-4626-9da6-a6f6217d88db",
      "currency": "USDT",
      "network": "ethereum",
      "address": "0x00000005707Bf50EfA35a2db020eDe9Ac0780b9f",
      "tag": null,
      "balance": "852.345527",
      "alias": "My address alias",
      "comment": "My some address comment."
    }
  ]
}Last updated