Connect Go Accounts

Overview

Connect your Go Account to other Go Accounts for streamlined settlements and transactions. Connections are 1-to-1 relationships between 2 Go Accounts. Connecting to Go Accounts creates a connect in each partner's Address Book, enabling Settlements with one another.

Prerequisites

Add a Connection

Add connections to Go Accounts you find in the directory by passing the targetListingEntryId. If a Go Account isn't listed in the directory, you can still add connection if you know the wallet ID of the partner's Go Account.

Endpoint: Add a Go Account connection

  • cURL (listed)
  • cURL (unlisted)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 export ACCESS_TOKEN="<YOUR_ACCESS_TOKEN>" export LISTING_ENTRY_ID="<LISTING_ENTRY_ID>" export LOCAL_LISTING_ENTRY_DESCRIPTION="<LOCAL_LISTING_ENTRY_DESCRIPTION>" export TARGET_LISTING_ENTRY_ID="<TARGET_LISTING_ENTRY_ID>" curl -X POST \ https://app.bitgo-test.com/api/address-book/v1/connections \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $ACCESS_TOKEN" \ -d '{ "listingEntryId": "'"$LISTING_ENTRY_ID"'", "localListingEntryDescription": "'"$LOCAL_LISTING_ENTRY_DESCRIPTION"'", "targetListingEntryId": "'"$TARGET_LISTING_ENTRY_ID"'" }'

Step Result

  • JSON
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 { "connections": [ { "ownerListingEntry": { "listing": { "id": "string", "name": "string", "description": "string", "editable": true }, "id": "string", "walletId": "string", "coin": "string", "type": "GO_ACCOUNT", "description": "string", "discoverable": true, "featured": true, "createdAt": "string", "updatedAt": "string" }, "targetListingEntry": { "listing": { "id": "string", "name": "string", "description": "string", "editable": true }, "id": "string", "walletId": "string", "coin": "string", "type": "GO_ACCOUNT", "description": "string", "discoverable": true, "featured": true, "createdAt": "string", "updatedAt": "string" }, "id": "string", // this is the addressBookConnectionId for settlements "type": "DVP", "status": "PENDING_DEACTIVATION", "label": "string", "description": "string", "createdBy": "string", "updatedBy": "string", "createdAt": "string", "updatedAt": "string" // this is the addressBookConnectionUpdatedAt for settlements } ] }

Next Steps

Settlements

See Also