Skip to main content
POST
/
customers
/
{customerId}
/
wallets
/
claim-non-custodial
Claim non-custodial control for a customer
curl --request POST \
  --url https://api.conduit.financial/v2/customers/{customerId}/wallets/claim-non-custodial \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "roster": [
    {
      "email": "jsmith@example.com",
      "name": "<string>",
      "publicKey": "<string>"
    }
  ],
  "signingThreshold": 4503599627370496,
  "chains": [
    "<string>"
  ]
}
'
{
  "claimId": "<string>",
  "customerId": "<string>",
  "status": "provisioning",
  "rosterSize": 4503599627370495,
  "signingThreshold": 4503599627370495,
  "estimatedActivationCompletionMinutes": 0
}

Authorizations

x-api-key
string
header
required

Headers

Idempotency-Key
string
required

Caller-generated unique key that lets the server safely replay this request. The cached response is returned for 5 minutes on any retry with the same key from the same API principal. Required on every state-changing money-moving or resource-creating POST.

Required string length: 1 - 128
Pattern: ^[A-Za-z0-9_.:-]{1,128}$

Path Parameters

customerId
string
required

Body

application/json
roster
object[]
required
Minimum array length: 2
signingThreshold
integer
required
Required range: 1 <= x <= 9007199254740991
chains
string[]
required
Minimum array length: 1

Response

claimId
string
required
Pattern: ^wcc_[0-9A-Za-z]{22}$
customerId
string
required
Pattern: ^cus_[0-9A-Za-z]{22}$
status
enum<string>
required
Available options:
provisioning
rosterSize
integer
required
Required range: 0 <= x <= 9007199254740991
signingThreshold
integer
required
Required range: 0 < x <= 9007199254740991
estimatedActivationCompletionMinutes
integer
Required range: -9007199254740991 <= x <= 9007199254740991