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
.
Input | Mandatory | Type | Description |
---|---|---|---|
protocolName | ✅ | String | Protocol on which the digital passport has been minted. Dig deeper into Arianee Protocols. |
smartAsset → id | ✅ | Object | Digital passport identification number. |
Example:
{
"protocolName": "testnet",
"smartAsset" : {
"id": "33491174"
}
}
Result:
httpCode | Description |
---|---|
200 | The proofLink is generated. |
{
"proofLink": "https://test.arian.ee/proof/33491174,ss9t4d2yg1yl"
}
Updated 10 months ago