Resolve enrollment boundaries for a DID. Returns the boundary domains the user is enrolled in.
Parameters
Output
Encoding
application/jsonboundaries
array
Required
Boundary domains the user is enrolled in. Empty if not enrolled.
did
stringdid
Required
A decentralized identifier (DID).
enrolled
boolean
Required
Whether the DID is enrolled in this Stratos service.
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",
"boundaries"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"enrolled": {
"type": "boolean",
"description": "Whether the DID is enrolled in this Stratos service."
},
"boundaries": {
"type": "array",
"items": {
"type": "string"
},
"description": "Boundary domains the user is enrolled in. Empty if not enrolled."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID to resolve enrollment boundaries for."
}
}
},
"description": "Resolve enrollment boundaries for a DID. Returns the boundary domains the user is enrolled in."
}