curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_activities \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "filterByStatus": [
        "<ACTIVITY_STATUS_CREATED>"
    ],
    "paginationOptions": {
        "limit": "<string>",
        "before": "<string>",
        "after": "<string>"
    },
    "filterByType": [
        "<ACTIVITY_TYPE_CREATE_API_KEYS>"
    ]
}'
{
  "activities": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "status": "<ACTIVITY_STATUS_CREATED>",
      "type": "<ACTIVITY_TYPE_CREATE_API_KEYS>",
      "intent": {
        "createOrganizationIntent": {
          "organizationName": "<string>",
          "rootEmail": "<string>",
          "rootAuthenticator": {
            "authenticatorName": "<string>",
            "userId": "<string>",
            "attestation": {
              "id": "<string>",
              "type": "<public-key>",
              "rawId": "<string>",
              "authenticatorAttachment": "<cross-platform>",
              "response": {
                "clientDataJson": "<string>",
                "attestationObject": "<string>",
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ],
                "authenticatorAttachment": "<cross-platform>"
              },
              "clientExtensionResults": {
                "appid": "<boolean>",
                "appidExclude": "<boolean>",
                "credProps": {
                  "rk": "<boolean>"
                }
              }
            },
            "challenge": "<string>"
          },
          "rootUserId": "<string>"
        },
        "createAuthenticatorsIntent": {
          "authenticators": [
            {
              "authenticatorName": "<string>",
              "userId": "<string>",
              "attestation": {
                "id": "<string>",
                "type": "<public-key>",
                "rawId": "<string>",
                "authenticatorAttachment": "<cross-platform>",
                "response": {
                  "clientDataJson": "<string>",
                  "attestationObject": "<string>",
                  "transports": [
                    "<AUTHENTICATOR_TRANSPORT_BLE>"
                  ],
                  "authenticatorAttachment": "<cross-platform>"
                },
                "clientExtensionResults": {
                  "appid": "<boolean>",
                  "appidExclude": "<boolean>",
                  "credProps": {
                    "rk": "<boolean>"
                  }
                }
              },
              "challenge": "<string>"
            }
          ],
          "userId": "<string>"
        },
        "createUsersIntent": {
          "users": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "accessType": "<ACCESS_TYPE_WEB>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "userId": "<string>",
                  "attestation": {
                    "id": "<string>",
                    "type": "<public-key>",
                    "rawId": "<string>",
                    "authenticatorAttachment": "<cross-platform>",
                    "response": {
                      "clientDataJson": "<string>",
                      "attestationObject": "<string>",
                      "transports": [
                        "<AUTHENTICATOR_TRANSPORT_BLE>"
                      ],
                      "authenticatorAttachment": "<cross-platform>"
                    },
                    "clientExtensionResults": {
                      "appid": "<boolean>",
                      "appidExclude": "<boolean>",
                      "credProps": {
                        "rk": "<boolean>"
                      }
                    }
                  },
                  "challenge": "<string>"
                }
              ],
              "userTags": [
                "<string>"
              ]
            }
          ]
        },
        "createPrivateKeysIntent": {
          "privateKeys": [
            {
              "privateKeyName": "<string>",
              "curve": "<CURVE_SECP256K1>",
              "privateKeyTags": [
                "<string>"
              ],
              "addressFormats": [
                "<ADDRESS_FORMAT_UNCOMPRESSED>"
              ]
            }
          ]
        },
        "signRawPayloadIntent": {
          "privateKeyId": "<string>",
          "payload": "<string>",
          "encoding": "<PAYLOAD_ENCODING_HEXADECIMAL>",
          "hashFunction": "<HASH_FUNCTION_NO_OP>"
        },
        "createInvitationsIntent": {
          "invitations": [
            {
              "receiverUserName": "<string>",
              "receiverUserEmail": "<string>",
              "receiverUserTags": [
                "<string>"
              ],
              "accessType": "<ACCESS_TYPE_WEB>",
              "senderUserId": "<string>"
            }
          ]
        },
        "acceptInvitationIntent": {
          "invitationId": "<string>",
          "userId": "<string>",
          "authenticator": {
            "authenticatorName": "<string>",
            "userId": "<string>",
            "attestation": {
              "id": "<string>",
              "type": "<public-key>",
              "rawId": "<string>",
              "authenticatorAttachment": "<cross-platform>",
              "response": {
                "clientDataJson": "<string>",
                "attestationObject": "<string>",
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ],
                "authenticatorAttachment": "<cross-platform>"
              },
              "clientExtensionResults": {
                "appid": "<boolean>",
                "appidExclude": "<boolean>",
                "credProps": {
                  "rk": "<boolean>"
                }
              }
            },
            "challenge": "<string>"
          }
        },
        "createPolicyIntent": {
          "policyName": "<string>",
          "selectors": [
            {
              "subject": "<string>",
              "operator": "<OPERATOR_EQUAL>",
              "target": "<string>"
            }
          ],
          "effect": "<EFFECT_ALLOW>",
          "notes": "<string>"
        },
        "disablePrivateKeyIntent": {
          "privateKeyId": "<string>"
        },
        "deleteUsersIntent": {
          "userIds": [
            "<string>"
          ]
        },
        "deleteAuthenticatorsIntent": {
          "userId": "<string>",
          "authenticatorIds": [
            "<string>"
          ]
        },
        "deleteInvitationIntent": {
          "invitationId": "<string>"
        },
        "deleteOrganizationIntent": {
          "organizationId": "<string>"
        },
        "deletePolicyIntent": {
          "policyId": "<string>"
        },
        "createUserTagIntent": {
          "userTagName": "<string>",
          "userIds": [
            "<string>"
          ]
        },
        "deleteUserTagsIntent": {
          "userTagIds": [
            "<string>"
          ]
        },
        "signTransactionIntent": {
          "privateKeyId": "<string>",
          "unsignedTransaction": "<string>",
          "type": "<TRANSACTION_TYPE_ETHEREUM>"
        },
        "createApiKeysIntent": {
          "apiKeys": [
            {
              "apiKeyName": "<string>",
              "publicKey": "<string>",
              "expirationSeconds": "<string>"
            }
          ],
          "userId": "<string>"
        },
        "deleteApiKeysIntent": {
          "userId": "<string>",
          "apiKeyIds": [
            "<string>"
          ]
        },
        "approveActivityIntent": {
          "fingerprint": "<string>"
        },
        "rejectActivityIntent": {
          "fingerprint": "<string>"
        },
        "createPrivateKeyTagIntent": {
          "privateKeyTagName": "<string>",
          "privateKeyIds": [
            "<string>"
          ]
        },
        "deletePrivateKeyTagsIntent": {
          "privateKeyTagIds": [
            "<string>"
          ]
        },
        "createPolicyIntentV2": {
          "policyName": "<string>",
          "selectors": [
            {
              "subject": "<string>",
              "operator": "<OPERATOR_EQUAL>",
              "targets": [
                "<string>"
              ]
            }
          ],
          "effect": "<EFFECT_ALLOW>",
          "notes": "<string>"
        },
        "setPaymentMethodIntent": {
          "number": "<string>",
          "cvv": "<string>",
          "expiryMonth": "<string>",
          "expiryYear": "<string>",
          "cardHolderEmail": "<string>",
          "cardHolderName": "<string>"
        },
        "activateBillingTierIntent": {
          "productId": "<string>"
        },
        "deletePaymentMethodIntent": {
          "paymentMethodId": "<string>"
        },
        "createPolicyIntentV3": {
          "policyName": "<string>",
          "effect": "<EFFECT_ALLOW>",
          "condition": "<string>",
          "consensus": "<string>",
          "notes": "<string>"
        },
        "createApiOnlyUsersIntent": {
          "apiOnlyUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "userTags": [
                "<string>"
              ],
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ]
            }
          ]
        },
        "updateRootQuorumIntent": {
          "threshold": "<number>",
          "userIds": [
            "<string>"
          ]
        },
        "updateUserTagIntent": {
          "userTagId": "<string>",
          "newUserTagName": "<string>",
          "addUserIds": [
            "<string>"
          ],
          "removeUserIds": [
            "<string>"
          ]
        },
        "updatePrivateKeyTagIntent": {
          "privateKeyTagId": "<string>",
          "newPrivateKeyTagName": "<string>",
          "addPrivateKeyIds": [
            "<string>"
          ],
          "removePrivateKeyIds": [
            "<string>"
          ]
        },
        "createAuthenticatorsIntentV2": {
          "authenticators": [
            {
              "authenticatorName": "<string>",
              "challenge": "<string>",
              "attestation": {
                "credentialId": "<string>",
                "clientDataJson": "<string>",
                "attestationObject": "<string>",
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ]
              }
            }
          ],
          "userId": "<string>"
        },
        "acceptInvitationIntentV2": {
          "invitationId": "<string>",
          "userId": "<string>",
          "authenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          }
        },
        "createOrganizationIntentV2": {
          "organizationName": "<string>",
          "rootEmail": "<string>",
          "rootAuthenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          },
          "rootUserId": "<string>"
        },
        "createUsersIntentV2": {
          "users": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "userTags": [
                "<string>"
              ]
            }
          ]
        },
        "createSubOrganizationIntent": {
          "name": "<string>",
          "rootAuthenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          }
        },
        "createSubOrganizationIntentV2": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>"
        },
        "updateAllowedOriginsIntent": {
          "allowedOrigins": [
            "<string>"
          ]
        },
        "createPrivateKeysIntentV2": {
          "privateKeys": [
            {
              "privateKeyName": "<string>",
              "curve": "<CURVE_SECP256K1>",
              "privateKeyTags": [
                "<string>"
              ],
              "addressFormats": [
                "<ADDRESS_FORMAT_UNCOMPRESSED>"
              ]
            }
          ]
        },
        "updateUserIntent": {
          "userId": "<string>",
          "userName": "<string>",
          "userEmail": "<string>",
          "userTagIds": [
            "<string>"
          ],
          "userPhoneNumber": "<string>"
        },
        "updatePolicyIntent": {
          "policyId": "<string>",
          "policyName": "<string>",
          "policyEffect": "<EFFECT_ALLOW>",
          "policyCondition": "<string>",
          "policyConsensus": "<string>",
          "policyNotes": "<string>"
        },
        "setPaymentMethodIntentV2": {
          "paymentMethodId": "<string>",
          "cardHolderEmail": "<string>",
          "cardHolderName": "<string>"
        },
        "createSubOrganizationIntentV3": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "privateKeys": [
            {
              "privateKeyName": "<string>",
              "curve": "<CURVE_SECP256K1>",
              "privateKeyTags": [
                "<string>"
              ],
              "addressFormats": [
                "<ADDRESS_FORMAT_UNCOMPRESSED>"
              ]
            }
          ]
        },
        "createWalletIntent": {
          "walletName": "<string>",
          "accounts": [
            {
              "curve": "<CURVE_SECP256K1>",
              "pathFormat": "<PATH_FORMAT_BIP32>",
              "path": "<string>",
              "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
            }
          ],
          "mnemonicLength": "<number>"
        },
        "createWalletAccountsIntent": {
          "walletId": "<string>",
          "accounts": [
            {
              "curve": "<CURVE_SECP256K1>",
              "pathFormat": "<PATH_FORMAT_BIP32>",
              "path": "<string>",
              "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
            }
          ]
        },
        "initUserEmailRecoveryIntent": {
          "email": "<string>",
          "targetPublicKey": "<string>",
          "expirationSeconds": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          }
        },
        "recoverUserIntent": {
          "authenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          },
          "userId": "<string>"
        },
        "setOrganizationFeatureIntent": {
          "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
          "value": "<string>"
        },
        "removeOrganizationFeatureIntent": {
          "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>"
        },
        "signRawPayloadIntentV2": {
          "signWith": "<string>",
          "payload": "<string>",
          "encoding": "<PAYLOAD_ENCODING_HEXADECIMAL>",
          "hashFunction": "<HASH_FUNCTION_NO_OP>"
        },
        "signTransactionIntentV2": {
          "signWith": "<string>",
          "unsignedTransaction": "<string>",
          "type": "<TRANSACTION_TYPE_ETHEREUM>"
        },
        "exportPrivateKeyIntent": {
          "privateKeyId": "<string>",
          "targetPublicKey": "<string>"
        },
        "exportWalletIntent": {
          "walletId": "<string>",
          "targetPublicKey": "<string>",
          "language": "<MNEMONIC_LANGUAGE_ENGLISH>"
        },
        "createSubOrganizationIntentV4": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>"
        },
        "emailAuthIntent": {
          "email": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "invalidateExisting": "<boolean>",
          "sendFromEmailAddress": "<string>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "exportWalletAccountIntent": {
          "address": "<string>",
          "targetPublicKey": "<string>"
        },
        "initImportWalletIntent": {
          "userId": "<string>"
        },
        "importWalletIntent": {
          "userId": "<string>",
          "walletName": "<string>",
          "encryptedBundle": "<string>",
          "accounts": [
            {
              "curve": "<CURVE_SECP256K1>",
              "pathFormat": "<PATH_FORMAT_BIP32>",
              "path": "<string>",
              "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
            }
          ]
        },
        "initImportPrivateKeyIntent": {
          "userId": "<string>"
        },
        "importPrivateKeyIntent": {
          "userId": "<string>",
          "privateKeyName": "<string>",
          "encryptedBundle": "<string>",
          "curve": "<CURVE_SECP256K1>",
          "addressFormats": [
            "<ADDRESS_FORMAT_UNCOMPRESSED>"
          ]
        },
        "createPoliciesIntent": {
          "policies": [
            {
              "policyName": "<string>",
              "effect": "<EFFECT_ALLOW>",
              "condition": "<string>",
              "consensus": "<string>",
              "notes": "<string>"
            }
          ]
        },
        "signRawPayloadsIntent": {
          "signWith": "<string>",
          "payloads": [
            "<string>"
          ],
          "encoding": "<PAYLOAD_ENCODING_HEXADECIMAL>",
          "hashFunction": "<HASH_FUNCTION_NO_OP>"
        },
        "createReadOnlySessionIntent": "<object>",
        "createOauthProvidersIntent": {
          "userId": "<string>",
          "oauthProviders": [
            {
              "providerName": "<string>",
              "oidcToken": "<string>"
            }
          ]
        },
        "deleteOauthProvidersIntent": {
          "userId": "<string>",
          "providerIds": [
            "<string>"
          ]
        },
        "createSubOrganizationIntentV5": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>"
        },
        "oauthIntent": {
          "oidcToken": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "createApiKeysIntentV2": {
          "apiKeys": [
            {
              "apiKeyName": "<string>",
              "publicKey": "<string>",
              "curveType": "<API_KEY_CURVE_P256>",
              "expirationSeconds": "<string>"
            }
          ],
          "userId": "<string>"
        },
        "createReadWriteSessionIntent": {
          "targetPublicKey": "<string>",
          "email": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>"
        },
        "emailAuthIntentV2": {
          "email": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "invalidateExisting": "<boolean>",
          "sendFromEmailAddress": "<string>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "createSubOrganizationIntentV6": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "curveType": "<API_KEY_CURVE_P256>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>"
        },
        "deletePrivateKeysIntent": {
          "privateKeyIds": [
            "<string>"
          ],
          "deleteWithoutExport": "<boolean>"
        },
        "deleteWalletsIntent": {
          "walletIds": [
            "<string>"
          ],
          "deleteWithoutExport": "<boolean>"
        },
        "createReadWriteSessionIntentV2": {
          "targetPublicKey": "<string>",
          "userId": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "deleteSubOrganizationIntent": {
          "deleteWithoutExport": "<boolean>"
        },
        "initOtpAuthIntent": {
          "otpType": "<string>",
          "contact": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "smsCustomization": {
            "template": "<string>"
          },
          "userIdentifier": "<string>",
          "sendFromEmailAddress": "<string>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "otpAuthIntent": {
          "otpId": "<string>",
          "otpCode": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "createSubOrganizationIntentV7": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "userPhoneNumber": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "curveType": "<API_KEY_CURVE_P256>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>",
          "disableSmsAuth": "<boolean>",
          "disableOtpEmailAuth": "<boolean>"
        },
        "updateWalletIntent": {
          "walletId": "<string>",
          "walletName": "<string>"
        },
        "updatePolicyIntentV2": {
          "policyId": "<string>",
          "policyName": "<string>",
          "policyEffect": "<EFFECT_ALLOW>",
          "policyCondition": "<string>",
          "policyConsensus": "<string>",
          "policyNotes": "<string>"
        },
        "createUsersIntentV3": {
          "users": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "userPhoneNumber": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "curveType": "<API_KEY_CURVE_P256>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ],
              "userTags": [
                "<string>"
              ]
            }
          ]
        },
        "initOtpAuthIntentV2": {
          "otpType": "<string>",
          "contact": "<string>",
          "otpLength": "<number>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "smsCustomization": {
            "template": "<string>"
          },
          "userIdentifier": "<string>",
          "sendFromEmailAddress": "<string>",
          "alphanumeric": "<boolean>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "initOtpIntent": {
          "otpType": "<string>",
          "contact": "<string>",
          "otpLength": "<number>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "smsCustomization": {
            "template": "<string>"
          },
          "userIdentifier": "<string>",
          "sendFromEmailAddress": "<string>",
          "alphanumeric": "<boolean>",
          "sendFromEmailSenderName": "<string>",
          "expirationSeconds": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "verifyOtpIntent": {
          "otpId": "<string>",
          "otpCode": "<string>",
          "expirationSeconds": "<string>"
        },
        "otpLoginIntent": {
          "verificationToken": "<string>",
          "publicKey": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "stampLoginIntent": {
          "publicKey": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "oauthLoginIntent": {
          "oidcToken": "<string>",
          "publicKey": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        }
      },
      "result": {
        "createOrganizationResult": {
          "organizationId": "<string>"
        },
        "createAuthenticatorsResult": {
          "authenticatorIds": [
            "<string>"
          ]
        },
        "createUsersResult": {
          "userIds": [
            "<string>"
          ]
        },
        "createPrivateKeysResult": {
          "privateKeyIds": [
            "<string>"
          ]
        },
        "createInvitationsResult": {
          "invitationIds": [
            "<string>"
          ]
        },
        "acceptInvitationResult": {
          "invitationId": "<string>",
          "userId": "<string>"
        },
        "signRawPayloadResult": {
          "r": "<string>",
          "s": "<string>",
          "v": "<string>"
        },
        "createPolicyResult": {
          "policyId": "<string>"
        },
        "disablePrivateKeyResult": {
          "privateKeyId": "<string>"
        },
        "deleteUsersResult": {
          "userIds": [
            "<string>"
          ]
        },
        "deleteAuthenticatorsResult": {
          "authenticatorIds": [
            "<string>"
          ]
        },
        "deleteInvitationResult": {
          "invitationId": "<string>"
        },
        "deleteOrganizationResult": {
          "organizationId": "<string>"
        },
        "deletePolicyResult": {
          "policyId": "<string>"
        },
        "createUserTagResult": {
          "userTagId": "<string>",
          "userIds": [
            "<string>"
          ]
        },
        "deleteUserTagsResult": {
          "userTagIds": [
            "<string>"
          ],
          "userIds": [
            "<string>"
          ]
        },
        "signTransactionResult": {
          "signedTransaction": "<string>"
        },
        "deleteApiKeysResult": {
          "apiKeyIds": [
            "<string>"
          ]
        },
        "createApiKeysResult": {
          "apiKeyIds": [
            "<string>"
          ]
        },
        "createPrivateKeyTagResult": {
          "privateKeyTagId": "<string>",
          "privateKeyIds": [
            "<string>"
          ]
        },
        "deletePrivateKeyTagsResult": {
          "privateKeyTagIds": [
            "<string>"
          ],
          "privateKeyIds": [
            "<string>"
          ]
        },
        "setPaymentMethodResult": {
          "lastFour": "<string>",
          "cardHolderName": "<string>",
          "cardHolderEmail": "<string>"
        },
        "activateBillingTierResult": {
          "productId": "<string>"
        },
        "deletePaymentMethodResult": {
          "paymentMethodId": "<string>"
        },
        "createApiOnlyUsersResult": {
          "userIds": [
            "<string>"
          ]
        },
        "updateRootQuorumResult": "<object>",
        "updateUserTagResult": {
          "userTagId": "<string>"
        },
        "updatePrivateKeyTagResult": {
          "privateKeyTagId": "<string>"
        },
        "createSubOrganizationResult": {
          "subOrganizationId": "<string>",
          "rootUserIds": [
            "<string>"
          ]
        },
        "updateAllowedOriginsResult": "<object>",
        "createPrivateKeysResultV2": {
          "privateKeys": [
            {
              "privateKeyId": "<string>",
              "addresses": [
                {
                  "format": "<ADDRESS_FORMAT_UNCOMPRESSED>",
                  "address": "<string>"
                }
              ]
            }
          ]
        },
        "updateUserResult": {
          "userId": "<string>"
        },
        "updatePolicyResult": {
          "policyId": "<string>"
        },
        "createSubOrganizationResultV3": {
          "subOrganizationId": "<string>",
          "privateKeys": [
            {
              "privateKeyId": "<string>",
              "addresses": [
                {
                  "format": "<ADDRESS_FORMAT_UNCOMPRESSED>",
                  "address": "<string>"
                }
              ]
            }
          ],
          "rootUserIds": [
            "<string>"
          ]
        },
        "createWalletResult": {
          "walletId": "<string>",
          "addresses": [
            "<string>"
          ]
        },
        "createWalletAccountsResult": {
          "addresses": [
            "<string>"
          ]
        },
        "initUserEmailRecoveryResult": {
          "userId": "<string>"
        },
        "recoverUserResult": {
          "authenticatorId": [
            "<string>"
          ]
        },
        "setOrganizationFeatureResult": {
          "features": [
            {
              "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
              "value": "<string>"
            }
          ]
        },
        "removeOrganizationFeatureResult": {
          "features": [
            {
              "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
              "value": "<string>"
            }
          ]
        },
        "exportPrivateKeyResult": {
          "privateKeyId": "<string>",
          "exportBundle": "<string>"
        },
        "exportWalletResult": {
          "walletId": "<string>",
          "exportBundle": "<string>"
        },
        "createSubOrganizationResultV4": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "emailAuthResult": {
          "userId": "<string>",
          "apiKeyId": "<string>"
        },
        "exportWalletAccountResult": {
          "address": "<string>",
          "exportBundle": "<string>"
        },
        "initImportWalletResult": {
          "importBundle": "<string>"
        },
        "importWalletResult": {
          "walletId": "<string>",
          "addresses": [
            "<string>"
          ]
        },
        "initImportPrivateKeyResult": {
          "importBundle": "<string>"
        },
        "importPrivateKeyResult": {
          "privateKeyId": "<string>",
          "addresses": [
            {
              "format": "<ADDRESS_FORMAT_UNCOMPRESSED>",
              "address": "<string>"
            }
          ]
        },
        "createPoliciesResult": {
          "policyIds": [
            "<string>"
          ]
        },
        "signRawPayloadsResult": {
          "signatures": [
            {
              "r": "<string>",
              "s": "<string>",
              "v": "<string>"
            }
          ]
        },
        "createReadOnlySessionResult": {
          "organizationId": "<string>",
          "organizationName": "<string>",
          "userId": "<string>",
          "username": "<string>",
          "session": "<string>",
          "sessionExpiry": "<string>"
        },
        "createOauthProvidersResult": {
          "providerIds": [
            "<string>"
          ]
        },
        "deleteOauthProvidersResult": {
          "providerIds": [
            "<string>"
          ]
        },
        "createSubOrganizationResultV5": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "oauthResult": {
          "userId": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "createReadWriteSessionResult": {
          "organizationId": "<string>",
          "organizationName": "<string>",
          "userId": "<string>",
          "username": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "createSubOrganizationResultV6": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "deletePrivateKeysResult": {
          "privateKeyIds": [
            "<string>"
          ]
        },
        "deleteWalletsResult": {
          "walletIds": [
            "<string>"
          ]
        },
        "createReadWriteSessionResultV2": {
          "organizationId": "<string>",
          "organizationName": "<string>",
          "userId": "<string>",
          "username": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "deleteSubOrganizationResult": {
          "subOrganizationUuid": "<string>"
        },
        "initOtpAuthResult": {
          "otpId": "<string>"
        },
        "otpAuthResult": {
          "userId": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "createSubOrganizationResultV7": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "updateWalletResult": {
          "walletId": "<string>"
        },
        "updatePolicyResultV2": {
          "policyId": "<string>"
        },
        "initOtpAuthResultV2": {
          "otpId": "<string>"
        },
        "initOtpResult": {
          "otpId": "<string>"
        },
        "verifyOtpResult": {
          "verificationToken": "<string>"
        },
        "otpLoginResult": {
          "session": "<string>"
        },
        "stampLoginResult": {
          "session": "<string>"
        },
        "oauthLoginResult": {
          "session": "<string>"
        }
      },
      "votes": [
        {
          "id": "<string>",
          "userId": "<string>",
          "user": {
            "userId": "<string>",
            "userName": "<string>",
            "userEmail": "<string>",
            "userPhoneNumber": "<string>",
            "authenticators": [
              {
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ],
                "attestationType": "<string>",
                "aaguid": "<string>",
                "credentialId": "<string>",
                "model": "<string>",
                "credential": {
                  "publicKey": "<string>",
                  "type": "<CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR>"
                },
                "authenticatorId": "<string>",
                "authenticatorName": "<string>",
                "createdAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "updatedAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                }
              }
            ],
            "apiKeys": [
              {
                "credential": {
                  "publicKey": "<string>",
                  "type": "<CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR>"
                },
                "apiKeyId": "<string>",
                "apiKeyName": "<string>",
                "createdAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "updatedAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "expirationSeconds": "<string>"
              }
            ],
            "userTags": [
              "<string>"
            ],
            "oauthProviders": [
              {
                "providerId": "<string>",
                "providerName": "<string>",
                "issuer": "<string>",
                "audience": "<string>",
                "subject": "<string>",
                "createdAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "updatedAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                }
              }
            ],
            "createdAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            },
            "updatedAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            }
          },
          "activityId": "<string>",
          "selection": "<VOTE_SELECTION_APPROVED>",
          "message": "<string>",
          "publicKey": "<string>",
          "signature": "<string>",
          "scheme": "<string>",
          "createdAt": {
            "seconds": "<string>",
            "nanos": "<string>"
          }
        }
      ],
      "fingerprint": "<string>",
      "canApprove": "<boolean>",
      "canReject": "<boolean>",
      "createdAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "updatedAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "failure": {
        "code": "<number>",
        "message": "<string>",
        "details": [
          {
            "@type": "<string>"
          }
        ]
      }
    }
  ]
}
POST
/
public
/
v1
/
query
/
list_activities

