organizations

Get configuration for current organization

Returns the organization configuration including per-network addresses for fee payouts and refunds. Each address includes an isDefault flag indicating if it uses the treasury wallet.

get/v1/organizations/current/config

Headers

X-API-Keystring

API key

Response

Organization configuration

idstring required

Config ID

organizationIdstring required

Organization ID

createdAtstring required

Created timestamp

updatedAtstring required

Updated timestamp

Example response

{
  "id": "orgcfg_abc123",
  "organizationId": "org_abc123",
  "feeRecipientAddresses": {
    "evm": {
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
      "isDefault": true
    },
    "solana": {
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
      "isDefault": true
    },
    "tron": {
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
      "isDefault": true
    },
    "bitcoin": {
      "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
      "isDefault": true
    }
  },
  "refundAccounts": {
    "evm": {
      "accountId": "inw_abc123",
      "address": "9giUCGg4BSigGcWZmUj2Gr6esj8hVr5MZRAKF3oMTNUo",
      "isDefault": true
    },
    "solana": {
      "accountId": "inw_abc123",
      "address": "9giUCGg4BSigGcWZmUj2Gr6esj8hVr5MZRAKF3oMTNUo",
      "isDefault": true
    },
    "tron": {
      "accountId": "inw_abc123",
      "address": "9giUCGg4BSigGcWZmUj2Gr6esj8hVr5MZRAKF3oMTNUo",
      "isDefault": true
    },
    "bitcoin": {
      "accountId": "inw_abc123",
      "address": "9giUCGg4BSigGcWZmUj2Gr6esj8hVr5MZRAKF3oMTNUo",
      "isDefault": true
    }
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.