Deallocate Assets
Overview
Deallocate assets from a connected partner to your Go Network account. Deallocating assets unlocks them at BitGo, making them available for any other action, such as rebalancing or withdrawing. Deallocations occur synchronously. You can view your deallocated balance from the BitGo web UI or programmatically.
Prerequisites
Steps
1 2 3 4 5 6 7 8 9 10 11 12 13 14
POST /api/network/v1/enterprises/{enterpriseId}/clients/connections/{connectionId}/deallocations 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
{ "deallocation": { "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" } }