Skip to main content
POST
/
key-stores
/
{storeId}
/
proof-of-control
/
input
Create Proof Of Control Input
curl --request POST \
  --url https://api.dfns.io/key-stores/{storeId}/proof-of-control/input \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-DFNS-USERACTION: <api-key>' \
  --data '
{
  "walletIds": [
    "<string>"
  ]
}
'
"<string>"

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

KeyStores:ProofOfControl:Create: Always required.

Authorizations

Authorization
string
header
required

Bearer Token: Used to authenticate API requests. More details how to generate the token: Authentication flows

X-DFNS-USERACTION
string
header
required

User Action Signature: Used to sign the change-inducing API requests. More details how to generate the token: User Action Signing flows

Path Parameters

storeId
string
required
Minimum string length: 1

Body

application/json
walletIds
string[]
required
Required array length: 1 - 100 elements
Minimum string length: 1

Response

200 - application/zip

Success

Zip archive containing input/input.json (proof of control spec) and input-annex/wrapped-keystore.jsonl (one key per line).

Last modified on July 2, 2026