Skip to main content
POST
/
customers
/
{customerId}
/
wallet-signers
/
{signerId}
/
promote
Promote a signer to admin
curl --request POST \
  --url https://api.conduit.financial/v2/customers/{customerId}/wallet-signers/{signerId}/promote \
  --header 'Idempotency-Key: <idempotency-key>' \
  --header 'x-api-key: <api-key>'
{
  "ceremonyId": "<string>"
}

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
signerId
string
required

Response

ceremonyId
string
required

Identifier for the roster-update ceremony; completion is reported via wallet_signer.promoted / wallet_signer.demoted webhooks.

Pattern: ^wcm_[0-9A-Za-z]{22}$