Ledger Enterprise
API Documentation V2
API Documentation V2
  • Introduction
    • Getting Started
    • Overview
  • Guides
    • Authentication
    • Balance Reporting Bot
      • 1. Project setup
      • 2. Connect to revault-api
      • 3. Fetch accounts balances
      • 4. Conclusion
  • reference
    • API reference
      • Users
      • Accounts
        • Transactions
      • Groups
      • Whitelists
      • Policies
      • Entities
      • Requests
        • Generate registration challenge
        • Confirm registration challenge
        • Challenge
        • Approve
        • Reject
      • Auth
        • Token
          • Refresh
      • Permissions
        • Allowed actions
        • Resources
      • Assets
        • Currencies
        • Tokens
      • Tradelink
        • Network
          • Blueprint
    • Specification
Powered by GitBook
On this page
  1. reference
  2. API reference
  3. Tradelink

Network

PreviousTradelinkNextBlueprint

Get Tradelink network instance

get

Get the materialized Tradelink Network configuration of workspace

Authorizations
Responses
200
Successful response
application/json
default
Error response
application/json
get
GET /rest/tradelink/network HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "custodian": {
    "id": "text",
    "settlement": [
      {
        "quorum": 1,
        "userIds": [
          "text"
        ]
      }
    ],
    "withdraw": [
      {
        "quorum": 1,
        "userIds": [
          "text"
        ]
      }
    ],
    "arbitration": [
      {
        "quorum": 1,
        "userIds": [
          "text"
        ]
      }
    ]
  },
  "exchanges": [
    {
      "type": "ASSET_MANAGER",
      "id": "text",
      "tradelinkId": "text",
      "groups": [
        {
          "quorum": 1,
          "userIds": [
            "text"
          ]
        }
      ],
      "whitelist": [
        {
          "name": "text",
          "currency": "text",
          "address": "text"
        }
      ]
    }
  ],
  "assetManagers": [
    {
      "type": "ASSET_MANAGER",
      "id": "text",
      "tradelinkId": "text",
      "groups": [
        {
          "quorum": 1,
          "userIds": [
            "text"
          ]
        }
      ],
      "whitelist": [
        {
          "name": "text",
          "currency": "text",
          "address": "text"
        }
      ]
    }
  ]
}