Partner - View Go Network Details

Overview

BitGo enables you to retrieve Go Network details, including:

  • Allocations and deallocations
  • Balances
  • Settlements

Your Go Network account is identifiable by your enterprise ID. Even though you may have multiple connected clients, you can return all details that pertain to your Go Network account using just your enterprise ID.

BitGo requires you to create a GET endpoint that returns deallocation and allocation status information.

Prerequisites

Select Your Endpoints

The following are BitGo endpoints.

GET /api/network/v1/enterprises/{enterpriseId}/partners/allocations
GET /api/network/v1/enterprises/{enterpriseId}/partners/balances
GET /api/network/v1/enterprises/{enterpriseId}/partners/settlements

Step Result

{
  "allocations": [
    {
      "reason": {},
      "status": "cleared",
      "type": "allocation",
      "id": "string",
      "amount": {
        "currency": "string",
        "quantity": "string"
      },
      "connectionId": "string",
      "clientExternalId": "string",
      "partnerExternalId": "string",
      "initiatedBy": "string",
      "notes": "string",
      "createdAt": "2019-08-24",
      "updatedAt": "2019-08-24"
    }
  ]
}
{
  "partnerId": "string",
  "balances": {
    "property1": {
      "available": "string",
      "held": "string"
    },
    "property2": {
      "available": "string",
      "held": "string"
    }
  },
  "networkBalances": {
    "property1": {
      "clientId": "string",
      "partnersConnectionId": "string",
      "balances": {
        "property1": {
          "available": "string",
          "held": "string"
        },
        "property2": {
          "available": "string",
          "held": "string"
        }
      }
    },
    "property2": {
      "clientId": "string",
      "partnersConnectionId": "string",
      "balances": {
        "property1": {
          "available": "string",
          "held": "string"
        },
        "property2": {
          "available": "string",
          "held": "string"
        }
      }
    }
  }
}
{
  "status": "completed",
  "notes": "string",
  "reason": "string",
  "createdAt": "2019-08-24",
  "updatedAt": "2019-08-24",
  "id": "string",
  "partnerId": "string",
  "externalId": "string",
  "reconciled": true,
  "initiatedBy": "string"
}

See Also