These docs are for v1.9. Click to read the latest docs for v2.1.

Generate a Proof of Ownership

Allow your users to prove their digital passport ownership.

Before you begin

As a brand, you wish to allow your users to prove their digital passport ownership. Our API generates a link to read the digital passport content and prove this user owns it.

โš ๏ธ

To generate a proof of ownership, the request must be initiated by the current digital passport owner.

Let's start ๐Ÿš€

Use the https://custody.arianee.com/{{client}}/{{network}}/nft/createProofLink.

InputMandatoryTypeDescription
protocolNameโœ…StringProtocol on which the digital passport has been minted.
Dig deeper into Arianee Protocols.
smartAsset โ†’ idโœ…ObjectDigital passport identification number.

Example:

{
    "protocolName": "testnet",
    "smartAsset" : {
        "id": "33491174"
    }
}

Result:

httpCodeDescription
200The proofLink is generated.
{
    "proofLink": "https://test.arian.ee/proof/33491174,ss9t4d2yg1yl"
}