Skip to content

Wallet API

The Wallet API is the main interface for interacting with a cloud wallet. It is primarly used when you're providing custom wallet experience and building your own digital wallet integration. If you'd like to use Trinsic's integrated cloud wallet app, you likely won't need to use this API.

Migrating from Account API?

Check out our migration guide on how to migrate your code that uses the deprecated Account API.


Create Wallet

Create a new wallet and return the authentication token and wallet information about the newly created wallet.

var createWalletRequest = new CreateWalletRequest {
    EcosystemId = ecosystem.Id,
    Description = "user123",
    Identity = new CreateWalletRequest.Types.ExternalIdentity {
        Identity = "[email protected]",
        Provider = IdentityProvider.Email
    }
};

var createWalletResponse = await trinsic.Wallet.CreateWalletAsync(createWalletRequest);

ecosystem_id
string
Ecosystem ID of the wallet to create
description
optional string
Wallet name or description. Use this field to add vendor specific information about this wallet, such as email, phone, internal ID, or anything you'd like to associate with this wallet. This field is searchable.
identity
Optional identity to add to the wallet (email or sms). Use this field when inviting participants into an ecosystem. If this field is set, an auth token will not be sent in the response.
Show child attributes

auth_token
string
Auth token for the newly created wallet
token_id
string
Token ID of the newly generated token
wallet
Wallet configuration
Show child attributes


Authenticate

Authenticate and return an auth token for an existing wallet using one of the associated external identities. This endpoint requires that the wallet user has previously added at least one external identity using the AddExternalIdentity calls.

Once a token is obtained, it can be reused for future sessions -- users don't need to authenticate if they already have a valid token. You can store the auth token in secure enclaves on the users device, browser, etc.

When should users authenticate?

  • If your integration solution doesn't manage the wallet tokens, users may need to re-authenticate on their device to get a new auth token
  • Users that want to log in to a different device using their email or phone number
  • Returning users that have lost their previous session and require a new auth token

AuthenticateInit

// Step 1 - initiate authentication challenge
var authenticateInitRequest = new AuthenticateInitRequest {
    Identity = "[email protected]",
    Provider = IdentityProvider.Email,
    EcosystemId = "test-ecosystem" // short name or full ecosystem ID
};
var authenticateInitResponse = await trinsic.Wallet.AuthenticateInitAsync(authenticateInitRequest);

identity
string
Identity to add to the wallet
provider
Identity provider
Show enum values
ecosystem_id
string
Ecosystem ID to which the wallet belongs

challenge
string
The challenge received from the AcquireAuthTokenInit endpoint Pass this challenge back to the AcquireAuthTokenConfirm endpoint

AuthenticateConfirm

// Step 2 - confirm authentication response
var authenticateConfirmRequest = new AuthenticateConfirmRequest {
    Challenge = authenticateInitResponse.Challenge,
    Response = "123456" // OTP code
};
var authenticateConfirmResponse = await trinsic.Wallet.AuthenticateConfirmAsync(authenticateConfirmRequest);

// use the new token to make authenticated calls
// var options = new TrinsicOptions { AuthToken = authenticateConfirmResponse.AuthToken };
// trinsic = new TrinsicService(options);

challenge
string
The challenge received from the AcquireAuthTokenInit endpoint
response
string
The response to the challenge. If using Email or Phone, this is the OTP code sent to the user's email or phone

auth_token
string
Auth token for the wallet


Add External Identity

This service is used to attach an external identity, such as an email or a phone number, to a wallet. The purpose of this process is to allow the user to authenticate to their existing wallet (using the Authenticate endpoint) to get an auth token. This may be needed if the user is logging in on a different device, have lost access to the initial auth token, etc.

The process for adding external identity is based on confirming an OTP code that will be sent to the user's email address or phone number. To do this, you should call the services AddExternalIdentityInit and AddExternalIdentityConfirm.

AddExternalIdentityInit

// the two endpoints below require authenticated user context
// var options = new TrinsicOptions { AuthToken = "<auth token>" };
// var trinsic = new TrinsicService(options);

