---
title: "Get Signing Payload for Client Connections"
method: GET
path: "/api/network/v1/enterprises/{enterpriseId}/clients/connections/signing"
tags: ["Client Activation"]
---

# Get Signing Payload for Client Connections

`GET /api/network/v1/enterprises/{enterpriseId}/clients/connections/signing`

This API call allows clients to get the client connections payload for signing.
If your HTTP client doesn't support sending a request body on a get request, use the V1ClientConnectionsSigningPostRoute

Error scenarios:
- 400: Invalid Request Error
- Occurs when the request parameters are invalid or malformed
- Examples: Empty string provided for entepriseId, missing required fields in request body.

- 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 client doesn't have necessary permissions.
- Examples: Enterprise does not have OES license.

- 404: Not Found Error
- Occurs when the specified resources cannot be found.
- Examples: Enterprise ID doesn't exist, specified partner ID doesn't exist.

- 500: Internal Server Error
- Occurs when there's an unexpected server error processing the request.
- Examples: Database connection issues. Transient network errors.

**Requires access token scope:** `settlement_network_read`

## Path parameters

- `enterpriseId` string, required

## Request body

- object
  - `partnerId` string, required
  - `name` string, required
  - `connectionKey` union, required
    - TokenConnectionKey
      - `schema` 'token', required
      - `connectionToken` string, required
    - TokenAndSignatureConnectionKey
      - `schema` 'tokenAndSignature', required
      - `connectionToken` string, required
      - `signature` string, required
    - ApiKeyAndSecretConnectionKey
      - `schema` 'apiKeyAndSecret', required
      - `apiKey` string, required
      - `apiSecret` string, required
    - ClearLoopConnectionKey
      - `schema` 'clearloop', required
      - `apiKey` string, required
      - `apiSecret` string, required
      - `clientAccountId` string, required
      - `companyRegistrationNumber` string, required
  - `nonce` string, required

## Response `200`

OK

- V1ClientConnectionsSigningGetPayload
  - `payload` string, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity
- `500` — Internal Server Error

---

[API](https://skmtc.net/bitgo/apis/bitgo-api.md) · [All operations](https://skmtc.net/bitgo/apis/bitgo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bitgo/bitgo-api/revisions/e445c15e5bee/schema)
