LogoLogo
Our WorkHelp CenterAbout Us
  • Developer Resources
    • ⚙️Web/HTML Implementation
      • Getting Started
      • Simple HTML Example
  • Native App Implementation
  • 🛠️API Resources
    • Verify
    • Claim
    • Recover
    • Tag Verifications
  • Protocol
    • 🖼️Overview
      • Technical Specs
    • 📜Smart Contracts
      • 🔓Locking Mechanism
      • 🔓Locked721
      • 🔑Access Control Roles
      • 📃Customizing the Locked721 Contracts
    • 📏Customizations
      • 🛳️Blockchain Deployment Options
      • 🪙Digital ID Options
      • 🗞️Product Metadata Options
      • 🔐Locking Mechanism Options
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. API Resources

Tag Verifications

Reset ownership of underlying digital ID

GET /v1/verifications/{uid}

Lists all the successful verification attempts associated with a tag.

Headers

Name
Value

Content-Type

application/json

URL Query Parameters

Name
Type
Description

uid

string (14 hex characters)

The unique ID of the tag

type?

claim | reset | mint

Type of ownership change recorded on the blockchain (optional)

page?

integer

Page number of pagination (optional)

limit?

integer (max 1000)

Number of items in each page (optional)

Response

{
  verifications: [
    {
      created_at: '2023-10-25T09:13:31+00:00',
      verify_type: 'programming_qc' | 'user_view' | 'custom',
      // only if verify_type === 'custom', otherwise null
      custom_verification_type: {
        id: 1,
        name: "My custom verification defined in Dashboard"
      },
      uid: "AABBCCDDEEFF00",
      tamper: false,
      counter: 5,
      city: 'Aobadai',
      region: 'Tokyo',
      country: 'Japan',
      latitude: 35.6509,
      longitude: 139.6943
    }
  ]
}
{
  error: {
    tag: ["could not be found"]
  }
}
PreviousRecoverNextOverview

Last updated 3 days ago

Was this helpful?

🛠️