Skip to main content
POST
/
sdk
/
{environmentId}
/
waas
/
{walletId}
/
delegatedAccess
/
delivery
Deliver encrypted delegated share
curl --request POST \
  --url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/waas/{walletId}/delegatedAccess/delivery \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "encryptedDelegatedShare": {
    "alg": "An example name",
    "iv": "An example name",
    "ct": "<string>",
    "tag": "An example name",
    "ek": "<string>",
    "kid": "An example name"
  }
}
'
{
  "delegatedShareDeliveryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "accepted",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

environmentId
string
required

ID of the environment

Required string length: 36
Example:

"95b11417-f18f-457f-8804-68e361f9164f"

walletId
string
required

UUID of the wallet

Required string length: 36
Example:

"95b11417-f18f-457f-8804-68e361f9164f"

Body

application/json

Encrypted delegated share delivery request

encryptedDelegatedShare
object
required

Response

Delegated share accepted for processing

delegatedShareDeliveryId
string<uuid>
required

Unique identifier for this delivery, used for tracking and correlation

status
enum<string>
required

Current status of the delegated share delivery

Available options:
accepted,
queued
message
string

Human-readable status message