Allocate Assets

Overview

Allocate assets in your Go Network account to a connected-partner platform. Allocated assets are locked with BitGo and available for trading on the connected partner's platform. Allocations occur synchronously. You can view your allocated balance from the BitGo web UI or programmatically, as well as from your account on the connected-partner platform.

Prerequisites

Steps

  • API
1 2 3 4 5 6 7 8 9 10 11 12 13 14 POST /api/network/v1/enterprises/{enterpriseId}/clients/connections/{connectionId}/allocations Request Body { "amount": { "currency": "string", "quantity": "string" }, "clientExternalId": "string", "payload": "string", "signature": "string", "nonce": "string", "notes": "string" }

Step Result

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 { "allocation": { "status": "cleared", "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" } }

Next

  • You can trade your allocated funds on the connected partner's platform.
  • Deallocate Assets

See Also

API Reference: Allocate funds to Partner Connection