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
    }
  ]
}

Last updated

Was this helpful?