Check whether a DID or handle has been verified by the Cartridge verifier. Does not require authentication.
Parameters
Output
Encoding
application/jsonaccountType
string
Optional
The verified account type. Only present when isVerified is true.
Known values:
studio, developer, publisherisVerified
boolean
Required
Whether the account has been verified.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"isVerified"
],
"properties": {
"isVerified": {
"type": "boolean",
"description": "Whether the account has been verified."
},
"accountType": {
"type": "string",
"description": "The verified account type. Only present when isVerified is true.",
"knownValues": [
"studio",
"developer",
"publisher"
]
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"handle"
],
"properties": {
"handle": {
"type": "string",
"description": "DID or handle to check."
}
}
},
"description": "Check whether a DID or handle has been verified by the Cartridge verifier. Does not require authentication."
}