Gets information about your account and its associated hidden repository, including the list of collections. Requires auth.
Output
Encoding
application/jsoncollections
array
Required
The list of collection NSIDs in the hidden repository.
did
stringdid
Required
The DID of the repository owner.
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",
"collections"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID of the repository owner."
},
"collections": {
"type": "array",
"items": {
"type": "string",
"format": "nsid"
},
"description": "The list of collection NSIDs in the hidden repository."
}
}
},
"encoding": "application/json"
},
"description": "Gets information about your account and its associated hidden repository, including the list of collections. Requires auth."
}