Check enrollment status for a DID in this Stratos service.
Parameters
Output
Encoding
application/jsonboundaries
array
Optional
Authoritative boundaries assigned. Only included when request is authenticated.
did
stringdid
Required
The DID that was checked.
enrolled
boolean
Required
Whether the DID is enrolled in this Stratos service.
enrolledAt
stringdatetime
Optional
When the DID was enrolled, if enrolled.
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": [
"did",
"enrolled"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID that was checked."
},
"enrolled": {
"type": "boolean",
"description": "Whether the DID is enrolled in this Stratos service."
},
"boundaries": {
"type": "array",
"items": {
"ref": "app.stratos.boundary.defs#Domain",
"type": "ref"
},
"description": "Authoritative boundaries assigned. Only included when request is authenticated."
},
"enrolledAt": {
"type": "string",
"format": "datetime",
"description": "When the DID was enrolled, if enrolled."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID to check enrollment for."
}
}
},
"description": "Check enrollment status for a DID in this Stratos service."
}