// Step 1 - initiate identity challenge
var addExternalIdentityInitRequest = new AddExternalIdentityInitRequest {
    Identity = "[email protected]",
    Provider = IdentityProvider.Email
};
var addExternalIdentityInitResponse = await trinsic.Wallet.AddExternalIdentityInitAsync(addExternalIdentityInitRequest);

identity
string
The user identity to add to the wallet This can be an email address or phone number (formatted as +[country code][phone number])
provider
The type of identity provider, like EMAIL or PHONE
Show enum values

challenge
string
Challenge or reference to the challenge to be used in the AddExternalIdentityConfirm endpoint

AddExternalIdentityConfirm

// Step 2 - confirm challenge response
var addExternalIdentityConfirmRequest = new AddExternalIdentityConfirmRequest {
    Challenge = addExternalIdentityInitResponse.Challenge,
    Response = "123456" // OTP code
};
var addExternalIdentityConfirmResponse = await trinsic.Wallet.AddExternalIdentityConfirmAsync(addExternalIdentityConfirmRequest);

challenge
string
The challenge received from the AddExternalIdentityInit endpoint
response
string
The response to the challenge. If using Email or Phone, this is the OTP code sent to the user's email or phone

This message has no fields


Remove External Identity

Removes an external identity from the associated identities of the authenticated wallet.

// this endpoint require authenticated user context
// var options = new TrinsicOptions { AuthToken = "<auth token>" };
// var trinsic = new TrinsicService(options);

var removeExternalIdentityRequest = new RemoveExternalIdentityRequest {
    Identity = "[email protected]",
};
var removeExternalIdentityResponse = await trinsic.Wallet.RemoveExternalIdentityAsync(removeExternalIdentityRequest);

identity
string
The user identity to remove from the wallet This can be an email address or phone number (formatted as +[country code][phone number])

This message has no fields


Insert Item

Stores a credential (or any other JSON object) in a wallet.

let insertItemResponse = await trinsic.wallet().insertItem(
    InsertItemRequest.fromPartial({
        itemJson: issueResponse.documentJson,
    }),
);
var insertItemResponse =
    await trinsic.Wallet.InsertItemAsync(new() { ItemJson = credentialJson.DocumentJson });
insert_response = await trinsic.wallet.insert_item(
    request=InsertItemRequest(
        item_json=credential, item_type="VerifiableCredential"
    )
)
insertResponse, err := trinsic.Wallet().InsertItem(context.Background(), &wallet.InsertItemRequest{
    ItemJson: credentialJson,
    ItemType: "VerifiableCredential",
})
var insertResponse =
    trinsic
        .wallet()
        .insertItem(
            InsertItemRequest.newBuilder()
                .setItemJson(credentialJson)
                .setItemType("VerifiableCredential")
                .build())
        .get();

Request to insert a JSON document into a wallet
item_json
string
Document to insert; must be stringified JSON
item_type
optional string
Item type (ex. "VerifiableCredential")

Response to InsertItemRequest
item_id
string
ID of item inserted into wallet

What can be stored in a wallet?

Wallets are mainly intended to hold Verifiable Credentials, but can technically store any JSON blob.

If you store a Verifiable Credential in a Wallet, ensure that its item_type is VerifiableCredential.

Otherwise, ensure its item_type is not VerifiableCredential.


Get Item

Retrieves an item of the wallet by its ID.

let getItemResponse = await trinsic.wallet().getItem({
    itemId: itemId,
});
var getItemResponse = await trinsic.Wallet.GetItemAsync(new GetItemRequest {
    ItemId = itemId
});
item = await trinsic.wallet.get_item(request=GetItemRequest(item_id))
getResponse, err := trinsic.Wallet().GetItem(context.Background(), &wallet.GetItemRequest{
    ItemId: itemId,
})
var getResponse =
    trinsic.wallet().getItem(GetItemRequest.newBuilder().setItemId(itemId).build()).get();

Request to fetch an item from wallet
item_id
string
ID of item in wallet

Response to GetItemRequest
item_json
string
Item data as a JSON string
item_type
string
Type of item specified when item was inserted into wallet


