Skip to main content
POST
/
public
/
v1
/
query
/
list_app_proofs

Authorizations

  • API Key
  • WebAuthn (Passkey)
X-Stamp
string
required
Cryptographically signed (stamped) request to be passed in as a header. For more info, see here.

Body

organizationId
string
required
Unique identifier for a given Organization.
activityId
string
required
Unique identifier for a given activity.

Response

A successful response returns the following fields:
appProofs
array
required
appProofs field
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_app_proofs \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "activityId": "<string>"
}'
{
  "appProofs": [
    {
      "scheme": "<SIGNATURE_SCHEME_EPHEMERAL_KEY_P256>",
      "publicKey": "<string>",
      "proofPayload": "<string>",
      "signature": "<string>"
    }
  ]
}