# View Go Network Details

Source: https://developers.bitgo.com/docs/oes-partner-view-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

* [Get Started](/docs/get-started-intro)
* [Connect](/docs/oes-partner-connect)
* [Allocate](/docs/oes-partner-allocate)

## Select Your Endpoints

<Tabs>
<Tab title="BitGo Endpoints">
The following are BitGo endpoints.

```json Allocations and Deallocations
GET /api/network/v1/enterprises/{enterpriseId}/partners/allocations
```
```json Balances
GET /api/network/v1/enterprises/{enterpriseId}/partners/balances
```
```json Settlements
GET /api/network/v1/enterprises/{enterpriseId}/partners/settlements
```

#### Step Result

```json Allocations and Deallocations
{
  "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"
    }
  ]
}
```
```json Balances
{
  "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"
        }
      }
    }
  }
}
```
```json Settlements
{
  "settlements": [
    {
      "status": "cleared",
      "id": "string",
      "partnerId": "string",
      "externalId": "string",
      "createdAt": "2019-08-24",
      "updatedAt": "2019-08-24",
      "settlementAmounts": {
        "property1": {
          "property1": "string",
          "property2": "string"
        },
        "property2": {
          "property1": "string",
          "property2": "string"
        }
      },
      "notes": "string"
    }
  ]
}
```
</Tab>
<Tab title="Partner Endpoints">
The following are partner endpoints.

```json Get Allocation
GET /bitgo/v1/allocation/{allocationId}
```
```json Get Deallocation
GET /bitgo/v1/deallocation/{deallocationId}
```

#### Step Result

```json Get Allocation
{
  "allocationId": "string",
  "amount": {
    "currency": "string",
    "quantity": "string"
  },
  "clientId": "string",
  "connectionId": "string",
  "partnersClientId": "string",
  "partnersConnectionId": "string",
  "partnersAllocationId": "string",
  "status": "reserved"
}
```
```json Get Deallocation
{
  "deallocationId": "string",
  "amount": {
    "currency": "string",
    "quantity": "string"
  },
  "clientId": "string",
  "connectionId": "string",
  "partnersClientId": "string",
  "partnersConnectionId": "string",
  "partnersDeallocationId": "string",
  "status": "reserved"
}
```
</Tab>
</Tabs>

## See Also

* [API Reference: List partner Allocations and Deallocations](/reference/v1partnerallocationsgetroute)
* [API Reference: List Partner Balances](/reference/v1partnerbalancesgetroute)
* [API Reference: List Partner Settlements](/reference/v1partnersettlementsgetroute)