Get Wallet

Retrieves information about wallets in the ecosystem. These endpoints can only be called by a Provider, so make sure you authenticate as it before calling them.

GetWalletInfo

Retrieves information about a wallet by its ID.

//trinsic.options.authToken = trinsic.provider().options.authToken;

let getWalletInfoResponse = await trinsic.wallet().getWalletInfo(
    GetWalletInfoRequest.fromPartial({
        walletId: createWalletResponse.wallet?.walletId,
    }),
);
[getWalletInfo](../../../dotnet/Tests/Tests.cs) inside_block:getWalletInfo
get_wallet_info_response = await trinsic.wallet.get_wallet_info(
    request=GetWalletInfoRequest(wallet_id=create_wallet_response.wallet.wallet_id)
)
getWalletInfoResponse, err := trinsic.Wallet().GetWalletInfo(context.Background(),
    &wallet.GetWalletInfoRequest{
        WalletId: createWalletResponse.Wallet.WalletId,
    },
)
var getWalletInfoResponse =
    trinsic
        .wallet()
        .getWalletInfo(GetWalletInfoRequest.newBuilder().setWalletId(walletId).build())
        .get();

Request to retrieve wallet information about a given wallet identified by its wallet ID
wallet_id
string
Wallet ID of the wallet to retrieve

Response to GetWalletInfoRequest
wallet
Wallet configuration
Show child attributes

GetWalletFromExternalIdentity

Retrieves information about a wallet by its External Identity (email or phone number).

//trinsic.options.authToken = trinsic.provider().options.authToken;

let getWalletFromExternalIdentityResponse = await trinsic.wallet().getWalletFromExternalIdentity(
    GetWalletFromExternalIdentityRequest.fromPartial({
        identity: {
            id: "[email protected]",
            provider: IdentityProvider.Email,
        }
    }),
);
var getWalletFromExternalIdentityRequest = new GetWalletFromExternalIdentityRequest {
    Identity = new WalletExternalIdentity() {
        Id = "[email protected]",
        Provider = IdentityProvider.Email
    }
};

var getWalletFromExternalIdentityResponse = await trinsic.Wallet.GetWalletFromExternalIdentityAsync(getWalletFromExternalIdentityRequest);
get_wallet_from_external_identity_response = (
    await trinsic.wallet.get_wallet_from_external_identity(
        request=GetWalletFromExternalIdentityRequest(
            identity=WalletExternalIdentity(
                id="[email protected]", provider=IdentityProvider.Email
            )
        )
    )
)
getWalletFromExternalIdentityResponse, err := trinsic.Wallet().GetWalletFromExternalIdentity(context.Background(),
    &wallet.GetWalletFromExternalIdentityRequest{
        Identity: &provider.WalletExternalIdentity{
            Id:       "[email protected]",
            Provider: provider.IdentityProvider_Email,
        },
    },
)
var getWalletFromExternalIdentityResponse =
    trinsic
        .wallet()
        .getWalletFromExternalIdentity(
            GetWalletFromExternalIdentityRequest.newBuilder()
                .setIdentity(
                    WalletExternalIdentity.newBuilder()
                        .setId("[email protected]")
                        .setProvider(IdentityProvider.Email)
                        .build())
                .build())
        .get();

identity
Show child attributes

Response to GetWalletFromExternalIdentityRequest
wallet
Wallet configuration
Show child attributes


Delete Item

Deletes an item of the wallet by its ID.

await trinsic.wallet().deleteItem({
    itemId: itemId,
});
await trinsic.Wallet.DeleteItemAsync(new DeleteItemRequest {
    ItemId = itemId
});
await trinsic.wallet.delete_item(request=DeleteItemRequest(item_id=item_id))
deleteResponse, err := trinsic.Wallet().DeleteItem(context.Background(),
    &wallet.DeleteItemRequest{
        ItemId: itemId,
    })
trinsic.wallet().deleteItem(DeleteItemRequest.newBuilder().setItemId(itemId).build()).get();

Request to delete an item in a wallet
item_id
string
ID of item to delete

Response to DeleteItemRequest
This message has no fields


