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.
1
GET /api/network/v1/enterprises/{enterpriseId}/partners/allocations
Step Result
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
{ "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" } ] }