Authorizations

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.
filterByStatus
enum<string[]>
Enum options: ACTIVITY_STATUS_CREATED, ACTIVITY_STATUS_PENDING, ACTIVITY_STATUS_COMPLETED, ACTIVITY_STATUS_FAILED, ACTIVITY_STATUS_CONSENSUS_NEEDED, ACTIVITY_STATUS_REJECTED
paginationOptions
object

paginationOptions field

filterByType
enum<string[]>
Enum options: ACTIVITY_TYPE_CREATE_API_KEYS, ACTIVITY_TYPE_CREATE_USERS, ACTIVITY_TYPE_CREATE_PRIVATE_KEYS, ACTIVITY_TYPE_SIGN_RAW_PAYLOAD, ACTIVITY_TYPE_CREATE_INVITATIONS, ACTIVITY_TYPE_ACCEPT_INVITATION, ACTIVITY_TYPE_CREATE_POLICY, ACTIVITY_TYPE_DISABLE_PRIVATE_KEY, ACTIVITY_TYPE_DELETE_USERS, ACTIVITY_TYPE_DELETE_API_KEYS, ACTIVITY_TYPE_DELETE_INVITATION, ACTIVITY_TYPE_DELETE_ORGANIZATION, ACTIVITY_TYPE_DELETE_POLICY, ACTIVITY_TYPE_CREATE_USER_TAG, ACTIVITY_TYPE_DELETE_USER_TAGS, ACTIVITY_TYPE_CREATE_ORGANIZATION, ACTIVITY_TYPE_SIGN_TRANSACTION, ACTIVITY_TYPE_APPROVE_ACTIVITY, ACTIVITY_TYPE_REJECT_ACTIVITY, ACTIVITY_TYPE_DELETE_AUTHENTICATORS, ACTIVITY_TYPE_CREATE_AUTHENTICATORS, ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG, ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS, ACTIVITY_TYPE_SET_PAYMENT_METHOD, ACTIVITY_TYPE_ACTIVATE_BILLING_TIER, ACTIVITY_TYPE_DELETE_PAYMENT_METHOD, ACTIVITY_TYPE_CREATE_POLICY_V2, ACTIVITY_TYPE_CREATE_POLICY_V3, ACTIVITY_TYPE_CREATE_API_ONLY_USERS, ACTIVITY_TYPE_UPDATE_ROOT_QUORUM, ACTIVITY_TYPE_UPDATE_USER_TAG, ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG, ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2, ACTIVITY_TYPE_CREATE_ORGANIZATION_V2, ACTIVITY_TYPE_CREATE_USERS_V2, ACTIVITY_TYPE_ACCEPT_INVITATION_V2, ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION, ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2, ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS, ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2, ACTIVITY_TYPE_UPDATE_USER, ACTIVITY_TYPE_UPDATE_POLICY, ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2, ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3, ACTIVITY_TYPE_CREATE_WALLET, ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS, ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY, ACTIVITY_TYPE_RECOVER_USER, ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE, ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE, ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2, ACTIVITY_TYPE_SIGN_TRANSACTION_V2, ACTIVITY_TYPE_EXPORT_PRIVATE_KEY, ACTIVITY_TYPE_EXPORT_WALLET, ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4, ACTIVITY_TYPE_EMAIL_AUTH, ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT, ACTIVITY_TYPE_INIT_IMPORT_WALLET, ACTIVITY_TYPE_IMPORT_WALLET, ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY, ACTIVITY_TYPE_IMPORT_PRIVATE_KEY, ACTIVITY_TYPE_CREATE_POLICIES, ACTIVITY_TYPE_SIGN_RAW_PAYLOADS, ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION, ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS, ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS, ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5, ACTIVITY_TYPE_OAUTH, ACTIVITY_TYPE_CREATE_API_KEYS_V2, ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION, ACTIVITY_TYPE_EMAIL_AUTH_V2, ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6, ACTIVITY_TYPE_DELETE_PRIVATE_KEYS, ACTIVITY_TYPE_DELETE_WALLETS, ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2, ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION, ACTIVITY_TYPE_INIT_OTP_AUTH, ACTIVITY_TYPE_OTP_AUTH, ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7, ACTIVITY_TYPE_UPDATE_WALLET, ACTIVITY_TYPE_UPDATE_POLICY_V2, ACTIVITY_TYPE_CREATE_USERS_V3, ACTIVITY_TYPE_INIT_OTP_AUTH_V2, ACTIVITY_TYPE_INIT_OTP, ACTIVITY_TYPE_VERIFY_OTP, ACTIVITY_TYPE_OTP_LOGIN, ACTIVITY_TYPE_STAMP_LOGIN, ACTIVITY_TYPE_OAUTH_LOGIN

