3. API Onboard Status
V2 Onboard Status API
Check the status of attributes, both on chain and off chain.
Quadrata provides an API for integrators to call to see which attributes have been issued for a given wallet user.
Production URL: https://prod.quadrata.com/api/v2/attributes/onboard_status
GET
https://int.quadrata.com/api/v2/attributes/onboard_status
Returns the status of attributes passed in to the query string, including (optionally) whether or not they have been minted on chain and when the attribute status was last verified.
Also includes an optional list of privacy data permissions indicating when a permission was allowed or revoked and if the permission has not yet been granted consent for your dApp.
Query Parameters
wallet*
String
User Wallet Address
chainId
String
Blockchain chain id
If not provided, on chain status is not checked and mintedOnChain
is omitted from the response
attributes*
List[String]
List of Required Attributes
privacyScopes
List[String]
List of Privacy Data parameters to check for existing permissions
If not provided, privacyStatus
is omitted from the response.
offeringId
String
String to check the Accreditation status (INVESTOR_STATUS) of a specific company offering.
If not provided, offeringStatus
is omitted from the response.
Headers
Authorization: Bearer [JWT Token]*
String
JWT accessToken (returned by /api/v1/login)
Example
Check the status of a passport
Quadrata provides an API for integrators to call to see which attributes have been issued for a given wallet user, and whether or not those attributes have been minted on chain.
When a passport is claimed, the associated attributes are minted on chain, but remain in various states, internally, until then.
When integrating the Quadrata Passport UI, it's necessary to check the status of attributes so the onboarding process can determine which next steps to take. This check can also help integrators determine if onboarding is necessary before displaying a call to action that launches the UI flow.
Privacy Status
The Onboard Status API will give you an summary of which permissions have been allowed and which have not.
Last updated