List Partner Connections

get/api/network/v1/enterprises/{enterpriseId}/partners/connections

Returns all your OES connections. For use only by OES partners.

Error scenarios:

  • 400: Invalid Request Error

  • Occurs when the request parameters are invalid or malformed.

  • Examples: Empty string provided for enterpriseId. Invalid query values.

  • 401: Authentication Error

  • Occurs when the request is not authorized.

  • Examples: Caller is not a member of the enterprise.

  • 403: Permission Denied Error

  • Occurs when the authenticated partner doesn't have necessary permissions.

  • Examples: Enterprise does not have OES license.

  • 404: Not Found Error

  • Occurs when the specified enterprise cannot be found.

  • Examples: Enterprise ID doesn't exist or doesn't belong to the partner.

  • 500: Internal Server Error

  • Occurs when there's an unexpected server error processing the request.

  • Examples: Database connection issues, error retrieving connection data.

Path Parameters

  • enterpriseIdstringRequired
    Min length: >= 1 characters

Query Parameters

  • pageNumberstring<integer>
    The page number (integer) you wish to fetch. When provided, the API will skip pageSize * pageNumber records. Page numbers are zero-based, so the first page is 0. If not provided, defaults to 0.
  • pageSizestring
    The page size (integer) you wish to fetch. When provided, the API will return at most pageSize records per page. If not provided, a default page size defined by the server will be used.
  • activeboolean
  • clientIdsarray[string]
  • connectionIdsarray[string]
  • partnersClientIdsarray[string]
    Min length: >= 1 characters
  • partnersConnectionIdsarray[string]
    Min length: >= 1 characters
  • partnerIdsarray[string]

200 Response

connections array[object] required
id string required
The unique identifier of the connection. This UUID uniquely identifies the connection between a client and partner.
name string required
A user-friendly name for the connection. This is a descriptive label provided by the client for this particular connection.
Min length: >= 1 characters
clientId string required
The unique identifier of the client associated with this connection. This UUID uniquely identifies the client organization within the BitGo system.
partnerId string required
The unique identifier of the partner associated with this connection. This UUID uniquely identifies the partner organization within the BitGo system.
networkAccountId string required
The unique identifier of the network account associated with this connection. This references the account where allocated funds are held for this connection.
createdAt string <date-time>required
The date and time when the connection was created. Represented as an ISO 8601 formatted date string.
updatedAt string <date-time>required
The date and time when the connection was last updated. Represented as an ISO 8601 formatted date string.
active boolean required
Indicates whether the connection is active. When false, the connection is deactivated and no operations (like allocations) can be performed on it. When true, the connection is active and operations can be performed on it.
proof string required
The cryptographic proof associated with the connection. This is used for verifying the authenticity of the connection. Derived from the payload and signature submitted when the connection was created.
Min length: >= 1 characters
nonce string required
A nonce value used in the connection cryptographic operations. This provides additional security for connection operations.
Min length: >= 1 characters
partnersConnectionId
string or null
required
The partner's identifier for this connection. This is the identifier used by the partner in their system to refer to this connection. Will be null if the connection hasn't been initialized by the partner.
Min length: >= 1 characters
partnersClientId
string or null
required
The partner's identifier for the client. This is the identifier used by the partner in their system to refer to the client. Will be null if the connection hasn't been initialized by the partner.
Min length: >= 1 characters
initialized boolean required
Indicates whether the connection has been initialized by the partner. When true, the partner has established this connection on their side. When false, the connection is pending initialization by the partner.

400 Response

401 Response

error string required

403 Response

error string required

404 Response

error string required

500 Response

error string required