Response

A successful response returns the following fields:
activities
array
required
A list of Activities.
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_activities \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "filterByStatus": [
        "<ACTIVITY_STATUS_CREATED>"
    ],
    "paginationOptions": {
        "limit": "<string>",
        "before": "<string>",
        "after": "<string>"
    },
    "filterByType": [
        "<ACTIVITY_TYPE_CREATE_API_KEYS>"
    ]
}'
{
  "activities": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "status": "<ACTIVITY_STATUS_CREATED>",
      "type": "<ACTIVITY_TYPE_CREATE_API_KEYS>",
      "intent": {
        "createOrganizationIntent": {
          "organizationName": "<string>",
          "rootEmail": "<string>",
          "rootAuthenticator": {
            "authenticatorName": "<string>",
            "userId": "<string>",
            "attestation": {
              "id": "<string>",
              "type": "<public-key>",
              "rawId": "<string>",
              "authenticatorAttachment": "<cross-platform>",
              "response": {
                "clientDataJson": "<string>",
                "attestationObject": "<string>",
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ],
                "authenticatorAttachment": "<cross-platform>"
              },
              "clientExtensionResults": {
                "appid": "<boolean>",
                "appidExclude": "<boolean>",
                "credProps": {
                  "rk": "<boolean>"
                }
              }
            },
            "challenge": "<string>"
          },
          "rootUserId": "<string>"
        },
        "createAuthenticatorsIntent": {
          "authenticators": [
            {
              "authenticatorName": "<string>",
              "userId": "<string>",
              "attestation": {
                "id": "<string>",
                "type": "<public-key>",
                "rawId": "<string>",
                "authenticatorAttachment": "<cross-platform>",
                "response": {
                  "clientDataJson": "<string>",
                  "attestationObject": "<string>",
                  "transports": [
                    "<AUTHENTICATOR_TRANSPORT_BLE>"
                  ],
                  "authenticatorAttachment": "<cross-platform>"
                },
                "clientExtensionResults": {
                  "appid": "<boolean>",
                  "appidExclude": "<boolean>",
                  "credProps": {
                    "rk": "<boolean>"
                  }
                }
              },
              "challenge": "<string>"
            }
          ],
          "userId": "<string>"
        },
        "createUsersIntent": {
          "users": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "accessType": "<ACCESS_TYPE_WEB>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "userId": "<string>",
                  "attestation": {
                    "id": "<string>",
                    "type": "<public-key>",
                    "rawId": "<string>",
                    "authenticatorAttachment": "<cross-platform>",
                    "response": {
                      "clientDataJson": "<string>",
                      "attestationObject": "<string>",
                      "transports": [
                        "<AUTHENTICATOR_TRANSPORT_BLE>"
                      ],
                      "authenticatorAttachment": "<cross-platform>"
                    },
                    "clientExtensionResults": {
                      "appid": "<boolean>",
                      "appidExclude": "<boolean>",
                      "credProps": {
                        "rk": "<boolean>"
                      }
                    }
                  },
                  "challenge": "<string>"
                }
              ],
              "userTags": [
                "<string>"
              ]
            }
          ]
        },
        "createPrivateKeysIntent": {
          "privateKeys": [
            {
              "privateKeyName": "<string>",
              "curve": "<CURVE_SECP256K1>",
              "privateKeyTags": [
                "<string>"
              ],
              "addressFormats": [
                "<ADDRESS_FORMAT_UNCOMPRESSED>"
              ]
            }
          ]
        },
        "signRawPayloadIntent": {
          "privateKeyId": "<string>",
          "payload": "<string>",
          "encoding": "<PAYLOAD_ENCODING_HEXADECIMAL>",
          "hashFunction": "<HASH_FUNCTION_NO_OP>"
        },
        "createInvitationsIntent": {
          "invitations": [
            {
              "receiverUserName": "<string>",
              "receiverUserEmail": "<string>",
              "receiverUserTags": [
                "<string>"
              ],
              "accessType": "<ACCESS_TYPE_WEB>",
              "senderUserId": "<string>"
            }
          ]
        },
        "acceptInvitationIntent": {
          "invitationId": "<string>",
          "userId": "<string>",
          "authenticator": {
            "authenticatorName": "<string>",
            "userId": "<string>",
            "attestation": {
              "id": "<string>",
              "type": "<public-key>",
              "rawId": "<string>",
              "authenticatorAttachment": "<cross-platform>",
              "response": {
                "clientDataJson": "<string>",
                "attestationObject": "<string>",
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ],
                "authenticatorAttachment": "<cross-platform>"
              },
              "clientExtensionResults": {
                "appid": "<boolean>",
                "appidExclude": "<boolean>",
                "credProps": {
                  "rk": "<boolean>"
                }
              }
            },
            "challenge": "<string>"
          }
        },
        "createPolicyIntent": {
          "policyName": "<string>",
          "selectors": [
            {
              "subject": "<string>",
              "operator": "<OPERATOR_EQUAL>",
              "target": "<string>"
            }
          ],
          "effect": "<EFFECT_ALLOW>",
          "notes": "<string>"
        },
        "disablePrivateKeyIntent": {
          "privateKeyId": "<string>"
        },
        "deleteUsersIntent": {
          "userIds": [
            "<string>"
          ]
        },
        "deleteAuthenticatorsIntent": {
          "userId": "<string>",
          "authenticatorIds": [
            "<string>"
          ]
        },
        "deleteInvitationIntent": {
          "invitationId": "<string>"
        },
        "deleteOrganizationIntent": {
          "organizationId": "<string>"
        },
        "deletePolicyIntent": {
          "policyId": "<string>"
        },
        "createUserTagIntent": {
          "userTagName": "<string>",
          "userIds": [
            "<string>"
          ]
        },
        "deleteUserTagsIntent": {
          "userTagIds": [
            "<string>"
          ]
        },
        "signTransactionIntent": {
          "privateKeyId": "<string>",
          "unsignedTransaction": "<string>",
          "type": "<TRANSACTION_TYPE_ETHEREUM>"
        },
        "createApiKeysIntent": {
          "apiKeys": [
            {
              "apiKeyName": "<string>",
              "publicKey": "<string>",
              "expirationSeconds": "<string>"
            }
          ],
          "userId": "<string>"
        },
        "deleteApiKeysIntent": {
          "userId": "<string>",
          "apiKeyIds": [
            "<string>"
          ]
        },
        "approveActivityIntent": {
          "fingerprint": "<string>"
        },
        "rejectActivityIntent": {
          "fingerprint": "<string>"
        },
        "createPrivateKeyTagIntent": {
          "privateKeyTagName": "<string>",
          "privateKeyIds": [
            "<string>"
          ]
        },
        "deletePrivateKeyTagsIntent": {
          "privateKeyTagIds": [
            "<string>"
          ]
        },
        "createPolicyIntentV2": {
          "policyName": "<string>",
          "selectors": [
            {
              "subject": "<string>",
              "operator": "<OPERATOR_EQUAL>",
              "targets": [
                "<string>"
              ]
            }
          ],
          "effect": "<EFFECT_ALLOW>",
          "notes": "<string>"
        },
        "setPaymentMethodIntent": {
          "number": "<string>",
          "cvv": "<string>",
          "expiryMonth": "<string>",
          "expiryYear": "<string>",
          "cardHolderEmail": "<string>",
          "cardHolderName": "<string>"
        },
        "activateBillingTierIntent": {
          "productId": "<string>"
        },
        "deletePaymentMethodIntent": {
          "paymentMethodId": "<string>"
        },
        "createPolicyIntentV3": {
          "policyName": "<string>",
          "effect": "<EFFECT_ALLOW>",
          "condition": "<string>",
          "consensus": "<string>",
          "notes": "<string>"
        },
        "createApiOnlyUsersIntent": {
          "apiOnlyUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "userTags": [
                "<string>"
              ],
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ]
            }
          ]
        },
        "updateRootQuorumIntent": {
          "threshold": "<number>",
          "userIds": [
            "<string>"
          ]
        },
        "updateUserTagIntent": {
          "userTagId": "<string>",
          "newUserTagName": "<string>",
          "addUserIds": [
            "<string>"
          ],
          "removeUserIds": [
            "<string>"
          ]
        },
        "updatePrivateKeyTagIntent": {
          "privateKeyTagId": "<string>",
          "newPrivateKeyTagName": "<string>",
          "addPrivateKeyIds": [
            "<string>"
          ],
          "removePrivateKeyIds": [
            "<string>"
          ]
        },
        "createAuthenticatorsIntentV2": {
          "authenticators": [
            {
              "authenticatorName": "<string>",
              "challenge": "<string>",
              "attestation": {
                "credentialId": "<string>",
                "clientDataJson": "<string>",
                "attestationObject": "<string>",
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ]
              }
            }
          ],
          "userId": "<string>"
        },
        "acceptInvitationIntentV2": {
          "invitationId": "<string>",
          "userId": "<string>",
          "authenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          }
        },
        "createOrganizationIntentV2": {
          "organizationName": "<string>",
          "rootEmail": "<string>",
          "rootAuthenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          },
          "rootUserId": "<string>"
        },
        "createUsersIntentV2": {
          "users": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "userTags": [
                "<string>"
              ]
            }
          ]
        },
        "createSubOrganizationIntent": {
          "name": "<string>",
          "rootAuthenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          }
        },
        "createSubOrganizationIntentV2": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>"
        },
        "updateAllowedOriginsIntent": {
          "allowedOrigins": [
            "<string>"
          ]
        },
        "createPrivateKeysIntentV2": {
          "privateKeys": [
            {
              "privateKeyName": "<string>",
              "curve": "<CURVE_SECP256K1>",
              "privateKeyTags": [
                "<string>"
              ],
              "addressFormats": [
                "<ADDRESS_FORMAT_UNCOMPRESSED>"
              ]
            }
          ]
        },
        "updateUserIntent": {
          "userId": "<string>",
          "userName": "<string>",
          "userEmail": "<string>",
          "userTagIds": [
            "<string>"
          ],
          "userPhoneNumber": "<string>"
        },
        "updatePolicyIntent": {
          "policyId": "<string>",
          "policyName": "<string>",
          "policyEffect": "<EFFECT_ALLOW>",
          "policyCondition": "<string>",
          "policyConsensus": "<string>",
          "policyNotes": "<string>"
        },
        "setPaymentMethodIntentV2": {
          "paymentMethodId": "<string>",
          "cardHolderEmail": "<string>",
          "cardHolderName": "<string>"
        },
        "createSubOrganizationIntentV3": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "privateKeys": [
            {
              "privateKeyName": "<string>",
              "curve": "<CURVE_SECP256K1>",
              "privateKeyTags": [
                "<string>"
              ],
              "addressFormats": [
                "<ADDRESS_FORMAT_UNCOMPRESSED>"
              ]
            }
          ]
        },
        "createWalletIntent": {
          "walletName": "<string>",
          "accounts": [
            {
              "curve": "<CURVE_SECP256K1>",
              "pathFormat": "<PATH_FORMAT_BIP32>",
              "path": "<string>",
              "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
            }
          ],
          "mnemonicLength": "<number>"
        },
        "createWalletAccountsIntent": {
          "walletId": "<string>",
          "accounts": [
            {
              "curve": "<CURVE_SECP256K1>",
              "pathFormat": "<PATH_FORMAT_BIP32>",
              "path": "<string>",
              "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
            }
          ]
        },
        "initUserEmailRecoveryIntent": {
          "email": "<string>",
          "targetPublicKey": "<string>",
          "expirationSeconds": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          }
        },
        "recoverUserIntent": {
          "authenticator": {
            "authenticatorName": "<string>",
            "challenge": "<string>",
            "attestation": {
              "credentialId": "<string>",
              "clientDataJson": "<string>",
              "attestationObject": "<string>",
              "transports": [
                "<AUTHENTICATOR_TRANSPORT_BLE>"
              ]
            }
          },
          "userId": "<string>"
        },
        "setOrganizationFeatureIntent": {
          "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
          "value": "<string>"
        },
        "removeOrganizationFeatureIntent": {
          "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>"
        },
        "signRawPayloadIntentV2": {
          "signWith": "<string>",
          "payload": "<string>",
          "encoding": "<PAYLOAD_ENCODING_HEXADECIMAL>",
          "hashFunction": "<HASH_FUNCTION_NO_OP>"
        },
        "signTransactionIntentV2": {
          "signWith": "<string>",
          "unsignedTransaction": "<string>",
          "type": "<TRANSACTION_TYPE_ETHEREUM>"
        },
        "exportPrivateKeyIntent": {
          "privateKeyId": "<string>",
          "targetPublicKey": "<string>"
        },
        "exportWalletIntent": {
          "walletId": "<string>",
          "targetPublicKey": "<string>",
          "language": "<MNEMONIC_LANGUAGE_ENGLISH>"
        },
        "createSubOrganizationIntentV4": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>"
        },
        "emailAuthIntent": {
          "email": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "invalidateExisting": "<boolean>",
          "sendFromEmailAddress": "<string>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "exportWalletAccountIntent": {
          "address": "<string>",
          "targetPublicKey": "<string>"
        },
        "initImportWalletIntent": {
          "userId": "<string>"
        },
        "importWalletIntent": {
          "userId": "<string>",
          "walletName": "<string>",
          "encryptedBundle": "<string>",
          "accounts": [
            {
              "curve": "<CURVE_SECP256K1>",
              "pathFormat": "<PATH_FORMAT_BIP32>",
              "path": "<string>",
              "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
            }
          ]
        },
        "initImportPrivateKeyIntent": {
          "userId": "<string>"
        },
        "importPrivateKeyIntent": {
          "userId": "<string>",
          "privateKeyName": "<string>",
          "encryptedBundle": "<string>",
          "curve": "<CURVE_SECP256K1>",
          "addressFormats": [
            "<ADDRESS_FORMAT_UNCOMPRESSED>"
          ]
        },
        "createPoliciesIntent": {
          "policies": [
            {
              "policyName": "<string>",
              "effect": "<EFFECT_ALLOW>",
              "condition": "<string>",
              "consensus": "<string>",
              "notes": "<string>"
            }
          ]
        },
        "signRawPayloadsIntent": {
          "signWith": "<string>",
          "payloads": [
            "<string>"
          ],
          "encoding": "<PAYLOAD_ENCODING_HEXADECIMAL>",
          "hashFunction": "<HASH_FUNCTION_NO_OP>"
        },
        "createReadOnlySessionIntent": "<object>",
        "createOauthProvidersIntent": {
          "userId": "<string>",
          "oauthProviders": [
            {
              "providerName": "<string>",
              "oidcToken": "<string>"
            }
          ]
        },
        "deleteOauthProvidersIntent": {
          "userId": "<string>",
          "providerIds": [
            "<string>"
          ]
        },
        "createSubOrganizationIntentV5": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>"
        },
        "oauthIntent": {
          "oidcToken": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "createApiKeysIntentV2": {
          "apiKeys": [
            {
              "apiKeyName": "<string>",
              "publicKey": "<string>",
              "curveType": "<API_KEY_CURVE_P256>",
              "expirationSeconds": "<string>"
            }
          ],
          "userId": "<string>"
        },
        "createReadWriteSessionIntent": {
          "targetPublicKey": "<string>",
          "email": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>"
        },
        "emailAuthIntentV2": {
          "email": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "invalidateExisting": "<boolean>",
          "sendFromEmailAddress": "<string>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "createSubOrganizationIntentV6": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "curveType": "<API_KEY_CURVE_P256>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>"
        },
        "deletePrivateKeysIntent": {
          "privateKeyIds": [
            "<string>"
          ],
          "deleteWithoutExport": "<boolean>"
        },
        "deleteWalletsIntent": {
          "walletIds": [
            "<string>"
          ],
          "deleteWithoutExport": "<boolean>"
        },
        "createReadWriteSessionIntentV2": {
          "targetPublicKey": "<string>",
          "userId": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "deleteSubOrganizationIntent": {
          "deleteWithoutExport": "<boolean>"
        },
        "initOtpAuthIntent": {
          "otpType": "<string>",
          "contact": "<string>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "smsCustomization": {
            "template": "<string>"
          },
          "userIdentifier": "<string>",
          "sendFromEmailAddress": "<string>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "otpAuthIntent": {
          "otpId": "<string>",
          "otpCode": "<string>",
          "targetPublicKey": "<string>",
          "apiKeyName": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "createSubOrganizationIntentV7": {
          "subOrganizationName": "<string>",
          "rootUsers": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "userPhoneNumber": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "curveType": "<API_KEY_CURVE_P256>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ]
            }
          ],
          "rootQuorumThreshold": "<number>",
          "wallet": {
            "walletName": "<string>",
            "accounts": [
              {
                "curve": "<CURVE_SECP256K1>",
                "pathFormat": "<PATH_FORMAT_BIP32>",
                "path": "<string>",
                "addressFormat": "<ADDRESS_FORMAT_UNCOMPRESSED>"
              }
            ],
            "mnemonicLength": "<number>"
          },
          "disableEmailRecovery": "<boolean>",
          "disableEmailAuth": "<boolean>",
          "disableSmsAuth": "<boolean>",
          "disableOtpEmailAuth": "<boolean>"
        },
        "updateWalletIntent": {
          "walletId": "<string>",
          "walletName": "<string>"
        },
        "updatePolicyIntentV2": {
          "policyId": "<string>",
          "policyName": "<string>",
          "policyEffect": "<EFFECT_ALLOW>",
          "policyCondition": "<string>",
          "policyConsensus": "<string>",
          "policyNotes": "<string>"
        },
        "createUsersIntentV3": {
          "users": [
            {
              "userName": "<string>",
              "userEmail": "<string>",
              "userPhoneNumber": "<string>",
              "apiKeys": [
                {
                  "apiKeyName": "<string>",
                  "publicKey": "<string>",
                  "curveType": "<API_KEY_CURVE_P256>",
                  "expirationSeconds": "<string>"
                }
              ],
              "authenticators": [
                {
                  "authenticatorName": "<string>",
                  "challenge": "<string>",
                  "attestation": {
                    "credentialId": "<string>",
                    "clientDataJson": "<string>",
                    "attestationObject": "<string>",
                    "transports": [
                      "<AUTHENTICATOR_TRANSPORT_BLE>"
                    ]
                  }
                }
              ],
              "oauthProviders": [
                {
                  "providerName": "<string>",
                  "oidcToken": "<string>"
                }
              ],
              "userTags": [
                "<string>"
              ]
            }
          ]
        },
        "initOtpAuthIntentV2": {
          "otpType": "<string>",
          "contact": "<string>",
          "otpLength": "<number>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "smsCustomization": {
            "template": "<string>"
          },
          "userIdentifier": "<string>",
          "sendFromEmailAddress": "<string>",
          "alphanumeric": "<boolean>",
          "sendFromEmailSenderName": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "initOtpIntent": {
          "otpType": "<string>",
          "contact": "<string>",
          "otpLength": "<number>",
          "emailCustomization": {
            "appName": "<string>",
            "logoUrl": "<string>",
            "magicLinkTemplate": "<string>",
            "templateVariables": "<string>",
            "templateId": "<string>"
          },
          "smsCustomization": {
            "template": "<string>"
          },
          "userIdentifier": "<string>",
          "sendFromEmailAddress": "<string>",
          "alphanumeric": "<boolean>",
          "sendFromEmailSenderName": "<string>",
          "expirationSeconds": "<string>",
          "replyToEmailAddress": "<string>"
        },
        "verifyOtpIntent": {
          "otpId": "<string>",
          "otpCode": "<string>",
          "expirationSeconds": "<string>"
        },
        "otpLoginIntent": {
          "verificationToken": "<string>",
          "publicKey": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "stampLoginIntent": {
          "publicKey": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        },
        "oauthLoginIntent": {
          "oidcToken": "<string>",
          "publicKey": "<string>",
          "expirationSeconds": "<string>",
          "invalidateExisting": "<boolean>"
        }
      },
      "result": {
        "createOrganizationResult": {
          "organizationId": "<string>"
        },
        "createAuthenticatorsResult": {
          "authenticatorIds": [
            "<string>"
          ]
        },
        "createUsersResult": {
          "userIds": [
            "<string>"
          ]
        },
        "createPrivateKeysResult": {
          "privateKeyIds": [
            "<string>"
          ]
        },
        "createInvitationsResult": {
          "invitationIds": [
            "<string>"
          ]
        },
        "acceptInvitationResult": {
          "invitationId": "<string>",
          "userId": "<string>"
        },
        "signRawPayloadResult": {
          "r": "<string>",
          "s": "<string>",
          "v": "<string>"
        },
        "createPolicyResult": {
          "policyId": "<string>"
        },
        "disablePrivateKeyResult": {
          "privateKeyId": "<string>"
        },
        "deleteUsersResult": {
          "userIds": [
            "<string>"
          ]
        },
        "deleteAuthenticatorsResult": {
          "authenticatorIds": [
            "<string>"
          ]
        },
        "deleteInvitationResult": {
          "invitationId": "<string>"
        },
        "deleteOrganizationResult": {
          "organizationId": "<string>"
        },
        "deletePolicyResult": {
          "policyId": "<string>"
        },
        "createUserTagResult": {
          "userTagId": "<string>",
          "userIds": [
            "<string>"
          ]
        },
        "deleteUserTagsResult": {
          "userTagIds": [
            "<string>"
          ],
          "userIds": [
            "<string>"
          ]
        },
        "signTransactionResult": {
          "signedTransaction": "<string>"
        },
        "deleteApiKeysResult": {
          "apiKeyIds": [
            "<string>"
          ]
        },
        "createApiKeysResult": {
          "apiKeyIds": [
            "<string>"
          ]
        },
        "createPrivateKeyTagResult": {
          "privateKeyTagId": "<string>",
          "privateKeyIds": [
            "<string>"
          ]
        },
        "deletePrivateKeyTagsResult": {
          "privateKeyTagIds": [
            "<string>"
          ],
          "privateKeyIds": [
            "<string>"
          ]
        },
        "setPaymentMethodResult": {
          "lastFour": "<string>",
          "cardHolderName": "<string>",
          "cardHolderEmail": "<string>"
        },
        "activateBillingTierResult": {
          "productId": "<string>"
        },
        "deletePaymentMethodResult": {
          "paymentMethodId": "<string>"
        },
        "createApiOnlyUsersResult": {
          "userIds": [
            "<string>"
          ]
        },
        "updateRootQuorumResult": "<object>",
        "updateUserTagResult": {
          "userTagId": "<string>"
        },
        "updatePrivateKeyTagResult": {
          "privateKeyTagId": "<string>"
        },
        "createSubOrganizationResult": {
          "subOrganizationId": "<string>",
          "rootUserIds": [
            "<string>"
          ]
        },
        "updateAllowedOriginsResult": "<object>",
        "createPrivateKeysResultV2": {
          "privateKeys": [
            {
              "privateKeyId": "<string>",
              "addresses": [
                {
                  "format": "<ADDRESS_FORMAT_UNCOMPRESSED>",
                  "address": "<string>"
                }
              ]
            }
          ]
        },
        "updateUserResult": {
          "userId": "<string>"
        },
        "updatePolicyResult": {
          "policyId": "<string>"
        },
        "createSubOrganizationResultV3": {
          "subOrganizationId": "<string>",
          "privateKeys": [
            {
              "privateKeyId": "<string>",
              "addresses": [
                {
                  "format": "<ADDRESS_FORMAT_UNCOMPRESSED>",
                  "address": "<string>"
                }
              ]
            }
          ],
          "rootUserIds": [
            "<string>"
          ]
        },
        "createWalletResult": {
          "walletId": "<string>",
          "addresses": [
            "<string>"
          ]
        },
        "createWalletAccountsResult": {
          "addresses": [
            "<string>"
          ]
        },
        "initUserEmailRecoveryResult": {
          "userId": "<string>"
        },
        "recoverUserResult": {
          "authenticatorId": [
            "<string>"
          ]
        },
        "setOrganizationFeatureResult": {
          "features": [
            {
              "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
              "value": "<string>"
            }
          ]
        },
        "removeOrganizationFeatureResult": {
          "features": [
            {
              "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
              "value": "<string>"
            }
          ]
        },
        "exportPrivateKeyResult": {
          "privateKeyId": "<string>",
          "exportBundle": "<string>"
        },
        "exportWalletResult": {
          "walletId": "<string>",
          "exportBundle": "<string>"
        },
        "createSubOrganizationResultV4": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "emailAuthResult": {
          "userId": "<string>",
          "apiKeyId": "<string>"
        },
        "exportWalletAccountResult": {
          "address": "<string>",
          "exportBundle": "<string>"
        },
        "initImportWalletResult": {
          "importBundle": "<string>"
        },
        "importWalletResult": {
          "walletId": "<string>",
          "addresses": [
            "<string>"
          ]
        },
        "initImportPrivateKeyResult": {
          "importBundle": "<string>"
        },
        "importPrivateKeyResult": {
          "privateKeyId": "<string>",
          "addresses": [
            {
              "format": "<ADDRESS_FORMAT_UNCOMPRESSED>",
              "address": "<string>"
            }
          ]
        },
        "createPoliciesResult": {
          "policyIds": [
            "<string>"
          ]
        },
        "signRawPayloadsResult": {
          "signatures": [
            {
              "r": "<string>",
              "s": "<string>",
              "v": "<string>"
            }
          ]
        },
        "createReadOnlySessionResult": {
          "organizationId": "<string>",
          "organizationName": "<string>",
          "userId": "<string>",
          "username": "<string>",
          "session": "<string>",
          "sessionExpiry": "<string>"
        },
        "createOauthProvidersResult": {
          "providerIds": [
            "<string>"
          ]
        },
        "deleteOauthProvidersResult": {
          "providerIds": [
            "<string>"
          ]
        },
        "createSubOrganizationResultV5": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "oauthResult": {
          "userId": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "createReadWriteSessionResult": {
          "organizationId": "<string>",
          "organizationName": "<string>",
          "userId": "<string>",
          "username": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "createSubOrganizationResultV6": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "deletePrivateKeysResult": {
          "privateKeyIds": [
            "<string>"
          ]
        },
        "deleteWalletsResult": {
          "walletIds": [
            "<string>"
          ]
        },
        "createReadWriteSessionResultV2": {
          "organizationId": "<string>",
          "organizationName": "<string>",
          "userId": "<string>",
          "username": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "deleteSubOrganizationResult": {
          "subOrganizationUuid": "<string>"
        },
        "initOtpAuthResult": {
          "otpId": "<string>"
        },
        "otpAuthResult": {
          "userId": "<string>",
          "apiKeyId": "<string>",
          "credentialBundle": "<string>"
        },
        "createSubOrganizationResultV7": {
          "subOrganizationId": "<string>",
          "wallet": {
            "walletId": "<string>",
            "addresses": [
              "<string>"
            ]
          },
          "rootUserIds": [
            "<string>"
          ]
        },
        "updateWalletResult": {
          "walletId": "<string>"
        },
        "updatePolicyResultV2": {
          "policyId": "<string>"
        },
        "initOtpAuthResultV2": {
          "otpId": "<string>"
        },
        "initOtpResult": {
          "otpId": "<string>"
        },
        "verifyOtpResult": {
          "verificationToken": "<string>"
        },
        "otpLoginResult": {
          "session": "<string>"
        },
        "stampLoginResult": {
          "session": "<string>"
        },
        "oauthLoginResult": {
          "session": "<string>"
        }
      },
      "votes": [
        {
          "id": "<string>",
          "userId": "<string>",
          "user": {
            "userId": "<string>",
            "userName": "<string>",
            "userEmail": "<string>",
            "userPhoneNumber": "<string>",
            "authenticators": [
              {
                "transports": [
                  "<AUTHENTICATOR_TRANSPORT_BLE>"
                ],
                "attestationType": "<string>",
                "aaguid": "<string>",
                "credentialId": "<string>",
                "model": "<string>",
                "credential": {
                  "publicKey": "<string>",
                  "type": "<CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR>"
                },
                "authenticatorId": "<string>",
                "authenticatorName": "<string>",
                "createdAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "updatedAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                }
              }
            ],
            "apiKeys": [
              {
                "credential": {
                  "publicKey": "<string>",
                  "type": "<CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR>"
                },
                "apiKeyId": "<string>",
                "apiKeyName": "<string>",
                "createdAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "updatedAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "expirationSeconds": "<string>"
              }
            ],
            "userTags": [
              "<string>"
            ],
            "oauthProviders": [
              {
                "providerId": "<string>",
                "providerName": "<string>",
                "issuer": "<string>",
                "audience": "<string>",
                "subject": "<string>",
                "createdAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                },
                "updatedAt": {
                  "seconds": "<string>",
                  "nanos": "<string>"
                }
              }
            ],
            "createdAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            },
            "updatedAt": {
              "seconds": "<string>",
              "nanos": "<string>"
            }
          },
          "activityId": "<string>",
          "selection": "<VOTE_SELECTION_APPROVED>",
          "message": "<string>",
          "publicKey": "<string>",
          "signature": "<string>",
          "scheme": "<string>",
          "createdAt": {
            "seconds": "<string>",
            "nanos": "<string>"
          }
        }
      ],
      "fingerprint": "<string>",
      "canApprove": "<boolean>",
      "canReject": "<boolean>",
      "createdAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "updatedAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "failure": {
        "code": "<number>",
        "message": "<string>",
        "details": [
          {
            "@type": "<string>"
          }
        ]
      }
    }
  ]
}