Delete Wallet

Deletes a wallet, and all its credentials, permanently.

Any wallet may delete itself by passing its own ID to this call. Only Provider wallets may delete wallets other than themselves.

Wallet deletion is permanent and cannot be undone.

await trinsic.wallet().deleteWallet({
    walletId: walletId,
});
await trinsic.Wallet.DeleteWalletAsync(new DeleteWalletRequest {
    WalletId = walletId
});
await trinsic.wallet.delete_wallet(request=DeleteWalletRequest(wallet_id=wallet_id))
deleteWalletResponse, err := trinsic.Wallet().DeleteWallet(context.Background(),
    &wallet.DeleteWalletRequest{
        Account: &wallet.DeleteWalletRequest_WalletId{
            WalletId: walletId,
        },
    })
trinsic
    .wallet()
    .deleteWallet(DeleteWalletRequest.newBuilder().setWalletId(walletId).build())
    .get();

Request to delete a wallet
email
string
Email address of account to delete. Mutually exclusive with walletId and didUri.
wallet_id
string
Wallet ID of account to delete. Mutually exclusive with email and didUri.
did_uri
string
DID URI of the account to delete. Mutually exclusive with email and walletId.

Response to DeleteWalletRequest. Empty payload.
This message has no fields


Search Wallet

Searches a wallet, returning all matching items, and a continuation_token to paginate large result sets.

If no query is specified, this call by default returns the first 100 items in the wallet.

let items = await trinsic.wallet().searchWallet();
var walletItems = await trinsic.Wallet.SearchWalletAsync(new());
wallet_items = await trinsic.wallet.search_wallet()
searchResponse, err := trinsic.Wallet().SearchWallet(context.Background(), &wallet.SearchRequest{})
var walletItems = trinsic.wallet().searchWallet().get();

Request to search items in wallet
query
string
SQL Query to execute against items in wallet
continuation_token
optional string
Token provided by previous SearchResponse if more data is available for query

Response to SearchRequest
items
string[]
Array of query results, as JSON strings
has_more_results
bool
Whether more results are available for this query via continuation_token
continuation_token
string
Token to fetch next set of results via SearchRequest

Verifiable Presentation Request Spec

In the future, this endpoint will support the Verifiable Presentation Request Spec .

The Search endpoint supports SQL queries through the query parameter.

This allows for arbitrary query predicates, as well as more advanced functionality -- such as modifying the output format.

Schema

Any table name may be used in your query (we use c here) -- it doesn't matter what it is.

Name Type Description
id string Corresponds to the item_id returned when item was inserted into wallet
type string Specified via item_type when item was inserted into wallet
data object The JSON object passed via item_json when item was inserted into wallet

Note that data is an object, not a string; thus, any of its sub-fields may be queried against.

For example, SELECT * FROM c WHERE c.data.someField = 'Hello, World!' would match against the following JSON object inserted via InsertItem:

{
    "someField": "Hello, World!"
}

Common SQL Queries

Paging

Paging uses the OFFSET clause that takes in a value indicating how many records should be skipped in the returned query. To specify the size of the result set (page size) use the LIMIT clause.

SELECT * FROM c OFFSET 10 LIMIT 5

Sorting

The optional ORDER BY clause specifies the sorting order for results returned by the query. To control sorting order, specify ASC or DESC at the end; if not specified ascending order is used by default.

SELECT * FROM c ORDER BY c.credential.issued DESC

Filtering

The optional WHERE clause (WHERE <filter_condition>) specifies condition(s) that the source JSON items must satisfy for the query to include them in results. A JSON item must evaluate the specified conditions to true to be considered for the result. The index layer uses the WHERE clause to determine the smallest subset of source items that can be part of the result.

SELECT * FROM c WHERE c.name = 'Trinsic' AND c.dateCreated >= "2020-09-30T23:14:25.7251173Z"

Grouping

The GROUP BY clause divides the query's results according to the values of one or more specified properties. Examples and detailed description on working with grouped results can be found here

Additional Resources

You can read the full documentation on working with SQL queries on the Azure Cosmos DB website .